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



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

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
	color: #222;
    background-color: #fff;
    text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}
html, body {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    color: #222;
}
a:hover {
    color: #111;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 400;
    font-style: normal;
}
h1, .h1 {  
    font-size: 1.6rem;
}
h1.mainTitle span {
    display: block;
    font-weight: 800;
}
h2, .h2 {
    font-size: 1.4rem;
	padding-top: 1em;
}
h3, .h3 {
    font-size: 1.2rem;
	padding-top: 1em;
}
h4, .h4 { 
    font-size: 1rem;
}
figure {
	margin: 0;
}
.fullBg {
	position: fixed !important;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-position: center center;
	background-size: cover;
}
.archive .fullBg {
    display: none;
}
@media (min-width: 400px){
	h1, .h1 {
	    font-size: 2rem;
	}
	h2, .h2 {
	    font-size: 1.6rem;
	}
	h3, .h3 {
	    font-size: 1.4rem;
	}
	h4, .h4 {
	    font-size: 1.1rem;
	}
}
@media (min-width: 760px){
	h1, .h1 {
	    font-size: 2.4rem;
	}
	h2, .h2 {
	    font-size: 1.8rem;
	}
	h3, .h3 {
	    font-size: 1.6rem;
	}
	h4, .h4 {
	    font-size: 1.2rem;
	}
    p {
        text-align: justify;
    }
}
@media (min-width: 1020px){
	h1, .h1 {
	    font-size: 3rem;
        font-weight: 300;
	}
	h2, .h2 {
	    font-size: 2rem;
        font-weight: 300;
	}
}

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

.siteHeader {
    position: absolute;
    z-index: 100;
    width: 100vw;
	top: 0;
	left: 0;
    transition: all ease .5s;
}
.persistent .siteHeader {
    position: fixed;
    top: 0;
    left: 0;
}
a#top {
    position: absolute;
    margin-top: -1px;
}

/* Logo */
.siteLogo {
    position: absolute;
    z-index: 1;
    left: 90px;
    top: 0;
    width: 250px;
    transition: all ease .5s;
}
.persistent .siteLogo {
    z-index: 6;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background-color: #fff;
}
.siteLogo a {
    display: block;
    height: 250px;
    background: url("../img/logo-ARC.png") no-repeat center center;
    background-size: contain;
    transition: all ease .5s;
}
.home .siteLogo a {
    background: url("../img/logo-ARC-w.png") no-repeat center center;
    background-size: contain;
}
.persistent .siteLogo a {
    background: url("../img/logo-ARC-mini.png") no-repeat center center;
    height: 60px;
    margin-top: 10px;
}
@media (min-width: 1000px){
    .siteLogo a {
        background: url("../img/logo-ARC-w.png") no-repeat center center;
        background-size: contain;
    }
}

.siteLogo span {
	display: none;
}

/* navbar*/
.mobileMenu {
    position: absolute;
    z-index: 5;
    left: 0;
    top: 20px;
    width: 80px;
    height: 70px;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    transition: all ease .5s;
}
.persistent .mobileMenu {
    top: 80px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    background-color: #fff;
}
.mobileMenu i {
    font-size: 2em;
}
.mobileMenuContainer {
    display: none;
    position: fixed;
    z-index: 3;
    padding: 100px 60px 40px 60px;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,.25);
    top: 0;
    left: 81px;
    bottom: 0;
    width: 70%;
}
.mobileMenuSubContainer {
    display: none;
    position: fixed;
    z-index: 2;
    background-color: rgba(0,0,0,.5);
    top: 0;
    left: 81px;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}
header nav {
    position: fixed;
    z-index: 4;
    width: 80px;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    border-right: 1px solid #ddd;
    transition: all ease .5s;
}
.persistent header nav {
    background-color: #FFED00;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    transition: all ease 1s;
    text-align: left;
}
nav li {
    display: block;
}
header nav a {
    text-transform: uppercase;
    text-decoration: none;
    color: #222;
    font-size: 1.4rem;
    padding: 10px 0;
    transition: all ease 1.5s;
    display: block;

}
nav a:hover {
    color: #000;
}
nav .current-menu-item a {
}
header nav a span {
    display: inline-flex;
    width: auto;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-bottom-color: transparent;
    transition: all ease 1.5s;
}
header nav a:hover span {
    width: 100%;
    border-bottom-color: #FFED00;
}


/* Sub Menu */ 
.menu-item-has-children a {
    position: relative;
}
.menu-item-has-children > a:after {
    font-family: 'Font Awesome 5 Free'; 
    font-weight: 900;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    content: "\f0d7";
    color: #222;
    padding-left: 4px;
}
.sub-menu {
    display: block;
    position: relative;
    z-index: auto;
    text-align: center;
    background-color: #fff;
    padding: 20px 0;
    border-radius: 20px;
}
.menu-item-has-children:hover > .sub-menu {
    display: block;
}
.sub-menu li {
    display: block;
}
header nav .sub-menu a {
    text-transform: none;
    font-size: 14px;
    display: block;
    padding: 2px 20px;
}


/* Social Menu */
.socialMenu {
    position: absolute;
    z-index: auto;
    bottom: -2px;
    right: 20px;
}
.socialMenu a {
   display: inline-block;
   font-size: 12px;
   text-align: center;
   height: 30px;
   width: 30px;
   line-height: 30px;
   background-color: transparent;
   color: #004f92;
   border-radius: 50%;
   padding: 0;
   transition: ease .5s;
}
.socialMenu a:hover {
   background-color: #e2001a;
   color: #fff;
}
.socialMenu a span {
    display: none;
}
@media (max-width: 900px){
    .socialMenu {
        position: relative;
        padding-top: 20px;
        bottom: auto;
        right: auto;
    }
}



/* CONTENT
-------------------------------------------------- */

.siteMain {
    min-height: calc(100vh - 30px);
}
.container {
	background-color: #fff;
    color: #444;
	padding: 300px 40px 120px 100px;
    margin: 0 auto;
    max-width: calc(100vw - 140px);
    min-height: calc(100vh - 300px);
}
@media (min-width: 1000px){
    .container {
        max-width: 60%;
		margin: 0 0 0 auto;
        padding: 120px 40px 120px 100px;
    }
}
.sharing strong {
    display: block;
    font-size: 10px;
    padding: 20px 0 10px 0;
}
article a {
    color: #222;
    border-bottom: 1px solid #FFED00;
}
article a:hover {
    border-bottom: 1px solid #FFED00;
}
article #cff a, article #cff a:hover {
    border-bottom: none;
}
figure img {
    max-width: 100%;
    width: auto;
    height: auto;
}
article figure a, article figure a:hover {
    border-bottom: none;
}
.pageContent {
    background-color: #fff;
    padding: 0;
}
@media (min-width: 1000px) {
    .pageContent {
        padding: 40px;
    }
}

/* Effets et positions */
.leftTopDecal {
    margin: -40px 0 0 -60px;
    border: 10px solid #fff;
    box-shadow: 0 0 10px rgba(0,0,0,.25);
    background-color: #fff;
}

/* Before - After Hack */
.bafg-twentytwenty-wrapper {
    border: 2px solid #efefef;
}


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

.single .container {
	padding: 10px 20px 20px 10px;
    min-height: calc(100vh - 54px);
    margin: 50vh 0 0 80px;
    max-width: 100vh;
}
@media (min-width: 1000px) {
    .single .container {
        box-sizing: border-box;
        padding: 40px 60px 80px 60px;
        margin: 0 0 0 auto;
        max-width: 60%;
    }
}
.single .siteLogo a {
    background: url("../img/logo-ARC-w.png") no-repeat center center;
    background-size: contain;
    transition: all ease .5s;
}
.single.persistent .siteLogo a {
    background: url("../img/logo-ARC-mini.png") no-repeat center center;
    background-size: contain;
}

 
/* ARCHIVES et BLOG
-------------------------------------------------- */

.archive .siteLogo a {
    background: url("../img/logo-ARC.png") no-repeat center center;
    background-size: contain;
}
.archive.persistent .siteLogo a {
    background: url("../img/logo-ARC-mini.png") no-repeat center center;
    background-size: contain;
}
.gridView {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  grid-auto-rows: 20px;
}

@media (max-width: 1150px){
    .gridView {
        grid-gap: 20px;
        grid-template-columns: repeat(auto-fill, minmax(180px,1fr));
    }
}
.gridItem .content {
    padding: 15px;
    border: 1px solid #ddd;
}
.gridItem.firstItem .content {
    padding: 0 0 60px 0;
    border: none;
}
.gridItem img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.gridItem h2, .gridItem h4 {
  font-size: 20px;
  margin-bottom: 0;
}
.gridItem h2 a, .gridItem h4 a {
  text-decoration: none;
  color: #222;
}
.gridItem h2 a:hover, .gridItem h4 a:hover {
  color: #222;
}
.gridItemCity {
  text-transform: uppercase;
}

/*  Archives Nav */
.archiveNav {
	clear: both;
	text-align: center;
	display: block;
	padding-top: 3em;
}
.archiveNav li {
	display: inline;
}
.archiveNav a,
.archiveNav a:hover,
.archiveNav .active a,
.archiveNav .disabled {
    display: inline-block;
	background-color: #000;
	cursor: pointer;
	color: #fff;
	text-decoration:none;
    font-size: 12px;
    font-weight: bold;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    padding: 0;
    margin-right: 5px;
}
.archiveNav .current {
	padding: 10px;
	padding: 0.7rem;
}

.archiveNav a:hover {
    background-color: #FFED00;
    color: #000;
}
.archiveNav .active a,
.archiveNav .current {
	color: #000;
	background-color: #fff;
}


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

.home img {
    width: auto;
    height: auto;
    max-width: 100%;
}
.homeWrapper .siteTitle {
    min-height: 80vh;
    width: 50vw;
    margin-top: 20vh;
    margin-bottom: 20vh;
    margin-left: 40vw;
}
.homeWrapper .siteTitle h1 {
    color: #fff;
    text-align: right;
}
@media (max-width: 700px){ 
    .homeWrapper .siteTitle {
        width: auto;
        margin-left: 90px;
        margin-top: 300px;
    }
    .homeWrapper .siteTitle h1 {
        font-size: 1.8rem;
    }
}
@media screen and (min-width: 701px) and (max-width: 900px){ 
    .homeWrapper .siteTitle {
        width: 80vw;
        margin-left: 90px;
        margin-top: 300px;
    }
    .homeWrapper .siteTitle h1 {
        font-size: 3rem;
    }
}

.homeNav ul {
    text-align: right;
}
.homeNav a {
    display: block;
    text-align: right;
    margin: 2px 0 0 0;
    font-weight: 600;
}
.homeNav a span {
    display: inline-block;
    background-color: #FFED00;
    color: #111;
    border-bottom: 1px solid #FFED00;
    min-width: 0;
    padding: 4px 8px;
    transition: all ease-in-out 1s;
}
.homeNav a:hover span {
    background-color: transparent;
    color: #FFED00;
    min-width: 90%;
}
.homeWrapper .homeContent {
    background-color: #fff;
    padding-bottom: 60px;
}
.homeContent .container {
	background-color: transparent;
	padding: 0 40px 0 90px;
    margin: 0 auto;
    border-left: none;
    min-height: 0;
    width: 100%;
}
@media (min-width: 1000px){
    .homeContent .container {
        max-width: 940px;
		margin: 0 auto;
    }
}
@media (min-width: 1200px){
    .homeContent .container {
        max-width: 1000px;
		margin: 0 auto;
    }
}
.bordered {
    border: 1px solid #ddd;
    padding: 1em;
    font-size: 1.2em;
}
.home footer {
    display: none;
}
.home .grecaptcha-badge { 
    visibility: hidden;
}


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

.sameCat ul, .sameCat li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.sameCat a {
	display: block;
	font-size: 1.1rem;
	padding: 5px 0;
}
.sameCat a:hover {
	border: none;
}
.sameCat a i {
	color: #c01a22;
	font-size: 1.2rem;
}

/* CATEGORY LIST
-------------------------------------------------- */

.page-template-page-category-list .gridView {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
  grid-auto-rows: 10px;
  margin-top: 40px;
}
.page-template-page-category-list .gridItem h2 {
	padding-top: 0;
	padding-bottom: 0.6rem;
}

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

footer {
    background-color: #ffffff;
    border-top: 1px solid #ddd;
}
.footerContainer {
    padding: 0 20px 10px 100px;
    margin: 0 auto;
    max-width: calc(100vw - 80px);
}
footer ol {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
footer .widget ul, footer .widget li {
	margin: 0 !important;
	padding: 0 !important;
}
footer ul.menu {
	padding: 20px 0 !important;
}
footer ul.menu li {
	list-style-type: none;
	padding-bottom: 1px !important;
}
footer ul.menu li a {
	display: block;
	padding: 5px 10px;
	color: #111;
	background-color: #FFED00;
	transition: 1s background-color ease;
}
footer ul.menu li a:hover {
	background-color: #111;
    color: #fff;
}
footer h3 {
	margin: 0;
    padding: 20px 0;
}
footer .contactFooter {
    border: 1px solid #ddd;
    padding: 1em;
    font-size: 1.2em;
}
footer img {
    max-width: 100%;
    width: auto;
    height: auto;
}
.gridWidgets:before, .gridWidgets:after {
    clear: both;
    content: "";
    display: block;
}
.footerGridView {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 40px;
	grid-template-areas: "footer1 footer2 footer3";
}
.footerItem01 {
	grid-area: footer1;
}
.footerContent01 p:first-of-type {
    margin: 0;
}
.footerItem02 {
	grid-area: footer2;
}
.footerItem03 {
	grid-area: footer3;
}
@media (max-width: 766px){
    .footerContainer {
        max-width: calc(100vw - 40px);
    }
	.footerGridView {
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas: "footer1" "footer2" "footer3";
    }
}
@media (min-width: 1200px){
    .footerContainer {
        max-width: 1100px;
    }
}
/* Back to top */

.totop {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 104400;
    display: block;
    width: 80px;
    border-top: 1px solid #ddd;
}
.totop a, .totop a:visited{
	background-color: #fff;
	display: block;
	color: #222;
	text-align: center;
	line-height: 80px;
}
.totop a:hover, #footer-opener a:hover {
	color: #222;
	background-color: #FFED00;
	text-decoration: none;
}
.totop a i {
	color: #222;
}

/* Bottom Nav */

.bottomNav {
    text-align: center;
    font-size: 10px;
    background-color: #fff;
    padding: 10px 20px 10px 100px;
    border-top: 1px solid #ddd;
}
.bottomNav nav {
    float: left;
}
.bottomNav nav li {
    display: inline-block;
}
.bottomNav nav li a {
    margin-right: 10px;
}
.bottomNav nav li:last-child a {
    margin-right: 0;
}



/* RESPONSIVE
-------------------------------------------------- */



@media (max-width: 1250px){
}
@media (max-width: 1200px){
}
@media (max-width: 992px){
}
@media (max-width: 768px){
}
@media (max-width: 767px){
}
@media (max-width: 640px){
}
@media (max-width: 544px){
}
@media (max-width: 480px){
}
@media (max-width: 360px){
}