/*
Theme Name: Le Moustoir
Author: Catalyst Webdesign
Description: Thème pour Le Moustoir
Version: 1.0

font-family: "Poppins", sans-serif;
font-family: 'inglobal';

vert foncé : 87/158/70 #579E46
vert clair : 197/212/62 #C5D43E
bleu : 0/128/201 #0080C9
*/

/* GENERAL region*/

/*font region*/
@font-face {
    font-family: 'inglobal';
    src: url('font/inglobal-Bold.woff2') format('woff2'),
        url('font/inglobal-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'inglobal';
    src: url('font/inglobal-BoldItalic.woff2') format('woff2'),
        url('font/inglobal-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'inglobal';
    src: url('font/inglobal.woff2') format('woff2'),
        url('font/inglobal.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'inglobal';
    src: url('font/inglobal-Italic.woff2') format('woff2'),
        url('font/inglobal-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

/*endregion*/

body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #111111;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}



img {
    max-width: 100%;
}

main h2 {
    color: rgb(87, 158, 70);
    text-transform: uppercase;
    text-align: center;
    font-size: 50px;
    font-weight: 800;
    position: relative;
    margin: 100px 0;
    letter-spacing: 2px;
    font-family: 'inglobal';
}

main h2::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 2px;
    background: rgb(197, 212, 62);
    top: 50%;
    left: 0;
}

main h2 span {
    background: white;
    padding: 10px 50px;
    border-radius: 30px;
}

.mobile main h2 span {
    padding: 10px;
    font-size: 25px;
    display: inline-block;
}

/* * * Listes region*/
header ul,
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


/*endregion*/

/* * * Boutons et liens region*/

a {
    text-decoration: none;
    color: #111111;
    transition: .5s;
}

a:hover {
    color: #C5D43D;
}

a.button.click {
    transform: translate(2px, 2px) scale(0.99);
    transform-origin: bottom right;
}

/*endregion*/

/* * * Wrapper region*/
.wrapper {
    width: 1200px;
    max-width: 90%;
    margin: 0 auto;
    position: relative;
}

/*endregion*/

/*endregion*/

/* HEADER region*/

/* * GENERAL region*/
header {
    background: transparent;
    width: 100%;
    padding-bottom: 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

header * {
    transition: .5s;
}


header .blanc {
    background: rgba(255, 255, 255, 0.8);
    border-bottom-left-radius: 50% 100px;
    border-bottom-right-radius: 50% 100px;
    text-align: center;
    position: relative;
    z-index: 2;
    transform: scale(1.1);
    padding: 30px 0;
    transition: .5s;
}

.mobile header .blanc {
    border-bottom-left-radius: 100% 100px;
    border-bottom-right-radius: 100% 100px;
}

header .wrapper {
    width: 1400px !important;
}

header h1 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 44px;
    margin: 50px auto 100px auto;
    position: relative;
    display: inline-block;
}

.mobile header h1 {
    font-size: 30px;
    margin: 100px auto 50px auto;
}

header h1 svg {
    position: absolute;
    top: -35px;
    right: -110px;
}

.mobile header h1 svg {
    width: 120px;
    top: -17px;
    right: -74px;
}

header .liens {
    position: absolute;
    right: 0;
    top: calc(50% - 65px);
}

.mobile header .liens {
    top: 100%;
    width: 100%;
    transform: translateX(-50%);
    left: 50%;
}

.mobile header .wrapper > .liens {
    display: none;
}

.desktop header .content-menu .liens {
    display: none;
}

header .liens a {
    display: block;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    color: #579e46;
    font-size: 26px;
    padding: 15px 40px 15px 15px;
    box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    background: white;
    margin: 10px;
    background-image: url(images/afterlien.png);
    background-repeat: no-repeat;
    background-position: 95% center;
    background-size: auto 70%;
}

header .liens a:hover {
    color: white;
    background-color: #579E46;
}


header .reseaux {
    position: absolute;
    left: 0;
    bottom: 10px;
    display: flex;
}

.mobile header .reseaux {
    position: absolute;
    left: 50%;
    bottom: unset;
    display: flex;
    top: 0;
    transform: translateX(-50%);
}

header .reseaux a {
    position: relative;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 5px;
    box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.8);
}

@media screen and (max-width:1300px) {
    header .reseaux {
        bottom: 20px;
    }

    header .reseaux a {
        width: 35px;
        height: 35px;
        margin: 2px;
    }

    header .reseaux a svg {
        width: 25px;
    }
}

.desktop header .reseaux a:nth-of-type(1) {
    top: 20px;
}

.desktop header .reseaux a:nth-of-type(2) {
    top: 30px;
}

@media screen and (min-width:1550px) {
    .desktop header .reseaux a:nth-of-type(1) {
        top: 24px;
    }

    .desktop header .reseaux a:nth-of-type(2) {
        top: 32px;
    }
}

.desktop header .reseaux a:nth-of-type(3) {
    top: 40px;
}

.desktop header .reseaux a:nth-of-type(4) {
    top: 45px;
}

.desktop header .reseaux a:nth-of-type(5) {
    top: 50px;
}

header.scrolled .blanc {
    background: white;
    border-radius: 0;
    transform: unset;
    padding: 0;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
}


header.scrolled .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 95%;
}

header.scrolled .titre {
    padding-right: 30px;
}

header.scrolled h1 {
    font-size: 16px;
    margin: 20px auto;
    white-space: nowrap;
}

header.scrolled h1 svg {
    width: 60px;
    top: -8px;
    right: -30px;
}

header.scrolled nav,
.desktop header.scrolled .liens,
header.scrolled .reseaux {
    position: relative;
    transform: unset;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
}

header.scrolled .liens {
    display: flex;
}

.mobile header.scrolled nav{
	position:static;
}

header.scrolled .liens a {
    font-size: 12px;
    padding: 10px 40px 10px 15px;
    margin: 0 2px;
	position:relative;
	left:50%;
	transform:translatex(-50%);
}


header.scrolled .reseaux a:not(#tel) {
    width: auto;
    height: auto;
    box-shadow: unset;
    border-radius: 0;
    position: static;
    display: inline-block;
    margin: 20px 5px;
    background: transparent;
}

.mobile header.scrolled .reseaux #mail,
.mobile header.scrolled .reseaux #time,
.mobile header.scrolled .reseaux #fb,
.mobile header.scrolled .reseaux #insta{
	display:none;
}

.mobile header.scrolled .reseaux #tel{
	background:#C5D43E;
}

.mobile header.scrolled .reseaux #tel .cls-1tel{
	fill:black;
}

header.scrolled .reseaux svg {
    width: 20px;
}

header .reseaux .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    width: 100vw;
    height: 100vh;
}

header .reseaux .popup span {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 50px;
    width: 500px;
}

header .reseaux .popup .fermer {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    cursor: pointer;
    font-size: 32px;
    font-family: 'inglobal';
}

header .reseaux .popup .fermer:hover {
    transform: translateX(-50%) scale(1.2);
}

/*endregion*/

/* * NAV region*/
header nav {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}

/* * * CONTENT region*/
.desktop header nav .content-menu {
    display: block !important;
}

.mobile header nav .content-menu {
    display: none;
    position: absolute;
    background: #C5D43E;
    left: 50%;
	transform:translatex(-50%);
	width:90vw;
    box-sizing: border-box;
    padding-top: 45px;
    top: 30px;
    z-index: -1;
    border-radius:50px;
}

.mobile header.scrolled nav .content-menu {
    top: 67px;
	border-radius:0 0 50px 50px;
}


/*endregion*/

/* * * UL region*/
header nav #menu-principal {
    display: flex;
    justify-content: center;
    border-radius: 30px;
}

.mobile header nav #menu-principal {
    flex-direction: column;
    align-items: center;
    border-radius: 0 0 50px 50px;
    overflow: hidden;
}

header nav ul.sub-menu {
    display: none;
    position: relative;
    width: 100%;
    background-color: #579E46;
    padding: 0;
}

.desktop header nav ul.sub-menu {
    position: absolute;
    padding-top: 35px;
    top: 25px;
    z-index: -1;
}

/*endregion*/

/* * * LI region*/

header nav #menu-principal li {
    position: relative;
    transition: .5s;
}

.mobile header nav #menu-principal li {
    width: 100%;
}

.desktop header nav #menu-principal li:first-of-type {
    background: #579E46;
    border-radius: 50px 0 0 50px;
}

.desktop header nav #menu-principal li:last-of-type {
    background: #579E46;
    border-radius: 0 50px 50px 0;
}

.desktop header nav #menu-principal li:first-of-type.clicked {
    border-radius: 50px 0 0 0;
}

.desktop header nav #menu-principal li:last-of-type.clicked {
    border-radius: 0 50px 0 0;
}

/*endregion*/

/* * * A region*/
header nav #menu-principal > li > a {
    color: #111;
    transition: .5s;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 22px;
    padding: 15px 50px;
    display: block;
    background-color: #C5D43E;
}

header.scrolled nav #menu-principal > li > a {
    font-size: 16px;
    padding: 10px 30px;
}

@media screen and (max-width:1500px) {
    header nav #menu-principal > li > a {
        padding: 15px 30px;
    }
}

.desktop header nav #menu-principal > li > a {
    border: 1px solid #579E46;
    border-top: 0;
    border-bottom: 0;
}

.desktop header nav #menu-principal > li:first-of-type > a {
    border-radius: 50px 0 0 50px;
    border-left: 0;
}

.desktop header nav #menu-principal > li:last-of-type > a {
    border-radius: 0 50px 50px 0;
    border-right: 0;
}

.desktop header.scrolled nav #menu-principal > li:last-of-type > a {
    min-width: 125px;
    box-sizing: border-box;
}


header nav #menu-principal > li > a:hover,
header nav #menu-principal > li.clicked > a {
    color: #fff;
    background-color: #579E46;
}

header nav #menu-principal .sub-menu a {
    color: white;
    border-bottom: 1px solid #C5D43E;
    padding: 7px 5px;
    display: block;
    transition: .5s;
    font-weight: 600;
    font-size: 14px;
}

header nav #menu-principal .sub-menu li:first-of-type a {
    border-top: 1px solid #C5D43E;
}

header nav #menu-principal .sub-menu li:last-of-type a {
    border-bottom: 0;
}

header nav #menu-principal .sub-menu a:hover {
    color: #C5D43E;
    font-style: italic;
}

.mobile header nav li:last-of-type > a {
    padding-bottom: 20px !important;
}

/*endregion*/

/* * * BURGER region*/
.burger {
    cursor: pointer;
    justify-content: space-between;
    flex-direction: column;
    display: flex;
    padding: 15px ;
    background-color: #C5D43E;
    border-radius: 30px;
    gap: 5px;
	font-size:11px;
}

.desktop .burger {
    display: none;
}

.burger div {
    background-color: #111;
    width: 30px;
    height: 3px;
}
.burger:hover{
	color:#fff;
}

.burger:hover div{
	background-color:#fff;
}

header.scrolled .burger{
	background:transparent;
	color:rgb(87, 158, 70);
}

header.scrolled .burger div{
	background-color:rgb(87, 158, 70);
}

header.scrolled .burger:hover{
	color:#C5D43E;
}

header.scrolled .burger:hover div{
	background-color:#C5D43E;
}
/*endregion*/
/*endregion*/

/*endregion*/

/* MAIN region*/
main {
    overflow-x: hidden;
    padding-bottom: 50px;
}

/*endregion*/

/* FOOTER region*/
.coordonnees {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}



.coordonnees::before {
    background-image: url(images/barrefooter.svg);
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
    content: '';
    width: 110%;
    height: 100px;
    position: absolute;
    top: 0;
    left: -5%;
}

.coordonnees .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile .coordonnees .flex {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.coordonnees .logofooter {
    position: relative;
    margin: 100px 0;
}

.mobile .coordonnees .logofooter {
    margin: 50px 0;
}

.coordonnees .logofooter span {
    font-size: 34px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
}

.mobile .coordonnees .logofooter span {
    font-size: 30px;
}

.coordonnees .logofooter svg {
    position: absolute;
    top: -23px;
    right: -71px;
    width: 150px;
}

.mobile .coordonnees .logofooter svg {
    width: 120px;
    top: -17px;
    right: -74px;
}

.coordonnees .coord h3 {
    font-family: 'inglobal';
    font-size: 36px;
}

.mobile .coordonnees .coord h3 {
    text-align: center;
}

.coordonnees .coord p {
    position: relative;
    margin-left: 26px;
}

.coordonnees .coord svg {
    left: -27px;
    top: 5px;
    position: absolute;
}

.coordonnees .coord svg#mail {
    left: -30px;
}

.coordonnees .rs p {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
}

.mobile .coordonnees .rs p {
    justify-content: center;
}

.coordonnees .rs p a {
    background: #0080C9;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}


.coordonnees .rs .poher {
    font-weight: bold;
    font-style: italic;
    color: #000;
    font-size: 18px;
    padding: 15px 30px;
    box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    background: #C7D341;
    margin: 30px 0;
    display: block;
}

.coordonnees .rs .poher:hover {
    color: white;
    background: #579E46;
}

footer {
    background: #0080C9;
    width: 100%;
}

footer #menu-footer {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.mobile footer #menu-footer {
    flex-direction: column;
}

.desktop footer #menu-footer li {
    border-right: 1px solid white;
}

.mobile footer #menu-footer li {
    border-bottom: 1px solid white;
    width: 300px;
    max-width: 100%;
}

footer #menu-footer li:last-of-type {
    border: 0;
}

footer a {
    color: #fff;
    text-decoration: underline;
    display: block;
    padding: 20px 30px;
    font-size: 10px;
    text-transform: uppercase;
}

.desktop footer a {
    white-space: nowrap;
}

footer .totop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    transition: .5s;
    opacity: 0;
}

footer .totop:hover {
    transform: scale(1.2);
}

footer .totop:hover path {
    fill: #579E46;
}

/*endregion*/

/* Bandeau region*/

.bandeau {
    width: 100%;
    position: relative;
    top: 0;
    border-bottom-left-radius: 50% 100px;
    border-bottom-right-radius: 50% 100px;
    transform: scale(1.1);
    overflow: hidden;
    margin-bottom: 100px;
    height: 96vh;
}



main .bandeau .images {
    transition: transform 0.5s ease-in-out;
    display: flex;
    width: 500%;
    height: 100%;
}

.bandeau .image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    flex: 0 0 20%;
}

main .bandeau .nav {
    position: absolute;
    top: 50%;
    width: 90vw;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    left: 5vw;
    z-index: 9;
}

main .bandeau .nav button {
    color: #C5D43E;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 38px;
    background: transparent;
    transition: .5s;
}

main .bandeau .nav button:hover {
    color: #579E46;
}

main .bandeau .dots {
    position: absolute;
    bottom: 10px;
    z-index: 9;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

main .bandeau .dots div {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 10px;
    background: white;
    cursor: pointer;
    transition: .5s;
}

main .bandeau .dots div:hover,
main .bandeau .dots div.active {
    background: #C5D43E;
}

/*endregion*/

/* PAGES region*/

/* * Front page region*/


.home main .clic h2 {
    color: rgb(87, 158, 70);
}

.home main .clic h2::after {
    background: rgb(197, 212, 62);
}

.home main .clic .flex {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile.home main .clic .flex a {
    max-width: 45%;
}

@media screen and (max-width: 445px) {
    .home main .clic .flex a {
        max-width: 100% !important;
    }
}

.home main .clic .flex div {
    width: 200px;
    height: 200px;
    border-radius: 30px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    max-width: 100%;
}

@media screen and (max-width: 1244px) {
    .home main .clic .flex {
        gap: 40px;
    }

    .home main .clic .flex div {
        width: 250px;
        height: 250px;
    }
}

.home main .clic a div::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: .5s;
}

.home main .clic a:nth-of-type(odd) div::before {
    background-color: rgba(87, 158, 70, 0.8);
}

.home main .clic a:nth-of-type(even) div::before {
    background-color: rgba(0, 128, 201, 0.8);
}


.home main .clic a div:hover::before {
    opacity: 0;
}

.home main .clic a:nth-of-type(odd) div span {
    color: rgba(87, 158, 70, 1);
}

.home main .clic a:nth-of-type(even) div span {
    color: rgba(0, 128, 201, 1);
}


.home main .clic a div span {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: white;
    border-radius: 0 0 30px 30px;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 0;
    z-index: 3;
    font-weight: bold;
    letter-spacing: 1px;
}

.home main .agenda {
    background: #C7D341;
    mask-image: url('images/agenda.png');
    -webkit-mask-image: url('images/agenda.png');
    position: relative;
    overflow: hidden;
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    margin-top: 100px;
    mask-position: center top;
}

.mobile.home main .agenda {
    mask-size: 150% 107%;
}

.home main .agenda .wrapper {
    padding-bottom: 150px;
    text-align: center;
}

.home main .agenda h2 {
    color: black;
}

.home main .agenda h2::after {
    background: #000;
}

.home main .agenda h2 span {
    background: #C7D341;
}

.home main .agenda .flex {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.mobile.home main .agenda .flex {
    flex-wrap: wrap;
}

.desktop.home main .agenda a {
    width: 30%;
}

.mobile.home main .agenda a {
    width: 45%;
}

@media screen and (max-width: 550px) {
    .mobile.home main .agenda a {
        width: 100%;
    }
}

.home main .agenda .photo {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    transition: .5s;
}

.home main .agenda .photo:hover {
    transform: scale(1.1);
}


.home main .agenda .contenu {
    background: white;
    border-radius: 30px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    position: relative;
    top: -50px;
    width: 70%;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    padding-top: 30px;
}

.home main .agenda .contenu span {
    background: #599D46;
    border-radius: 30px;
    position: absolute;
    top: -30px;
    margin: 0 auto;
    padding: 10px 20px;
    color: white;
    font-size: 26px;
    font-style: italic;
    left: 50%;
    transform: translate(-50%);
    white-space: nowrap;
}

.home main .agenda .contenu h3 {
    color: #599D46;
    font-weight: 300;
    font-size: 30px;
    font-family: 'inglobal';
    margin: 20px 0;
}

.home main .agenda .contenu .texte {
    text-align: left;
}

.home main .agenda a.button {
    font-weight: bold;
    font-style: italic;
    color: #579e46;
    font-size: 22px;
    padding: 15px 40px 15px 15px;
    box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    background: white;
    margin: 10px;
    background-image: url(images/afterlien.png);
    background-repeat: no-repeat;
    background-position: 95% center;
    background-size: auto 70%;
    display: inline;
}

.mobile.home main .agenda a.button {
    font-size: 15px;
}

.home main .agenda a.button:hover {
    color: white;
    background-color: #579E46;
}

.home main .actus {
    text-align: center;
    margin-bottom: 50px;
}


.home main .actus .flex {
    display: flex;
    justify-content: center;
    gap: 30px;
    text-align: left;
    flex-wrap: wrap;
}

.home main .actus .flex > a {
    width: calc(50% - 15px);
}

.home main .actus .flex article {
    display: flex;
    gap: 20px;
}

.mobile.home main .actus .flex > a {
    width: 100%;
}

.mobile.home main .actus .flex article {
    flex-direction: column;
    text-align: center;
}



.home main .actus h3 {
    font-weight: 300;
    font-size: 30px;
    color: #579E46;
    margin: 20px 0 0 0;
    font-family: 'inglobal';
}

.home main .actus span.date {
    font-weight: 300;
    font-size: 14px;
    color: #000;
    font-style: italic;
}

.home main .actus .photo {
    width: 250px;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    flex-shrink: 0;
    transition: .5s;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
}

.home main .actus .photo:hover {
    transform: scale(1.1);
}

.mobile.home main .actus .photo {
    margin: 0 auto;
}

.home main .actus h3 {
    margin-top: 0;
}

.home main .actus a.button {
    font-weight: bold;
    font-style: italic;
    color: #000;
    font-size: 22px;
    padding: 15px 40px 15px 15px;
    box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    background: #C7D341;
    margin: 10px;
    background-image: url(images/afterlien2.png);
    background-repeat: no-repeat;
    background-position: 95% center;
    background-size: auto 70%;
    display: inline-block;
    margin-top: 50px;
}

.home main .actus a.button:hover {
    color: white;
    background-color: #579E46;
    background-image: url(images/afterlien.png);
}

/*endregion*/

/* * blog region*/

.blog main .listeposts .post,
.page-template-agenda main .listeposts .post {
    position: relative;
    margin: 150px 0;
}

.blog main .listeposts svg,
.page-template-agenda main .listeposts svg {
    position: absolute;
    width: 100%;
}

/*.desktop.blog main .listeposts svg,
.desktop.page-template-agenda main .listeposts svg {
    top: -35%;

}*/

.mobile.blog main .listeposts svg,
.mobile.page-template-agenda main .listeposts svg {
    top: -5%;

}

.mobile.blog main .listeposts svg,
.mobile.page-template-agenda main .listeposts svg {
    width: 200%;
}

.blog main .listeposts article,
.page-template-agenda main .listeposts article {
    display: flex;
    justify-content: flex-start;
    position: relative;
}

.desktop.blog main .listeposts article,
.desktop.page-template-agenda main .listeposts article {
    margin-bottom: 100px;
    padding-top: 100px;
}

.blog main .listeposts article {
    gap: 100px;
    justify-content: space-between;
}

.page-template-agenda main .listeposts article {
    align-items: center;
}

.desktop.blog main .listeposts .post:nth-of-type(even) article,
.desktop.page-template-agenda main .listeposts .post:nth-of-type(even) article {
    flex-direction: row-reverse;
    text-align: right;
}

.mobile.blog main .listeposts article,
.mobile.page-template-agenda main .listeposts article {
    flex-direction: column;
    text-align: left;
}

.blog main .listeposts article a.img,
.page-template-agenda main .listeposts article a.img {
    width: 45%;
}

.blog main .listeposts article .image,
.page-template-agenda main .listeposts article .image {
    width: 100;
    height: 400px;
    border-radius: 30px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    background-position: center;
    background-size: cover;
    transition: .5s;
}

.blog main .listeposts article .image:hover,
.page-template-agenda main .listeposts article .image:hover {
    transform: scale(1.1);
}

.mobile.blog main .listeposts article .image,
.mobile.blog main .listeposts article .content,
.mobile.page-template-agenda main .listeposts article .image {
    width: 100%;
    padding-top: 0;
}

.blog main .listeposts article .content,
.page-template-agenda main .listeposts article .content {
    width: calc(55% - 100px);
    padding-top: 60px;
}

.blog main .listeposts article .content .titre {
    font-family: 'inglobal';
    padding: 10px 50px;
    background: #599D46;
    border-radius: 30px;
    display: inline;
    color: white;
    font-size: 28px;
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translate(-50%);
    white-space: nowrap;
}

.blog main .listeposts article .content .titre span.date {
    position: absolute;
    background: transparent;
    font-style: italic;
    font-weight: 300;
    font-size: 14px;
    bottom: -20px;
    right: 0;
    color: black;
}


.blog main .listeposts article .content.inverse .titre,
.page-template-agenda main .content.inverse span.date {
    background: #C5D43D;
    color: black;
}

.blog main .listeposts .post:nth-of-type(even) article .titre span.date {
    right: unset;
    left: 0;
}


.mobile.blog main .listeposts article .content .titre {
    top: 350px;
}

.blog main .listeposts article .content .extrait p,
.page-template-agenda main .listeposts article .content .extrait p {
    margin: 0;
}

.blog main .listeposts article .content .more,
.page-template-agenda main .listeposts article .content .more {
    color: #599D46;
    text-decoration: underline;
    cursor: pointer;
}

.blog main .listeposts article .content.inverse .more,
.page-template-agenda main .listeposts article .content.inverse .more {
    color: #C5D43D;
}

.blog main .listeposts article .content .more:hover,
.page-template-agenda main .listeposts article .content .more:hover {
    color: #C5D43D;
}

.desktop.blog main .listeposts .extrait,
.desktop.page-template-agenda main .list {
    padding-top: 70px;
}

.blog main .listeposts .rest,
.page-template-agenda main .listeposts .rest {
    display: none;
}

.desktop.blog main .listeposts .rest,
.desktop.page-template-agenda main .listeposts .rest {
    padding-top: 70px;
}

.page-template-agenda main .content span.date {
    background: #599D46;
    border-radius: 30px;
    position: absolute;
    top: -30px;
    margin: 0 auto;
    padding: 10px 20px;
    color: white;
    font-size: 26px;
    font-style: italic;
    left: 50%;
    transform: translate(-50%);
    white-space: nowrap;
}

.page-template-agenda main .listeposts article .content {
    border-radius: 30px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    width: 350px;
    padding: 20px;
    background: white;
    position: relative;
    height: 60%;
}

.desktop.page-template-agenda main .listeposts .post:nth-of-type(odd) article .content {
    left: -50px;
    right: unset;
}

.desktop.page-template-agenda main .listeposts .post:nth-of-type(even) article .content {
    right: -50px;
    left: unset;
}

.mobile.page-template-agenda main .listeposts .post article .content {
    top: -50px;
    height: auto;
    width: 70%;
}

.page-template-agenda main .listeposts article .content .titre {
    color: #599D46;
    font-family: 'inglobal';
    font-size: 28px;
    text-align: center;
}

.blog main .dl {
    font-weight: bold;
    text-decoration: underline;
    font-style: italic;
}

/* endregion */

/* * Pages region*/

.page-template-default main .wrapper .categorie {
    font-size: 28px;
}

.page-template-default main .wrapper .categorie svg {
    width: 100px;
    fill: #0080c9;
    position: relative;
    top: 15px;
    margin-right: 10px;
}

.page-template-default main .wrapper .section {
    display: flex;
    gap: 100px;
    margin: 250px 0;
}

.mobile.page-template-default main .wrapper .section {
    flex-direction: column-reverse;
    gap: 50px;
    margin: 300px 0;
}

.mobile.page-template-default main .wrapper .section:last-of-type {
    margin-bottom: 0;
}
.desktop.page-template-default main .wrapper .section:nth-of-type(odd) {
    flex-direction: row-reverse;
}

.page-template-default main .wrapper .section .carousel {
    width: 45%;
    flex-shrink: 0;
    position: relative;
}

.mobile.page-template-default main .wrapper .section .carousel {
    width: 80%;
	margin:0 auto;
}
.page-template-default main .wrapper .section .carousel a.img:not(:first-of-type) {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
}

.page-template-default main .wrapper .section .carousel a.img:nth-of-type(2) {
    transform: rotate(5deg) translateX(30px);
}

.page-template-default main .wrapper .section .carousel a.img:nth-of-type(3) {
    transform: rotate(-3deg) translate(-40px, 20px);
}

.page-template-default main .wrapper .section > a.img {
    width: 45%;
    flex-shrink: 0;
}

.mobile.page-template-default main .wrapper .section > a.img {
    width: 100%;
    flex-shrink: 0;
}


.page-template-default main .wrapper .section .image {
    width: 100%;
    height: 400px;
    border-radius: 30px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    background-position: center;
    background-size: cover;
    transition: .5s;
}

.page-template-default main .wrapper .section .image:hover {
    transform: scale(1.1);
}


.page-template-default main .wrapper .section .infos {
    width: 45%;
    flex-shrink: 0;
}

.mobile.page-template-default main .wrapper .section .image,
.mobile.page-template-default main .wrapper .section .infos {
    width: 100%;
}

.page-template-default main .wrapper .section .contenu {
    position: relative;
	padding-top:50px;
}

.page-template-default main .wrapper .section .titre {
    position: absolute;
    top: -130px;
    z-index: 1;
    width: fit-content;
	min-width:400px;
}

.desktop.page-template-default main .wrapper .section:nth-of-type(even) .titre {
    left: 0;
}

.desktop.page-template-default main .wrapper .section:nth-of-type(odd) .titre {
    right: 0;
    text-align: right;
}

.mobile.page-template-default main .wrapper .section .titre {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.page-template-default main .wrapper .section .titre h3 {
    font-weight: 500;
    font-size: 24px;
    display: inline-block;
    color: white;
}

.page-template-default main .wrapper .section .titre svg {
    fill: #599D46;
    position: absolute;
    width: 500px;
    height: 200px;
    z-index: -1;
    left: -40px;
    top: -60px
}

.page-id-40 main .wrapper .section3 .titre svg,
.page-id-40 main .wrapper .section5 .titre svg,
.page-id-54 main .wrapper .section11 .titre svg {
    top: -40px
}


.page-template-default main .wrapper .section:nth-of-type(odd) .titre svg {
    transform: scaleX(-1);
    left: unset;
    right: -40px;
}


.page-template-default main .wrapper .section .texte {
    position: relative;
    z-index: 2;
}

.page-template-default main .wrapper .section .reste {
    display: none;
}

.page-template-default main .wrapper .section .texte p:first-child {
    margin-top: 0;
}

.page-template-default main .wrapper .section:nth-of-type(3) .titre svg,
.page-template-default main .wrapper .section:nth-of-type(6) .titre svg,
.page-template-default main .wrapper .section:nth-of-type(9) .titre svg,
.page-template-default main .wrapper .section:nth-of-type(12) .titre svg,
.page-template-default main .wrapper .section:nth-of-type(3) svg path.fill,
.page-template-default main .wrapper .section:nth-of-type(6) svg path.fill,
.page-template-default main .wrapper .section:nth-of-type(9) svg path.fill,
.page-template-default main .wrapper .section:nth-of-type(12) svg path.fill {
    fill: #c5d43e;
}

.page-template-default main .wrapper .section:nth-of-type(3) table td svg#mail path,
.page-template-default main .wrapper .section:nth-of-type(6) table td svg#mail path,
.page-template-default main .wrapper .section:nth-of-type(9) table td svg#mail path,
.page-template-default main .wrapper .section:nth-of-type(12) table td svg#mail path {
    stroke: #c5d43e;
}

.page-template-default main .wrapper .section:nth-of-type(4) .titre svg,
.page-template-default main .wrapper .section:nth-of-type(7) .titre svg,
.page-template-default main .wrapper .section:nth-of-type(10) .titre svg,
.page-template-default main .wrapper .section:nth-of-type(13) .titre svg,
.page-template-default main .wrapper .section:nth-of-type(4) path.fill,
.page-template-default main .wrapper .section:nth-of-type(7) path.fill,
.page-template-default main .wrapper .section:nth-of-type(10) path.fill,
.page-template-default main .wrapper .section:nth-of-type(13) path.fill {
    fill: #0080c9;
}

.page-template-default main .wrapper .section:nth-of-type(4) svg#mail path,
.page-template-default main .wrapper .section:nth-of-type(7) svg#mail path,
.page-template-default main .wrapper .section:nth-of-type(10) svg#mail path,
.page-template-default main .wrapper .section:nth-of-type(13) svg#mail path {
    stroke: #0080c9;
}

.page-template-default main .wrapper .section:nth-of-type(3) .titre h3,
.page-template-default main .wrapper .section:nth-of-type(6) .titre h3,
.page-template-default main .wrapper .section:nth-of-type(9) .titre h3,
.page-template-default main .wrapper .section:nth-of-type(12) .titre h3 {
    color: black;
}

.page-template-default main .wrapper .section .contenu a {
    color: #599D46;
    font-weight: bold;
    font-style: italic;
    text-decoration: underline;
}

.page-template-default main .wrapper .section:nth-of-type(4) .contenu a,
.page-template-default main .wrapper .section:nth-of-type(7) .contenu a,
.page-template-default main .wrapper .section:nth-of-type(10) .contenu a,
.page-template-default main .wrapper .section:nth-of-type(13) .contenu a {
    color: #0080c9;
}

.page-template-default main .wrapper .section:nth-of-type(3) .contenu a,
.page-template-default main .wrapper .section:nth-of-type(6) .contenu a,
.page-template-default main .wrapper .section:nth-of-type(9) .contenu a,
.page-template-default main .wrapper .section:nth-of-type(12) .contenu a {
    color: #c5d43e;
}

.page-template-default main .wrapper .section table td:first-of-type {
    text-align: center;
    padding: 5px 10px 5px 0;
}

.page-id-46 .infos .top {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.page-id-46 .infos .top span {
    margin: 0 10px;
}

.page-id-46 .infos {
    display: flex;
    gap: 10px;
    flex-direction: column;
}


.page-id-46 .carte {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 80vh;
    margin: 50px 0;
}

.page-template-default main #tarifs {
    border: 2px solid #599D46;
}

.page-template-default main #tarifs th {
    border: 2px solid #599D46;
    color: white;
    background: #599D46;
}

.page-template-default main #tarifs td {
    border: 2px solid #599D46;
    color: #599D46;
}

/*endregion*/


/* * acteurs region*/

.page-template-acteurs .texteprincipal {
    font-weight: bold;
}

.page-template-acteurs main a {
    font-weight: bold;
    text-decoration: underline;
    font-style: italic;
}

.page-template-acteurs main .categorie > .titre {
    position: relative;
    width: fit-content;
    margin: 150px 0;
}

.page-template-acteurs main .categorie:nth-of-type(even) > .titre {
    float: right;
}

.page-template-acteurs main h3 {
    display: inline-block;
    font-size: 28px;
    font-weight: 500;
    color: white;
    margin: 0;
    min-width: 400px;
}

.page-template-acteurs main .categorie:nth-of-type(odd) h3 {
    text-align: right;
}

.page-template-acteurs main .categorie > .titre svg {
    position: absolute;
    z-index: -1;
    width: 500px;
    left: 200px;
    top: -60px;
    left: -40px;
    fill: #599E45;
}

.page-template-acteurs main .categorie:nth-of-type(odd) > .titre svg {
    transform: scaleX(-1);
    left: unset;
    right: -40px;
}

.page-template-acteurs main .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 300px 30px;
    margin: 100px 0 300px 0;
    clear: both;
}

.page-template-acteurs main .flex article {
    width: calc(33% - 20px);
    height: 250px;
    border-radius: 30px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    background-size: cover;
    background-position: center;
    position: relative;
}

.mobile.page-template-acteurs main .flex article {
    width: 100%;
}

.page-template-acteurs main .flex .titre {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #599E45;
    border-radius: 30px;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 22px;
    width: 80%;
}

.page-template-acteurs main .flex article > div {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 30px;
    padding: 20px;
    width: 90%;
    top: calc(100% - 30px);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    min-height: 250px;
    box-sizing: border-box;
}

.page-id-33 main .flex article > div {
    min-height: 210px;
}


.page-template-acteurs main .flex article .tempsforts {
    color: #599E45;
    font-size: 24px !important;
    margin: 0 0 10px 0;
}

.page-template-acteurs main .flex article .soustitre {
    font-weight: 600;
}

.page-template-acteurs main .flex article p {
    font-size: 0.9em;
}

.page-template-acteurs main .flex article svg {
    margin-right: 10px;
}

.page-template-acteurs main .flex article a:hover {
    color: #599E45;
}

.page-template-acteurs main .categorie:nth-of-type(3) article .titre,
.page-template-acteurs main .categorie:nth-of-type(6) article .titre,
.page-template-acteurs main .categorie:nth-of-type(9) article .titre,
.page-template-acteurs main .categorie:nth-of-type(12) article .titre {
    background: #c5d43e;
    color: black;
}

.page-template-acteurs main .categorie:nth-of-type(3) .titre svg,
.page-template-acteurs main .categorie:nth-of-type(6) .titre svg,
.page-template-acteurs main .categorie:nth-of-type(9) .titre svg,
.page-template-acteurs main .categorie:nth-of-type(12) .titre svg,
.page-template-acteurs main .categorie:nth-of-type(3) svg path.fill,
.page-template-acteurs main .categorie:nth-of-type(6) svg path.fill,
.page-template-acteurs main .categorie:nth-of-type(9) svg path.fill,
.page-template-acteurs main .categorie:nth-of-type(12) svg path.fill {
    fill: #c5d43e;
}

.page-template-acteurs main .categorie:nth-of-type(3) svg#mail path,
.page-template-acteurs main .categorie:nth-of-type(6) svg#mail path,
.page-template-acteurs main .categorie:nth-of-type(9) svg#mail path,
.page-template-acteurs main .categorie:nth-of-type(12) svg#mail path,
.page-template-acteurs main .categorie:nth-of-type(3) svg#time *,
.page-template-acteurs main .categorie:nth-of-type(6) svg#time *,
.page-template-acteurs main .categorie:nth-of-type(9) svg#time *,
.page-template-acteurs main .categorie:nth-of-type(12) svg#time * {
    stroke: #c5d43e;
}

.page-template-acteurs main .categorie:nth-of-type(4) article .titre,
.page-template-acteurs main .categorie:nth-of-type(7) article .titre,
.page-template-acteurs main .categorie:nth-of-type(10) article .titre,
.page-template-acteurs main .categorie:nth-of-type(13) article .titre {
    background: #0080c9;
}

.page-template-acteurs main .categorie:nth-of-type(4) .titre svg,
.page-template-acteurs main .categorie:nth-of-type(7) .titre svg,
.page-template-acteurs main .categorie:nth-of-type(10) .titre svg,
.page-template-acteurs main .categorie:nth-of-type(13) .titre svg,
.page-template-acteurs main .categorie:nth-of-type(4) path.fill,
.page-template-acteurs main .categorie:nth-of-type(7) path.fill,
.page-template-acteurs main .categorie:nth-of-type(10) path.fill,
.page-template-acteurs main .categorie:nth-of-type(13) path.fill {
    fill: #0080c9;
}

.page-template-acteurs main .categorie:nth-of-type(4) svg#mail path,
.page-template-acteurs main .categorie:nth-of-type(7) svg#mail path,
.page-template-acteurs main .categorie:nth-of-type(10) svg#mail path,
.page-template-acteurs main .categorie:nth-of-type(13) svg#mail path,
.page-template-acteurs main .categorie:nth-of-type(4) svg#time *,
.page-template-acteurs main .categorie:nth-of-type(7) svg#time *,
.page-template-acteurs main .categorie:nth-of-type(10) svg#time *,
.page-template-acteurs main .categorie:nth-of-type(13) svg#time * {
    stroke: #0080c9;
}

.page-template-acteurs main .categorie:nth-of-type(3) .titre h3,
.page-template-acteurs main .categorie:nth-of-type(6) .titre h3,
.page-template-acteurs main .categorie:nth-of-type(9) .titre h3,
.page-template-acteurs main .categorie:nth-of-type(12) .titre h3 {
    color: black;
}


.page-id-85 main {
    position: relative;
}

.page-id-85 main > svg {
    position: absolute;
    z-index: -1;
    top: 30%;
}

.mobile.page-id-85 main > svg {
    transform: scale(4);
}

/*endregion*/

/* * Page membres region*/

.page-template-membres main .categorie {
    position: relative;
}

.page-template-membres main .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 100px calc(12.5% - 75px);
    margin: 100px 0;
}

.page-template-membres main .commissionsobligatoires .flex {
    justify-content: center;
}


.mobile.page-template-membres main .flex {
    justify-content: center;
    gap: 30px;
    margin: 0;
}


.mobile.page-template-membres main .equipemunicipale .flex,
.mobile.page-template-membres main .personnelcommunal .flex{
    gap:  30px;
	margin: 30px 0;
}

.page-template-membres main .equipemunicipale .flex article ,
.page-template-membres main .personnelcommunal .flex article {
    margin-right: 50px;
}


.page-template-membres main .equipemunicipale .flex article .photo,
.page-template-membres main .personnelcommunal .flex article .photo{
    width:100%;
    height: 200px;
    border-radius: 30px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    background-size: cover;
    background-position: center;
    position: relative;
}


.page-template-membres main .commissionscommunales .flex article,
.page-template-membres main .commissionsobligatoires .flex article {
    width: 25%;
}

.page-template-membres main .commissionscommunales .flex article .photo,
.page-template-membres main .commissionsobligatoires .flex article .photo {
    width: 100%;
    height: 250px;
    border-radius: 30px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    background-size: cover;
    background-position: center;
    position: relative;
}

.mobile.page-template-membres main .equipemunicipale .flex article,
.mobile.page-template-membres main .personnelcommunal .flex article {
    width: 100%;
    max-width: 200px;
    margin-right: 0;
	margin-bottom: 0;
}

.mobile.page-template-membres main .commissionscommunales .flex article,
.mobile.page-template-membres main .commissionsobligatoires .flex article {
    width: 100%;
}

.page-template-membres main .equipemunicipale .flex article .text,
.page-template-membres main .personnelcommunal .flex article .text {
    background: #599E45;
    border-radius: 30px;
    padding: 10px 20px;
    position: relative;
    left: calc(100% - 150px);
    top: -30px;
    color: white;
    white-space: nowrap;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    width: 250px;
    box-sizing: border-box;
}

.mobile.page-template-membres main .equipemunicipale .flex article div,
.mobile.page-template-membres main .personnelcommunal .flex article div {
    left: 50%;
    transform: translateX(-50%);
    white-space: normal;
    width: 80%;
    box-sizing: border-box;
    text-align: center;
}

.page-template-membres main .commissionscommunales .flex article > div.text,
.page-template-membres main .commissionsobligatoires .flex article > div.text {
    background: #fff;
    border: 5px solid #599E45;
    border-radius: 30px;
    padding: 10px 20px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    box-sizing: border-box;
    top: -30px;
    padding-top: 40px;
}


.page-template-membres main .commissionscommunales .flex article span.titre,
.page-template-membres main .commissionsobligatoires .flex article span.titre {
    background: #599E45;
    border-radius: 30px;
    position: absolute;
    top: -15px;
    padding: 10px;
    display: inline-block;
    width: 100%;
    left: 0;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    box-sizing: border-box;
}

.page-template-membres main .commissionscommunautaires article span.titre {
    color: #599E45;
    font-size: 22px;
}

.page-template-membres main svg#bandefonce,
.page-template-membres main svg#bandeclair {
    position: absolute;
    z-index: -1;
    width: 100vw;
}

.mobile.page-template-membres main svg#bandefonce,
.mobile.page-template-membres main svg#bandeclair {
    transform: scale(4);
}

.page-template-membres main .categorie > svg:first-of-type {
    top: 100px;
}

.page-template-membres main .categorie > svg:last-of-type {
    bottom: 20px;
}

.mobile.page-template-membres main .categorie > svg:first-of-type {
    top: 30%;
}

.mobile.page-template-membres main .categorie > svg:nth-of-type(2) {
    bottom: 10%;
}

/*endregion*/

/* * Page docs region*/

.page-template-documents .texteprincipal {
    font-weight: bold;
}

.page-template-documents .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 150px 30px;
    margin: 100px 0;
}

.page-id-79 .flex {
    justify-content: flex-start;
    gap: 20px;
}

.mobile.page-template-documents .flex {
    flex-direction: column;
}

.page-template-documents main .flex article {
    position: relative;
    border-radius: 30px;
}

.page-id-19 main .flex article {
    width: 212px;
    height: 300px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    background-size: cover;
    background-position: center;
    position: relative;
    margin-right: 100px;
    transition: .5s;
}

.page-id-19 main .flex article:hover {
    transform: scale(1.1);
}

.page-id-81 main .flex article,
.page-id-79 main .flex article {
    border: 5px solid #579E46;
    padding: 5px 50px 50px 50px;
    background: white;
    box-sizing: border-box;
    text-align: center;
    margin-right: 100px;
	margin-bottom:100px;
}

.mobile .page-template-documents main .flex article {
    margin-right: 0;
    max-width: 100%;
}

.page-template-documents main .flex article div {
    border-radius: 30px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    background: #579E46;
    position: absolute;
    top: calc(100% - 30px);
    left: calc(100% - 100px);
    color: white;
    padding: 15px 25px;
    text-align: left;
}

.mobile.page-template-documents main .flex article div {
    left: 50%;
    transform: translateX(-50%);
}


.page-template-documents main .flex article div > span {
    white-space: nowrap;
    font-weight: 700;
}

.page-template-documents main .flex article div a {
    white-space: nowrap;
    color: white;
}

.page-template-documents main .flex article div a span {
    color: white;
    font-style: italic;
    text-decoration: underline;
}

.page-template-documents main .flex article .logo {
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    left: 15px;
    margin: 30px 0;
    display: inline-block;
}

.page-template-documents main .flex article svg#logo {
    position: relative;
    top: 20px;
    left: -15px;
}

.page-template-documents main .flex article .date {
    color: #579E46;
}

.page-id-79 main .links {
    text-align: center;
    margin: 50px 0
}

.page-id-79 main .links a {
    background: #0080C9;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
    margin: 20px;
    font-size: 22px;
    font-weight: bold;
    display: inline-block;
}

.page-id-79 main h3 {
    background: #0080C9;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    margin: 20px;
    font-size: 22px;
    font-weight: bold;
    display: inline-block;
}

.page-template-documents main {
    position: relative;
    min-height: 210vh;
}


.page-template-documents main > svg {
    position: absolute;
    z-index: -1;
    top: 50%;
}

.mobile.page-template-documents main > svg {
    transform: scale(4);
}

/*endregion*/

/* plan region*/
.page-template-plan main {
    margin-top: 300px;
}

/*endregion*/
/*endregion*/

.page-template-mentionslegales main {
    margin-top: 300px;
}

.page-template-mentionslegales main h3 {
    color: #579e46;
    font-size: 22px;
    margin-top: 50px;
}

.fancybox__container {
    z-index: 99999 !important;
}

.page-id-1193 main a svg{
	margin-right:10px;
	fill:#599D46;
}

.page-id-1193 main .section2 a svg{
	fill:#c5d43e;
}

.page-id-1193 main .section3 a svg{
	fill:#0080c9;
}

.popuppdf{
	position:fixed;
	background:white;
	width:90vw;
	height:90vh;
	top:5vh;
	left:5vw;
	display:none;
	z-index:999999;
	box-shadow:5px 5px 5px rgba(0,0,0,0.8);
}

.popuppdf span{
	cursor:pointer;
	position:absolute;
	top:0;
	right:0;
	background:white;
	padding:10px;
}