<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
* Made with Template by studio.bio
* Based on Bones by Eddie Machado.
* One love :)
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
     ========================================================================== */
/**
   * Remove the margin in all browsers.
   */
body {
  margin: 0; }

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
     ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
     ========================================================================== */
/**
   * Remove the gray background on active links in IE 10.
   */
a {
  background-color: transparent; }

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b,
strong {
  font-weight: bolder; }

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%; }

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
     ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none; }

/* Forms
     ========================================================================== */
/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button,
input {
  /* 1 */
  overflow: visible; }

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
button,
select {
  /* 1 */
  text-transform: none; }

/**
   * Correct the inability to style clickable types in iOS and Safari.
   */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
   * Remove the inner border and padding in Firefox.
   */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
   * Restore the focus styles unset by the previous rule.
   */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
   * Correct the padding in Firefox.
   */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  vertical-align: baseline; }

/**
   * Remove the default vertical scrollbar in IE 10+.
   */
textarea {
  overflow: auto; }

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
     ========================================================================== */
/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
details {
  display: block; }

/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item; }

/* Misc
     ========================================================================== */
/**
   * Add the correct display in IE 10+.
   */
template {
  display: none; }

/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none; }

.clearfix, .cf {
  zoom: 1; }
  .clearfix:before, .clearfix:after, .cf:before, .cf:after {
    display: table;
    content: ""; }
  .clearfix:after, .cf:after {
    clear: both; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.image-replacement,
.ir {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap; }

/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name: 
Author: 

Stylesheet: Typography

******************************************************************/
/*
"Web design is 95% typography" - Oliver Reichenstein

When that quote was made in 2006 it was before web fonts, auto-play video,
and animated pop-ups so even if it is 65 or 75% today that is still *most* 
of any web site's design. Understanding some of the basics of typography
(and web typography) will go a long way.

There are lots of web typographic systems out there however many are
overly complex and not intuitive. Thus, we've tried to set some good
defaults that aren't based on confounding mixins here but you may want
to explore web typography further:

https://www.smashingmagazine.com/2009/08/typographic-design-survey-best-practices-from-the-best-blogs/
https://www.smashingmagazine.com/2012/12/css-baseline-the-good-the-bad-and-the-ugly/
http://www.newnet-soft.com/blog/csstypography
http://typecast.com/blog/4-simple-steps-to-vertical-rhythm
https://github.com/StudioThick/megatype
https://sassline.com
http://matejlatin.github.io/Gutenberg/
https://zellwk.com/blog/responsive-typography/
https://github.com/zellwk/typi

Note that most of the typography styles are set in base.scss with
the html, body, and h1-h6 tags so adjust as needed. Set a good baseline
and consider your vertical rhythm.

*/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/* To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
  
  Also, you don't have to include a separate name for 
  each font style...just use the same name and
  declare each style separately. See here:
  http://www.newnet-soft.com/blog/csstypography
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
@font-face {
  font-family: 'gobold_boldregular';
  src: url("../fonts/gobold_bold-webfont.woff2") format("woff2"), url("../fonts/gobold_bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'gobold_thinregular';
  src: url("../fonts/gobold_thin-webfont.woff2") format("woff2"), url("../fonts/gobold_thin-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

/*********************
FONT STACKS
*********************/
/*
 Commented out since WP uses system fonts now but if you can't let go I won't be upset. 
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3; }

/*// enabling fancy ligatures when available
  -webkit-font-feature-settings: "liga", "dlig";
   -moz-font-feature-settings: "liga=1, dlig=1";
      -ms-font-feature-settings: "liga", "dlig";
       -o-font-feature-settings: "liga", "dlig";
          font-feature-settings: "liga", "dlig";*/
/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

Some cool simple examples here:
https://vanseodesign.com/css/custom-sass-functions/

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/************************
MORE SASS FUNCTIONS
*************************/
/* Example:
$length: 42em;
$int: strip-unit($length); // 42
*/
/**
 * Calculate rems based on a base unit.
 */
/* Example:
$list: a b, c d, e f;
$value: match($list, e); // returns f
$value: match($list, b); // returns a
$value: match($list, z); // returns false
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
.foo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.foo-parent {
  position: relative; }

/*********************
TINTS/SHADES
https://css-tricks.com/snippets/sass/tint-shade-functions/
*********************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*--------------------------------------------------
Flexbox SASS mixins
The spec: http://www.w3.org/TR/css3-flexbox
https://gist.github.com/richardtorres314/26b18e12958ba418bb37993fdcbfc1bd

Checkout this Flexbox guide for more info:
https://css-tricks.com/snippets/css/a-guide-to-flexbox/

2018: probably can remove these with autoprefixer(?)
---------------------------------------------------*/
/*@include flexbox(); */
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

Now with CSS Grid! (scroll down for active styles)

CSS Grid is ready. And you should use it. It's time.

Watch this if you are not convinced:
https://www.youtube.com/watch?v=7kVeCqQCxlk&amp;ab_channel=CodingTech

More CSS Grid stuffs:
https://gridbyexample.com (definitely go through this)
https://css-tricks.com/snippets/css/complete-guide-grid/
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout/Basic_Concepts_of_Grid_Layout
http://labs.jensimmons.com

We're going to use really simple defaults for Plate so there's a few
bits you need to know:

fr = fractional unit

So here's a simple example setup using fr:

.grid {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto 1fr auto;
    header, footer {
        grid-column: span 2;
    }
}

For columns we have:

grid-template-columns: 2fr 1fr;

we get two tracks (columns), one 2/3 and the other 1/3 (of a total of 1).

No floats, no calc, no need to calculate the percentages at all.
CSS Grid does all the work. It even accounts for your grid gap (gutters)
and fills the remaining space. 

For rows we have this:

grid-template-rows: auto 1fr auto;

which gives us 3 rows with 2 content columns:

header
content | aside (sidebar)
footer

The 'auto' property assigns the row height to the height of the content.
Thus, the middle row which contains our content + sidebar is set to 1fr
which means it will fill the container as 1fr of an entire row is the
container width.

Not only that, the header and footer are anchored to the top and bottom,
respectively, no matter what the height of the content/sidebar row. This
has long been considered the 'Holy Grail' layout in CSS and we did it with
just a few lines of code.

We set grid-column: span 2; on the header and footer to span the full
width of the two columns. 

This is just a really simple default setup and the possibilities are
endless so check some examples:

https://rachelandrew.co.uk/archives/2016/04/12/flexible-sized-grids-with-auto-fill-and-minmax
https://gridbyexample.com/examples/
https://medium.com/samsung-internet-dev/common-responsive-layouts-with-css-grid-and-some-without-245a862f48df
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout/Realizing_common_layouts_using_CSS_Grid_Layout
https://www.smashingmagazine.com/2017/06/building-production-ready-css-grid-layout/

Soon we will be able to utilize subgrids to further layout items within the main
semantic layout sections. More on the subgrids property:

https://rachelandrew.co.uk/archives/2017/07/20/why-display-contents-is-not-css-grid-layout-subgrid/

Subgrids have been pushed to CSS Grid v2 so we can't use them yet but we 
can have nested grid layouts (e.g. grid within a grid).

There are many ways to set up your grid so there are a few options below.
Use one of those or develop your own - each project might need a different
setup. 

I've kept in the now unnecessary #content and #inner-content divs
for backwards compatibility but check out our Grate theme for a 
more pure CSS Grid interpretation: https://github.com/joshuaiz/grate

******************************************************************/
.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh; }

@supports (grid-area: auto) {
  /**
    * Grid defaults. 
    * If you don't want to use CSS Grid, remove the .grid class 
    * from #container in header.php
    * 
    */
  .grid {
    display: grid;
    margin: 0 auto;
    width: 100%;
    grid-gap: 12px; }
    .grid #content {
      flex: 1;
      background-color: #000; }
    .grid aside {
      background-color: honeydew;
      min-height: 80px; }
  .grid-aside {
    grid-template-rows: auto 1fr auto; }
  @media only screen and (min-width: 768px) {
    .grid-aside {
      grid-template-columns: repeat(12, minmax(0, 1fr));
      grid-template-rows: auto 1fr auto; }
      .grid-aside #header, .grid-aside #footer {
        grid-column: span 12; }
      .grid-aside #content {
        grid-column: 1/8; }
      .grid-aside aside {
        grid-column: 8/-1; }
    .grid-full {
      grid-template-columns: repeat(12, minmax(0, 1fr));
      grid-template-rows: auto 1fr auto; }
      .grid-full #header, .grid-full #footer {
        grid-column: span 12; }
      .grid-full #content {
        grid-column: 1/-1; }
      .grid-full aside {
        display: none; } }
  @media only screen and (min-width: 1170px) {
    .grid-aside #content {
      grid-column: 2/8; }
    .grid-aside aside {
      grid-column: 8/12; }
    .grid-full #content {
      grid-column: 0/12; } }
  @media only screen and (min-width: 1600px) {
    .grid-aside #content {
      grid-column: 3/8; }
    .grid-aside aside {
      grid-column: 8/11; }
    .grid-full #content {
      grid-column: 0/12; } } }

/**
 * 
 * Other CSS Grid examples
 * 
 * You can use these or come up with your own. Once CSS Grid clicks,
 * it's really easy and there's no limit to what you can do!
 * 
 * The main takeaway here is that you don't need a predefined system.
 * Just define a grid, add your columns and rows, and go.
 * 
 * Uncomment to use.
 * 
 * */
/* Ye Olde Bones Grid
* Hear Ye, hear ye!
* This is the old style grid, now commented out
* You *should* make the move to css grid now but
* if you need this or can't let go, it's still here
* so uncomment to use (and comment the cssgrid out).
* Just know that Rachel Andrew is watching.
*/
/**
* Gutenberg Styles.
*
* Now enqueued in a separate function in functions.php to
* keep styles out of the main stylesheet. Alternatively
* you can comment out the Gutenberg styles enqueue and 
* uncomment this below to have a single stylesheet.
* You do you.
*/
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter &amp; jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet. Or roll your own.

******************************************************************/
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid; }

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f; }

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8; }

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4; }

.alert-success {
  border-color: #deeaae;
  background: #e6efc2; }

/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

See here on placeholder selectors and why you should
use @extend instead of @include:
http://thesassway.com/intermediate/understanding-placeholder-selectors

Also, don't use cursor: pointer; for buttons as they already should 
signify that they are clickable:

https://medium.com/simple-human/buttons-shouldnt-have-a-hand-cursor-b11e99ca374b

*********************/
.button, .blue-button {
  position: relative;
  display: inline-block;
  margin-bottom: .5em;
  padding: 0.5em 1em;
  border: 0;
  border-radius: 2px;
  text-decoration: none; }
  .button:active, .blue-button:active {
    top: 1px; }

.blue-button {
  background: #0056ac;
  color: #fff; }
  .blue-button:hover, .blue-button:focus {
    color: #fff; }

/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

Here are a few defaults for forms and stuffs.

******************************************************************/
/*********************
INPUTS
*********************/
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block; }
  input[type="text"][disabled], input[type="text"].is-disabled,
  input[type="password"][disabled],
  input[type="password"].is-disabled,
  input[type="datetime"][disabled],
  input[type="datetime"].is-disabled,
  input[type="datetime-local"][disabled],
  input[type="datetime-local"].is-disabled,
  input[type="date"][disabled],
  input[type="date"].is-disabled,
  input[type="month"][disabled],
  input[type="month"].is-disabled,
  input[type="time"][disabled],
  input[type="time"].is-disabled,
  input[type="week"][disabled],
  input[type="week"].is-disabled,
  input[type="number"][disabled],
  input[type="number"].is-disabled,
  input[type="email"][disabled],
  input[type="email"].is-disabled,
  input[type="url"][disabled],
  input[type="url"].is-disabled,
  input[type="search"][disabled],
  input[type="search"].is-disabled,
  input[type="tel"][disabled],
  input[type="tel"].is-disabled,
  input[type="color"][disabled],
  input[type="color"].is-disabled,
  select[disabled],
  select.is-disabled,
  textarea[disabled],
  textarea.is-disabled,
  .field[disabled],
  .field.is-disabled {
    opacity: 0.6;
    cursor: not-allowed; }

input[type="password"] {
  letter-spacing: 0.3em; }

textarea {
  max-width: 100%;
  width: 100%; }

fieldset {
  border: 1px solid #ccc; }
  fieldset label {
    font-weight: 600; }
  fieldset p {
    margin-bottom: 0; }

legend {
  padding: 0 0.5em; }

.radio-buttons {
  margin-top: 0; }
  .radio-buttons li {
    margin-left: 2px;
    list-style-type: none; }
  .radio-buttons label {
    font-weight: normal; }

/*********************
BASE STYLESHEET
These are the base styles and it's loaded on every device. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Stylesheet

As the name implies, this is the base stylesheet. This will be
loaded by all devices and viewports so keep it as light as possible.

If you are using progressive enhancement, load styles that will be
only seen on tablets or desktops in the stylesheets targeted for
those viewpoints.

******************************************************************/
/*********************
GLOBAL STYLES
Use this section for
site-wide stuffs.
*********************/
html {
  font-size: 1em;
  min-height: 100%; }

body {
  color: #044F26;
  font-size: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #DAE0CE;
  min-height: 100%;
  position: relative; }

#fond {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #DAE0CE;
  opacity: .9;
  display: none; }

p {
  color: #000; }

img {
  display: block;
  max-width: 100%;
  height: auto; }

pre code {
  white-space: pre-line; }

.nav li a {
  font-family: "gobold_boldregular", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; }

h1 {
  text-transform: uppercase;
  font-family: "gobold_thinregular", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  /*background: url(https://www.ecaussysteme.com/wp-content/themes/ecau2020/library/images/fleches.png) left center no-repeat;*/
  /*background: url(../images/fleches2023.png) left center no-repeat;*/
  /* background-size: 1.7em auto;*/
  font-size: 1.75em;
  padding-left: 2.25em;
  color: #044F26; }

h1.page-title {
  padding-left: 0; }

h1 {
  position: relative; }

/*h1:before {position: absolute;
height: 80px;
width: 60px;
left: -5px;
top: -50px;
background: url(../images/h1-comete.png) no-repeat;
  background-size: auto;
content: "";
background-size: contain;}*/
.div3cols {
  column-count: 3;
  column-gap: 2em;
  line-height: 2em;
  margin-bottom: 2em; }

/*.page-template-page-cashless h1 { margin-left: 3em;}*/
.billet h3, .mentions-legales h3, .page-template-page-3-col h3,
.parent-pageid-15 h3, .page-template-page-3-cols-en-haut section &gt; h3, .page-template-page-cashless h3 {
  font-family: 'Source Sans Pro';
  font-weight: bold;
  background: url(../images/noir.jpg) left center no-repeat;
  background-size: 20px;
  margin-left: 2.25em;
  padding-left: 1em;
  font-size: 1.5em;
  /*color: #91cdbd;*/
  color: #044F26; }

.titre-partenaire h3 {
  font-family: 'Source Sans Pro';
  font-weight: bold;
  /*background: url(../images/rouge.png) left center no-repeat;
background-size: auto;
background-size: 10px;*/
  margin-left: 0;
  padding-left: 1.25em;
  font-size: 1.5em;
  position: relative; }

.titre-partenaire h3:before {
  content: "";
  background-color: #044F26;
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 5px; }

.parent-pageid-15 h3 {
  margin-left: 0; }

.billet h3 strong, .billet h3 strong span {
  color: #044F26 !important; }

#autres-reseaux.billet h3 {
  background: none;
  text-transform: uppercase;
  color: #044F26; }

.page-template-page-cashless h4 {
  font-family: 'Source Sans Pro';
  font-weight: bold;
  background: none;
  /*margin-left: 3em;*/
  padding-left: 1.25em;
  font-size: 1.25em;
  color: #044F26; }

.page-template-page-cashless h5 {
  font-family: 'Source Sans Pro';
  font-weight: bold;
  background: none;
  /*  margin-left: 3em;*/
  padding-left: 3em;
  font-size: 1.1em; }

.mentions-legales h3 strong span, .mentions-legales h3 span strong {
  color: #044F26 !important; }

#points-de-ventes-locaux.billet h3 {
  background: url(../images/localisation-2025.png) left center no-repeat;
  background-size: auto 100%; }

.billet p, .mentions-legales p, .page-template-page-3-col p,
.billet .article-toggle li, .page-template-page-cashless p, .page-template-page-cashless li {
  margin-left: 4.25em;
  font-family: 'Source Sans Pro';
  font-weight: 300;
  text-align: justify; }

#reponse {
  color: green;
  padding: 1em;
  display: none;
  border: 1px solid #044F26;
  font-weight: bold; }

/*prog


#groupes-wrap {margin-bottom: 2em;}
#groupes-wrap .cf {   margin-bottom: 2em}

#groupes-wrap  .lieu {position: absolute; top: 20px; width: 150px; right: -30px; background: #044F26; color: #FFF; display: block;

transform: rotate(45deg);

}
.prog-groupe {overflow: hidden;}
.page-template-page-prog-2020 #inner-content.wrap {max-width: 1400px;}


.page-template-page-prog-2020 h3 {border-left: 10px solid; font-family: 'Source Sans Pro', sans-serif; 
  margin: .25em 0 .5em 1em; padding: 0 0 0 .5em}
.prog-groupe-wrap {display: flex; flex-wrap: wrap;}
.prog-groupe-wrap &gt; div {width: 33%; position: relative; text-align: center}
.prog-groupe-wrap h4 {background-color: rgba( 238,33,40,.8); 
  padding: 0 .25em; margin: 0;
   position: relative; display: inline-block; }
.prog-groupe-wrap h4 span {font-size: .75em}
.prog-groupe-wrap h4 a {color: #044F26; font-size: 1em; }
.prog-groupe-wrap img {width: 100%;}


.prog-groupe-wrap .infos {display: flex; margin-top: -1.8em; height: 1.8em; font-family: 'Source Sans Pro', sans-serif;}
.prog-groupe-wrap .nom-groupe {width: 70%}
.prog-groupe-wrap .heure, .prog-groupe-wrap .en-plus {width: 15%}
.prog-groupe-wrap .heure {background-color: rgba( 1,87,169,.7); color: #FFF}*/
/*prog
#groupes-wrap {margin-bottom: 2em;}
#groupes-wrap .cf {   margin-bottom: 2em}

#groupes-wrap  .lieu {position: absolute; top: 20px; width: 150px; right: -30px; background: #044F26; color: #FFF; display: block;

transform: rotate(45deg);

}
.prog-groupe {overflow: hidden;}

.page-template-page-prog-2020 h3 {border-left: 10px solid; font-family: "gobold_thinregular"; font-size: 1em; color: #044F26;
  margin: .25em 0 .5em 1em; padding: 0 0 0 2.25em; background: url(../images/rayures.png) left center no-repeat; background-size: 2em auto;
}
.prog-groupe-wrap {display: flex; flex-wrap: wrap;}
.prog-groupe-wrap &gt; div {width: 33%; position: relative; text-align: center}
.prog-groupe-wrap h4 {  padding: 0 .25em; margin: 0;
   position: relative; display: inline-block; }
.prog-groupe-wrap h4 span {font-size: .75em}
.prog-groupe-wrap h4 a {color: #044F26; font-size: 1em; }


.prog-groupe-wrap .infos {display: flex; height: 1.8em;   font-family: 'Source Sans Pro', sans-serif; margin-top: 0}
.prog-groupe-wrap .nom-groupe {width: 60%; text-align: left}
.prog-groupe-wrap .heure, .prog-groupe-wrap .en-plus {width: 15%}
.prog-groupe-wrap .heure {}*/
/*prog*/
.page-template-page-prog-2020 #inner-content.wrap {
  max-width: 1400px; }

#groupes-wrap {
  margin-bottom: 2em; }

#groupes-wrap .cf {
  margin-bottom: 2em; }

#groupes-wrap .lieu {
  position: absolute;
  top: 20px;
  width: 150px;
  right: -30px;
  background: #FFF;
  color: #044F26;
  display: block;
  transform: rotate(45deg); }

#groupes-wrap h1 {
  left: -65px;
  margin-bottom: 1em;
  background-image: url(../images/losange-jours.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position-x: 20px; }

.prog-groupe {
  overflow: hidden; }

.page-template-page-prog-2020 h3 {
  font-family: "gobold_thinregular";
  font-size: 1em;
  color: #044F26;
  margin: .25em 0 .5em 0em;
  padding: 0 0 0 3.5em;
  background: url(../images/rayures.png) left center no-repeat;
  background-size: 3em auto; }

.prog-groupe-wrap {
  display: flex;
  flex-wrap: wrap; }

.prog-groupe-wrap &gt; div {
  width: 33%;
  position: relative;
  text-align: center;
  margin-bottom: 1em;
  padding-bottom: 2em; }

.prog-groupe-wrap h4 {
  margin: 0;
  padding: 0;
  position: relative;
  display: inline-block;
  font-size: 1em;
  font-weight: bold; }

.prog-groupe-wrap h4 span {
  font-size: .75em; }

.prog-groupe-wrap h4 a {
  color: #000;
  font-family: "gobold_thinregular";
  font-size: 1.75em;
  /*text-shadow: 1px 0 #000, -1px 0 #000, 0 1px #000, 0 -1px #000, 1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000;*/ }

.prog-groupe-wrap img {
  width: 100%; }

.prog-groupe-wrap .infos {
  display: flex;
  height: 4.5em;
  font-family: 'Source Sans Pro', sans-serif;
  margin-top: 0;
  align-items: top;
  position: relative; }

/*.prog-groupe-wrap .infos::before {
    position: absolute;
    right: 0;
    height: 30px;
    width: 30%;
    content: "";
    background: url(../images/rayures.png) repeat-x;
    top: -15px;
}*/
.prog-groupe-wrap .infos::before {
  position: absolute;
  right: 0;
  height: 45px;
  width: 50px;
  content: "";
  /*    background: url(../images/fleches2023.png) no-repeat;*/
  top: -19px; }

/*#groupes-wrap h1, h1.date  {background:  url(../images/fleches2023.png) left center no-repeat}
.page-template-page-billetterie h1*/
#inner-content &gt; h1.date {
  background: none; }

.prog-groupe-wrap .nom-groupe {
  width: 70%;
  text-align: left; }

.prog-groupe-wrap .heure {
  width: 15%;
  color: #e83e29; }

.prog-groupe-wrap .en-plus {
  width: 20%;
  margin-top: 5px; }

.prog-groupe-wrap .heure {
  font-weight: bold; }

.prog-groupe-wrap .en-plus {
  font-size: .8em;
  text-align: right;
  padding-right: .5em;
  line-height: 1em; }

.gratuit {
  position: absolute;
  background: #044F26;
  text-transform: uppercase;
  color: #FFF;
  font-size: .8em;
  padding: .25em .5em;
  font-weight: bold; }

/*
smrtph
.prog-groupe-wrap &gt; div {
    width: 100%;*/
/*single groupe*/
.single-groupe h1.date, #groupes-wrap h1 {
  /*color: #104474;*/ }

.single-groupe h3 {
  font-family: "gobold_thinregular";
  font-size: 1em;
  color: #044F26;
  margin: .25em 0 .5em 0em;
  padding: 0 0 0 3.5em;
  background: url(../images/rayures.png) left center no-repeat;
  background-size: auto;
  background-size: 3em auto; }

.single-groupe #main {
  /*padding-right: 45px;*/ }

#fiche-groupe {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 100;
  /*margin: 20px 3% 20px 3%;*/
  background-color: #044F26;
  margin-top: 3em; }

#fiche-groupe &gt; div {
  width: 50%; }

#fiche-groupe-titre {
  background: #044F26;
  position: relative; }

#fiche-groupe-retour {
  height: 60px;
  min-width: 160px; }

#fiche-groupe-retour a {
  text-indent: -2000px;
  color: #000;
  background: url(../images/retour.png) no-repeat;
  padding: 0px 0 0 40px;
  text-decoration: none;
  height: 60px;
  display: block; }

#titre-groupe-wrap {
  display: flex;
  flex-wrap: wrap; }

#titre-groupe {
  width: 60%; }

#fiche-groupe-liens {
  display: flex;
  flex-wrap: wrap;
  width: 40%;
  border: none; }

#fiche-groupe-site {
  width: 100%;
  font-size: .8em;
  text-align: center; }

#fiche-groupe-site a {
  background: url(../images/trombonne.png) 0 12px no-repeat;
  background-size: auto;
  padding: 8px 0 0 20px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  background-size: 10px auto;
  display: inline-block;
  margin: 0 auto; }

#fiche-groupe-social {
  width: 100%; }

#fiche-groupe-social .fa-deezer {
  background: url(../images/deezerblanc.png) no-repeat center center; }

#titre-groupe h1 {
  background: none; }

#titre-groupe h1:before {
  display: none; }

#fiche-groupe-style {
  font-weight: bold;
  font-size: .7em;
  text-transform: uppercase;
  line-height: 1em; }

#fiche-groupe-img {
  width: 100%; }

#fiche-groupe-img img {
  width: 100%;
  margin-bottom: 1.5em; }

#fiche-groupe-txt {
  width: 100%;
  padding: 0 0 1em 1em;
  color: #fff;
  text-align: justify; }

#fiche-groupe-txt p {
  font-size: .95em;
  color: #fff;
  padding-right: 1em; }

#fiche-groupe-social {
  width: 100%;
  text-align: right;
  padding: 5px 0 0 0;
  display: flex;
  justify-content: right; }

#fiche-groupe-social a {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 1.4em; }

.fa-deezer {
  background: url(../images/deezerbleu.png) no-repeat center center;
  width: 30px;
  height: 30px; }

#fiche-groupe-date {
  text-align: center;
  text-transform: uppercase;
  font-size: 2em;
  color: #fff; }

#fiche-groupe-contenant-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
  /*margin-top: 20px;*/ }

#fiche-groupe-contenant-video iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0; }

#webtv-partenaire h2 {
  font-size: 1.5em; }

#fiche-groupe-retour a:hover {
  text-indent: 0px;
  text-shadow: 0 0 5px #000; }

#fiche-groupe-video {
  width: 100%; }

#fiche-groupe h1 {
  font-size: 3em;
  padding: 0 0 10px 0;
  text-align: left;
  background: none;
  color: #FFF; }

#fiche-groupe-date {
  text-align: left; }

/*.prog-groupe h4 {font-size: 1em; margin-top: 25%;}*/
#fiche-retour a {
  text-indent: 0; }

/* /single groupe*/
/*pratique*/
.h1-toggle {
  margin-top: 1em;
  background: none;
  position: relative; }

.h1-toggle:before {
  content: "";
  width: 22px;
  height: 22px;
  background: #044F26;
  position: absolute;
  left: 15px;
  top: 5px; }

.page-template-page-enfants-auto button,
.page-template-page-faq button,
.page-template-page-histoire button,
.page-template-page-pratique button,
.page-template-page-journees button,
.page-template-page-ecaussitoyenete button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  color: #044F26; }

.page-template-page-histoire button.slick-prev {
  position: absolute;
  display: block;
  background: url(../images/prev-2025.png) no-repeat transparent;
  height: 40px;
  width: 40px;
  left: -15px; }

.page-template-page-histoire button.slick-next {
  position: absolute;
  display: block;
  background: url(../images/next-2025.png) no-repeat transparent;
  height: 40px;
  width: 40px;
  right: -30px; }

.h1-toggle button {
  text-align: left; }

.page-template-page-enfants-auto h1 button:after,
.page-template-page-faq h1 button:after,
.page-template-page-histoire h1 button:after,
.page-template-page-pratique h1 button:after,
.page-template-page-journees h1 button:after,
.page-template-page-ecaussitoyenete h1 button:after {
  height: 26px;
  width: 26px;
  background: url(../images/plus-2025.png) no-repeat;
  position: absolute;
  right: -30px;
  content: ""; }

.page-template-page-enfants-auto h1.close button:after,
.page-template-page-faq h1.close button:after,
.page-template-page-histoire h1.close button:after,
.page-template-page-pratique h1.close button:after,
.page-template-page-journees h1.close button:after,
.page-template-page-ecaussitoyenete h1.close button:after {
  background: url(../images/moins-2025.png) no-repeat; }

.article-toggle {
  display: none; }

.page-template-page-histoire .billet:last-child button:after {
  visibility: hidden; }

/*partenaires*/
.titre-partenaire {
  font-weight: bold;
  text-transform: uppercase; }

.partenaires {
  display: flex;
  flex-wrap: wrap; }

.partenaire {
  width: 33%;
  padding: 2em; }

/*Remboursement*/
#trois-cols-haut-page {
  display: flex;
  padding-bottom: 2em; }

#trois-cols-haut-page &gt; div {
  display: flex;
  width: 33%;
  flex-direction: column;
  padding: 0 1.5em;
  height: 100%; }

#trois-cols-haut-page .txt-3cols {
  flex: 1;
  min-height: 26em;
  text-align: justify; }

#trois-cols-haut-page a {
  color: #1E4E9E; }

#trois-cols-haut-page p {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto; }

#trois-cols-haut-page h2 {
  font-size: 1.2em;
  text-align: center;
  margin: 0;
  padding: 2em .5em 1em;
  color: #044F26;
  font-weight: bold; }

#trois-cols-haut-page h3 {
  font-size: 1.1em;
  text-align: center;
  height: 2em; }

#trois-cols-haut-page .foot-3cols {
  font-size: 1.2em;
  text-align: center; }

#trois-cols-haut-page &gt; div:nth-child(even) h2 {
  background-color: #1E4E9E; }

#trois-cols-haut-page &gt; div:nth-child(even) h3 {
  color: #1E4E9E; }

#trois-cols-haut-page &gt; div:nth-child(even) .foot-3cols {
  border-top: 1px solid #1E4E9E;
  color: #1E4E9E;
  height: 2em; }

#trois-cols-haut-page &gt; div:nth-child(odd) h2 {
  background-color: #E6132C; }

#trois-cols-haut-page &gt; div:nth-child(odd) h3 {
  color: #E6132C; }

#trois-cols-haut-page &gt; div:nth-child(odd) .foot-3cols {
  border-top: 1px solid #E6132C;
  color: #E6132C; }

/*
#trois-cols-haut-page &gt; div:nth-child(1) h2 {
  background-image: url(../images/remboursement.png);}

#trois-cols-haut-page &gt; div:nth-child(2) h2 {
  background-image: url(../images/festival21.png);}

#trois-cols-haut-page &gt; div:nth-child(3) h2 {
  background-image: url(../images/soutenir.png);}
*/
#trois-cols-haut-page &gt; div:nth-child(1) h2 {
  background-image: url(../images/festival21.png); }

#trois-cols-haut-page &gt; div:nth-child(2) h2 {
  background-image: url(../images/soutenir.png); }

#trois-cols-haut-page &gt; div:nth-child(3) h2 {
  background-image: url(../images/remboursement.png); }

#trois-cols-haut-page h2 {
  background-repeat: no-repeat;
  background-position: center 5px;
  background-size: 30px auto; }

.page-template-page-3-cols-en-haut section &gt; h2 {
  font-family: "gobold_thinregular", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  padding-left: 1.5em;
  font-size: 1.75em;
  margin: 1em 0 1em 0;
  background: url(../images/jaune.png) left center no-repeat;
  background-size: 10px; }

/*ecausysthematique 2022*/
.page-template-page-saison-culturelle h1.page-title {
  font-family: inherit;
  background: none;
  text-align: center;
  padding: 0 0 1em 0;
  color: #044F26; }

.page-template-page-saison-culturelle h1.page-title:before {
  display: none; }

.page-template-page-saison-culturelle h2 {
  margin: 3em 0 4em 0;
  text-align: center;
  font-size: 1.25em; }

.page-template-page-saison-culturelle h2 span {
  background-color: #044F26;
  color: #FFF;
  text-transform: uppercase;
  padding: 1em;
  border-radius: 50px;
  position: relative; }

.page-template-page-saison-culturelle h2 span:before {
  width: 100px;
  height: 16px;
  content: "";
  position: absolute;
  left: -120px;
  top: calc(50% - 8px);
  background: url(../images/h3-left-bleu.png) no-repeat; }

.page-template-page-saison-culturelle h2 span:after {
  width: 100px;
  height: 16px;
  content: "";
  position: absolute;
  right: -120px;
  top: calc(50% - 8px);
  background: url(../images/h3-right-2025.png) no-repeat; }

.event {
  margin-bottom: 3em; }

.event-date {
  background: url(../images/fleche-2025.png) no-repeat;
  font-size: 1.75em;
  background-size: 50px;
  padding: 0 0 0 55px;
  font-weight: bold;
  margin-bottom: .5em;
  text-transform: uppercase;
  color: #044F26; }

.event-info {
  display: flex; }

.event-img, .event-txt {
  width: 50%; }

.event-txt {
  width: 50%;
  padding: 0 1em;
  margin-bottom: 2em; }

.event-txt h3 {
  font-weight: bold;
  margin: .25em 0 .5em 0;
  text-transform: uppercase;
  font-size: 1.5em; }

.event-txt .sous-titre {
  font-weight: bold;
  margin: .75em 0;
  text-align: justify; }

.event-txt .txt {
  text-align: justify; }

#diapo-hist .slick-slide {
  width: 220px; }

#diapo-hist .slick-slide img {
  width: 199px;
  margin: 0 auto;
  border: 1px solid #CCC; }

/*2022

.header-2022 #dates, .header-2022 #dates img {width: 250px}



.header-2022 #logo {font-size: .85em; line-height: 1.5em;}
.header-2022 #bloginfo {align-items: flex-start;}
.header-2022 #res-soc {padding-top: .75em; width: 150px}
.header-2022 #inner-header {
    max-width: 2000px;
}

#fiche-groupe h1 {margin: 0 0 0 0}

#fiche-groupe h2 {font-size: 1em; font-family:  $gobold; text-transform: uppercase; margin-top: -.5em}

#fiche-groupe-social {padding-top: 0;}

#fiche-groupe-txt p {font-family: 'Source Sans Pro';}

#titre-groupe-wrap {margin-bottom: 2em;  height: auto;}
#fiche-groupe-txt p {margin: 0 0 1em 0; padding: 0;}



.article-header &gt; h1.page-title {margin-top: 0;}


#inner-header.wrap {padding-bottom: 0;}
.page-template-page-prog-2022 #inner-content.wrap {padding-top: 0}
*/
/*2023*/
#main {
  position: relative; }

/*#main::before {
  content: "";
  background: url(../images/gignac.png);
    background-size: auto;
  background-size: auto;
  background-size: 100%;
  position: absolute;
  right: -125px;
  width: 250px;
  height: 250px;
  z-index: 1000;
  top: -125px;
}*/
/*Il n'y a pas de #main sur la page .page-template-page-saison-culturelle */
.page-template-page-saison-culturelle #inner-content {
  position: relative; }

/*
#main::before, .page-template-page-saison-culturelle #inner-content::before {
  background: url(../images/gignac.png);
}
#main::before, .page-template-page-saison-culturelle #inner-content::before {
  content: "";
    background-size: auto;
  background-size: auto;
  background-size: 100%;
  position: absolute;
  right: -25px;
  width: 150px;
  height: 150px;
  z-index: 1000;
  top: -125px;
}*/
#logo {
  position: relative; }

/*#logo:before {
  content: "";
  background-size: 100%;
  position: absolute;
  right: -150px;
  width: 150px;
  height: 150px;
  z-index: 1000;
 bottom: -50px;
  background-image: url(../images/gignac.png);

}*/
/*
.header-2022 #dates {
  
  margin-top: -1em;
  margin-right: -60px;
  margin-left: -1.5em;
}



.header-2022 #dates, .header-2022 #dates img {
  width: 380px; z-index: 1000;
}

.home #content {margin-top: -70px}*/
/*.page-template-page-histoire #content {
  margin-top: 0px;
}*/
/*2024*/
/*#res-soc {position: absolute; right: 0}*/
/*items du menu en bas
.header-2022 #bloginfo {align-items: flex-start;}
.header-2022 #logo {height: calc(100% - 250px);}
.header-2022 .header-nav {height: 100%;}
.header-2022 .nav {height: 80%; align-items: end;}

*/
/*evenements detonants*/
.page-id-2191679 .wp-block-gallery.has-nested-images figure.wp-block-image img {
  max-width: 100px !important;
  margin: 0 auto !important;
  min-width: 100px; }

.page-id-2191679 .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  background: none;
  color: #000;
  bottom: -1em !important; }

.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
  margin: 0;
  width: calc(50% - var(--wp--style--unstable-gallery-gap, 16px)/2);
  padding: 2.5em; }

.page-id-107 .wp-block-gallery.has-nested-images figure.wp-block-image img {
  max-width: 100px !important;
  margin: 0 auto !important;
  min-width: 100px; }

.page-id-107 .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  background: none;
  color: #000;
  bottom: -1em !important; }

.page-id-107 .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
  margin: 0;
  /*width: calc(50% - var(--wp--style--unstable-gallery-gap, 16px)/2);*/
  padding: 2.5em; }

/*********************
LAYOUT &amp; GRID STYLES
*********************/
/*********************
LINK STYLES
*********************/
a, a:visited {
  text-decoration: none;
  color: #F8A932;
  /* on hover */
  /* on click */
  /* mobile tap color */ }
  a:hover, a:focus, a:visited:hover, a:visited:focus {
    text-decoration: underline; }
  a:link, a:visited:link {
    /*
        this highlights links on iPhones/iPads.
        so it basically works like the :hover selector
        for mobile devices.
        */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3); }

/******************************************************************
HEADING STYLES
******************************************************************/
/* 
While there are several frameworks for Sass web typography and
baselines like Sassline, Megatype and Gutenberg (not the new WP editor), 
those all seemed overly complex. What I wanted was simple defaults that 
looked good out of the box without a lot of calculations and segmented mixins.

After searching far and wide, I came across this:
http://type-scale.com which we used to get our base sizes.

You should use only one &lt;h1&gt; element per page (generally for the page title). 
Then, use &lt;h2&gt; for sub-headings and h3-h6 if you need to structure your text
further. Using correct headings helps with readability, SEO, and accessibility.
*/
/* Heading defaults */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin: 1.333em 0 0.5em;
  color: #044F26;
  font-weight: 500;
  line-height: 1.2;
  text-rendering: optimizelegibility;
  /*
    if you're going to use webfonts, be sure to check your weights
    http://css-tricks.com/watch-your-font-weight/
    */
  /* 
    Removing text decoration from all headline links.
    If you want it, then delete this. Do it your way.
    */ }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
    text-decoration: none; }

h1, .h1 {
  margin-top: 1.25em;
  margin-bottom: 0.319em;
  color: #044F26;
  /* font-size: 3.157em;*/ }

h2, .h2 {
  margin-top: 0.88em;
  font-size: 2.369em; }

h3, .h3 {
  font-size: 1.777em; }

h4, .h4 {
  font-size: 1.333em; }

h5, .h5 {
  font-size: 1em; }

h6, .h6 {
  text-transform: uppercase;
  letter-spacing: 4.333px; }

/*********************
HEADER STYLES
*********************/
#inner-header {
  display: flex;
  align-items: flex-end; }

/*
#site-title {
    margin: 0 0.5em 0 0;
    font-size: 2em;
    line-height: inherit;
    a {
        color: lighten($sb-black, 12%);
    }
}

#bloginfo {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

#dates {width: 20%;}
#dates img {width: 150px}


#logo {
    width: 60%;
    
    text-align: center; font-size: .8em; line-height: 0;
    font-family: "gobold_thinregular", sans-serif;
    font-weight: 300;



    img {
        // replace /library/images/logo.svg and adjust for your logo size
        width: 450px;
        height: auto;
        margin: 0 auto;
    }
    a {color: #044F26}
    a:hover {text-decoration: none}
}
*/
#menu-menu-hamburger {
  display: none; }

#gignac {
  /*align-self: flex-start; margin-top: 15%; margin-bottom: 15%*/ }

#logo {
  width: 210px; }

/*#hamburger {display: none;}*/
#hamburger {
  display: block;
  height: 41px;
  width: 41px;
  display: inline-block;
  cursor: pointer;
  z-index: 10000;
  position: relative;
  background: #044F26;
  border-radius: 100%;
  padding-left: 8px; }

/*#hamburger.close {top: 50px}*/
#hamburger span {
  top: 18px; }

#hamburger span:after {
  transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

#hamburger span::before, #hamburger span::after {
  content: "";
  display: block; }

#hamburger span::before {
  top: -9px; }

#hamburger span::after {
  bottom: -9px; }

#hamburger span, #hamburger span::before, #hamburger span::after {
  width: 25px;
  height: 3.5px;
  background-color: #DAE0CE;
  border-radius: 1px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease; }

#hamburger.close span, #hamburger.close span::before, #hamburger.close span::after {
  background-color: #FFF; }

#hamburger.close {
  transform: rotate(45deg); }

#hamburger.close span::after, #hamburger.close span {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

#hamburger.close span::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease, opacity 0.1s 0.14s ease; }

#inner-header {
  position: relative; }

#menu-ham-inner {
  display: none;
  height: 250px;
  top: 100%;
  position: absolute;
  left: 0;
  width: 100%; }

#menu-menu-hamburger {
  position: fixed;
  z-index: 100;
  width: 100%;
  left: 0;
  background: #FFF;
  display: flex;
  border: 10px solid;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 0;
  left: calc(50% - 600px); }

#menu-menu-hamburger li {
  width: 50%;
  display: block;
  padding: 0;
  border: none; }

#menu-menu-hamburger li:hover {
  background: #DAE0CE; }

#menu-menu-hamburger li a {
  padding: 4em 0 4em 4em; }

.home #header {
  background: #DAE0CE; }

#header {
  background: #e4ead9; }

#header.fixe {
  position: fixed;
  margin-bottom: 200px;
  width: 100%;
  z-index: 100;
  overflow: hidden;
  /*border-bottom: 1px solid;*/ }

/*#header.fixe img {width: 150px}*/
#header.fixe #logo img {
  width: 130px;
  margin-bottom: -45px; }

#header.fixe #gignac img {
  width: 80px; }

#menu-menu-principal-2025 li {
  background-image: url(../images/losange-jours.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position-x: 0px;
  padding-left: 10px; }

#res-soc {
  width: 20%; }

.media-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 150px;
  float: right; }

/*#res-soc {margin: 0px auto; width: 200px}*/
#res-soc-cont {
  flex-grow: 1; }

#res-soc .social {
  float: right; }

#res-soc .media {
  float: left;
  text-align: center;
  width: 20%; }

#res-soc li.media a {
  color: transparent; }

#res-soc li.media i.fa-stack-1x {
  color: #044F26; }

.fa-stack {
  width: 100%; }

.news {
  background: url(../images/news.png) no-repeat;
  width: 27px;
  height: 27px;
  margin: 5px 0 0 9px;
  position: relative; }

#res-soc .media-nl {
  width: 100%;
  color: #FFF;
  font-size: .8em;
  text-align: center; }

#res-soc li.media-nl a {
  color: #044F26; }

.deezer {
  background: url(../images/deezer-2025.png) no-repeat center center;
  height: 25px;
  background-size: 25px;
  margin-top: 8px; }

#nl_cont {
  width: 300px;
  margin: 0 auto; }

/*bouton home
.top-nav li:first-child a {padding: 0;
    margin: -.25em 1em;
}
.top-nav li:first-child {max-width: none;}*/
/*slider*/
#diapo-container {
  margin: 0 -1.5em 0 -1.5em;
  position: relative; }

#diapo {
  overflow: hidden;
  height: 0;
  padding-top: 33.33%; }

.slick-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.slick-track {
  height: 100%; }

.slick-slide {
  background-size: cover; }

.slick-slide {
  background-size: cover; }

.slick-slider a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100; }

.slick-slider a:hover {
  text-decoration: none; }

.slick-dots {
  bottom: 10px; }

.slick-dots li button:before {
  font-size: 40px; }

#diapo-container .slick-prev, #diapo-container .slick-next {
  height: 30px;
  width: 30px;
  display: none !important; }

#diapo-container:hover .slick-prev, #diapo-container:hover .slick-next {
  display: block !important; }

#diapo iframe {
  width: 100%; }

.ligne-liens-home {
  display: flex;
  position: relative;
  margin: 0 -1.5em; }

.ligne-liens-home &gt; div {
  width: 33.33%; }

.ligne-liens-home div div {
  background-size: cover !important;
  background-repeat: no-repeat;
  padding-top: 106.25%;
  height: 0;
  overflow: hidden; }

.contenant-lien-home {
  position: relative; }

.contenant-lien-home a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  padding-top: 40%;
  color: #044F26;
  text-transform: uppercase;
  font-size: 2.5em;
  font-weight: 300; }

.contenant-lien-home a:hover {
  text-decoration: none; }

#inner-content.wrap {
  margin-bottom: 0;
  padding-bottom: 0; }

#inner-footer.wrap {
  padding: 0; }

#menu-menu-bas {
  margin-top: 0; }

#diapo-hist {
  height: 360px;
  margin-top: 2em; }

.page-template-page-slider-en-bas h2 {
  font-family: 'Source Sans Pro';
  font-weight: bold;
  background: url(../images/jaune.png) left center no-repeat;
  background-size: auto;
  background-size: auto;
  background-size: 14px;
  margin-left: 0;
  padding-left: 1.25em;
  font-size: 1.5em;
  text-transform: uppercase; }

/*********************
LIST STYLES
*********************/
ul, ol {
  -webkit-padding-start: 20px; }

.list-square {
  margin-bottom: 1.5em;
  list-style-position: outside;
  list-style-type: square; }

.nostyle {
  margin-left: 0;
  padding-left: 0;
  list-style-type: none; }

.related-posts-list {
  display: flex; }

.page-numbers {
  margin: 1em 0;
  padding-left: 0;
  list-style-type: none;
  display: flex; }
  .page-numbers li {
    margin-right: 1em; }

/*********************
NAVIGATION STYLES
*********************/
/* 
Where did the nav menu go?
Navigation styles for mobile are now in 767down.scss
if you need them.

We almost always use the Responsive Menu plugin:
https://wordpress.org/plugins/responsive-menu/ for mobile
menus but those selectors are there if you want to use the
default menu.

For your main navigation, styles are in 768up.scss.
*/
/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/*
As you add pages, add your own body classes below if you 
need page-specific styles.

It's good practice to use .page-yourpage {} syntax here so 
that you don't conflict with other classes. That's what
the cool kids do.

*/
.error404 .search-outer {
  padding: 1.5em 0; }

.error404 .search-input {
  display: flex;
  width: 100%; }

.error404 input[type="search"] {
  margin: 0 1em 0 0;
  height: 40px;
  min-width: 250px; }

.error404 .search-submit {
  width: 100px; }

.page-blog .entry-content .alignfull, .page-blog .entry-content .alignwide {
  margin: 0;
  max-width: 100%; }

/**
 * put all your custom page classes here  
 * e.g. .page-yourpage {}
 */
/*********************
POSTS &amp; CONTENT STYLES
*********************/
/* post meta */
.byline-wrap {
  margin-bottom: 1.5em; }

/* entry content */
.entry-content {
  clear: both;
  /*
    image alignment on a screen this size may be
    a bit difficult. It's set to start aligning
    and floating images at the next breakpoint,
    but it's up to you. Feel free to change it up.
    */ }
  .entry-content p {
    text-align: justify; }
  .entry-content table {
    margin-bottom: 1.5em;
    width: 100%;
    border: 1px solid #ccc; }
  .entry-content tr {
    border-bottom: 1px solid #ccc; }
    .entry-content tr:nth-child(even) {
      background-color: #dedede; }
  .entry-content td {
    padding: 7px;
    border-right: 1px solid #ccc; }
    .entry-content td:last-child {
      border-right: 0; }
  .entry-content th {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background-color: #dedede; }
    .entry-content th:last-child {
      border-right: 0; }

/* end .entry-content */
.wp-caption {
  /* images inside wp-caption */ }

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
/* default WP image classes */
/******************************************************************
SCREEN READER STYLES
******************************************************************/
/* Text meant only for screen readers. */
.screen-reader-text {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  white-space: nowrap; }

.screen-reader-text:focus {
  top: 5px;
  left: 5px;
  z-index: 100000;
  /* Above WP toolbar. */
  display: block;
  clip: auto !important;
  padding: 15px 23px 14px;
  width: auto;
  height: auto;
  border-radius: 3px;
  background-color: #f1f1f1;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  color: #21759b;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.875rem;
  font-size: 14px;
  line-height: normal; }

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
/* end plate_page_navi */
/* fallback previous &amp; next links */
.wp-prev-next .prev-link {
  float: left; }

.wp-prev-next .next-link {
  float: right; }

/* end .wp-prev-next */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
#comments-title {
  /* number of comments span */ }

.commentlist {
  margin: 0;
  list-style-type: none; }

.comment {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px dotted #ccc;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */ }
  .comment .comment-author {
    display: flex;
    align-items: center; }
  .comment .vcard .avatar {
    margin-right: 1rem; }
  .comment .children {
    /* variations */
    /* change number for different depth */ }

/* comment meta */
/* comment content */
/* end .commentlist .comment_content */
/* comment reply link */
/* end .commentlist .comment-reply-link */
/* edit comment link */
.comment-edit-link {
  margin-right: 6px; }

/**********************
COMMENT FORM STYLES
***********************/
/* comment submit button */
/* comment form title */
/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
/* no comments */
/*********************
SIDEBARS &amp; ASIDES
*********************/
.widget ul li {
  /* deep nesting */ }

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  margin-top: 3em;
  margin-bottom: .75em; }

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
Site Name:
Author:

Stylesheet: 481px and Up Stylesheet

This stylesheet is loaded for larger devices. It's set to
481px because at 480px it would load on a landscaped iPhone.
This isn't ideal because then you would be loading all those
extra styles on that same mobile connection.

Not sure if people use this breakpoint much anymore. We don't.
I can't remember the last time I used this stylesheet but keeping
it in for now.

******************************************************************/
  /*********************
NAVIGATION STYLES
*********************/
  .menu {
    /* end .menu ul */ }
    .menu ul {
      /* end .menu ul li */
      /* highlight current page */
      /* end current highlighters */ }
      .menu ul li {
        /*
				plan your menus and drop-downs wisely.
				*/ }
        .menu ul li a {
          /*
					you can use hover styles here even though this size
					has the possibility of being a mobile device.
					*/ }
  /* end .menu */
  /*********************
POSTS &amp; CONTENT STYLES
*********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */ }
    .entry-content .alignleft, .entry-content img.alignleft {
      margin-right: 1.5em;
      display: inline;
      float: left;
      margin-top: 11px; }
    .entry-content .alignright, .entry-content img.alignright {
      margin-left: 1.5em;
      display: inline;
      float: right;
      margin-top: 11px; }
    .entry-content .aligncenter, .entry-content img.aligncenter {
      margin-right: auto;
      margin-left: auto;
      display: table;
      clear: both;
      margin-top: 11px; }
    .entry-content .wp-block-media-text.alignfull {
      max-width: 100%;
      margin-left: 0;
      margin-right: 0; }
  /* end .entry-content */
  /*********************
FOOTER STYLES
*********************/
  /*
check your menus here. do they look good?
do they need tweaking?
*/
  /* end .footer-links */ }

/*********************
BELOW TABLET
This is for everything that's below an iPad including mobile
phones. This way we can keep mobile styles separate and not
compete with the base styles.
*********************/
@media only screen and (max-width: 767px) {
  /******************************************************************
Site Name: 
Author:

Stylesheet: Below Tablet

This stylesheet will show on devices smaller than an iPad or tablet.
Use this to add styles that will *only* show on mobile phones.

I find it easier to do it this way than to have to override base styles.

******************************************************************/
  p {
    margin: 1em; }
  .wrap {
    padding: 0em; }
  #inner-header {
    flex-wrap: wrap;
    position: relative; }
  #bloginfo {
    flex-wrap: wrap; }
  #logo {
    font-size: .75em;
    line-height: .1em;
    width: 30%; }
  #menu-central {
    flex-grow: 1;
    padding-right: 1em; }
  /*#gignac {width: 30%;
    padding-right: 1em;
  }*/
  #menu-central li {
    padding: 1em; }
  /*
#logo::before {
  content: "";
  background-size: 100%;
  position: absolute;
  right: 40px;
  width: 105px;
  height: 105px;
  z-index: 1000;
  bottom: 10px;
  background-image: url(../images/gignac.png);
}
*/
  /*
.header-nav {display: none;}*/
  #res-soc {
    width: 100%;
    margin-top: 0;
    display: none;
    position: relative; }
  .media-list {
    width: 100%;
    float: none;
    border-top: 1px solid #004bbc;
    margin-top: .5em;
    justify-content: space-around; }
  .top-nav, .footer-nav {
    margin: 1em 0em;
    border-top: 1px solid #004bbc; }
  .top-nav li, .footer-nav li {
    padding: .5em 0 .5em 20%;
    border-bottom: 1px solid #AAA; }
  .top-nav li a, .footer-nav li a {
    color: #004bbc;
    text-transform: uppercase; }
  #content {
    margin-top: 1.5em; }
  /*sans slick*/
  #diapo-container {
    margin: 0; }
  #diapo div {
    overflow: hidden;
    height: auto;
    padding-top: 0;
    margin: 0;
    background-image: none !important; }
  #diapo {
    padding-top: 0;
    height: auto; }
  .ligne-liens-home {
    margin: 0;
    flex-wrap: wrap; }
  .ligne-liens-home &gt; div {
    width: 100%;
    margin: 0; }
  .home #content {
    margin-top: 0px; }
  .billet h3, .page-template-page-cashless h3, .mentions-legales h3 {
    margin-left: .5em; }
  .billet p, .page-template-page-cashless p, .mentions-legales p {
    margin-left: 2em;
    margin-right: 1em; }
  /**/
  /*prog*/
  .prog-groupe-wrap &gt; div {
    width: 100%; }
  #fiche-groupe {
    margin-top: 1em; }
  #fiche-groupe &gt; div {
    width: 100%; }
  #fiche-groupe-img img {
    width: 100%;
    margin-bottom: 1.5em; }
  #fiche-groupe-txt {
    padding: 1em; }
  #titre-groupe-wrap {
    margin-bottom: 1em; }
  #titre-groupe {
    width: 70%; }
  #fiche-groupe h1 {
    font-size: 1.75em; }
  #fiche-groupe-liens {
    width: 30%; }
  #fiche-groupe-social a {
    font-size: 1.25em;
    width: 35px;
    height: 30px; }
  .fa-deezer {
    background-size: 70% auto;
    background-position: center left; }
  #fiche-groupe-site {
    font-size: .6em; }
  .h1-toggle {
    padding-left: 2em;
    /*width:  90%;*/
    font-size: 1.5em; }
  .billet h3 {
    margin-left: 1.5em; }
  .billet {
    margin-right: 1em; }
  #sous-reserve {
    font-size: .35em !important; }
  .div3cols {
    column-count: 2; }
  #trois-cols-haut-page &gt; div {
    display: flex;
    width: 100%;
    flex-direction: column;
    padding: 0 1.5em;
    margin-bottom: 4em; }
  #trois-cols-haut-page {
    display: flex;
    padding-bottom: 0em;
    flex-wrap: wrap; }
  #trois-cols-haut-page .txt-3cols {
    min-height: 1em; }
  /*ecausysthematiques*/
  .page-template-page-saison-culturelle h2 span {
    display: inline-block; }
  .page-template-page-saison-culturelle h2 span:before,
  .page-template-page-saison-culturelle h2 span:after {
    display: none; }
  .event-info {
    flex-wrap: wrap; }
  .event-img, .event-txt {
    width: 100%; }
  .event-img {
    margin-bottom: 1em; }
  .event-date {
    font-size: 1.25em;
    background-size: 35px;
    padding: 0 0 0 40px; }
  .event-txt .txt p {
    margin-left: 0;
    margin-right: 0; }
  .billet .article-toggle li {
    margin-left: .5em;
    padding: 0 1em 0 0; }
  #diapo-hist {
    height: 320px; }
  .page-template-page-faq h1 button::after, .page-template-page-histoire h1 button::after, .page-template-page-pratique h1 button::after, .page-template-page-journees h1 button::after, .page-template-page-ecaussitoyenete h1 button::after {
    position: static;
    content: "";
    display: inline-block;
    margin-left: 1em; }
  /*2022*/
  .header-2022 #bloginfo {
    flex-direction: column;
    flex-wrap: nowrap; }
  .header-2022 #dates {
    width: 100%; }
  .header-2022 #dates img {
    margin: 0 auto; }
  .header-2022 #logo {
    width: 100%; }
  .header-2022 #logo .top-nav li {
    padding: 1em; }
  #menu-menu-haut-2020 {
    width: 100%; }
  /*2023*/
  .header-2022 #dates {
    z-index: 1000; }
  .top-nav li:last-child {
    border: none; }
  /*
#main::before {
  content: "";
  background-size: auto;
  background-size: auto;
  background-size: 150px;
  position: absolute;
  right: 0;
  width: 120px;
  height: 150px;
  z-index: 1000;
  top: -125px;
}*/
  #main::before {
    content: "";
    background-size: 90px;
    position: absolute;
    right: 0;
    width: 80px;
    height: 90px;
    z-index: 1000;
    top: -55px; }
  .header-2022 #dates img {
    margin: 0; }
  .header-2022 #dates, .header-2022 #dates img {
    width: 200px;
    z-index: 1000;
    position: relative; }
  /*********************
NAVIGATION STYLES
*********************/
  .nav {
    margin: 0;
    padding: 0;
    border-bottom: 0;
    list-style-type: none;
    /* end .menu li */
    /* highlight current page */
    /* end current highlighters */ }
    .nav li {
      /* 
		Are you really going to use drop-down menus for mobile?
		Probably not. We almost always use the Responsive Menu
		plugin: https://wordpress.org/plugins/responsive-menu/
		*/ }
      .nav li a {
        display: block;
        padding: 0.2em;
        text-decoration: none; }
      .nav li ul.sub-menu li a,
      .nav li ul.children li a {
        padding-left: 30px; }
      .nav li ul.sub-menu li:last-child,
      .nav li ul.children li:last-child {
        border: none; }
  /* end .nav */ }

/*********************
TABLET &amp; SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
Site Name:
Author:

Stylesheet: Tablet &amp; Small Desktop Stylesheet

This stylesheet will be used for tablets and larger devices
like desktops. CSS Grid starts working its magic here so you
can start to have fun with your layout(s).

******************************************************************/
  /*********************
GLOBAL STYLES
*********************/
  .entry-content .alignfull {
    margin-left: calc( -100vw / 2 + 100% / 2);
    margin-right: calc( -100vw / 2 + 100% / 2);
    max-width: 100vw; }
  .entry-content .alignwide {
    margin-right: calc(25% - 25vw);
    margin-left: calc(25% - 25vw);
    max-width: 1000%;
    width: auto; }
  .entry-content .alignwide img,
  .entry-content .alignfull img {
    display: block;
    margin: 0 auto; }
  /*********************
LAYOUT &amp; GRID STYLES
*********************/
  .wrap {
    padding: 1em 1.5em;
    margin: 0 auto;
    max-width: 1200px; }
  /*
.home .wrap, .accueuil-2020 .wrap, .home-test-2022 .wrap, #inner-footer.wrap {max-width: 1400px;}*/
  .header-2022 .header-nav {
    padding-top: 2em; }
  #res-soc {
    width: 280px;
    /*position: absolute; right: 0; top: 2em;*/
    padding-right: 1.5em; }
  /*
.header-2022 #bloginfo {align-items: flex-start;}
.header-2022 #logo {height: calc(100% - 70px);}
.header-2022 .header-nav {height: 100%;}
.header-2022 .nav {height: 80%; align-items: end;}
*/
  /*********************
HEADER STYLES
*********************/
  #inner-header {
    flex-wrap: wrap; }
  #menu-central {
    flex-grow: 1; }
  #gignac {
    position: relative; }
  /*#gignac img {right: 0; position: absolute}*/
  /*
#menu-central {order: 3; width: 100%;}
*/
  /*********************
NAVIGATION STYLES
*********************/
  .header-nav {
    display: flex;
    align-items: center; }
  .nav {
    list-style-type: none;
    width: 100%;
    /*border-top: 2px solid; 
    border-bottom: 2px solid; */
    padding: .25em 0;
    margin: 1em 0 0 0;
    display: flex;
    justify-content: center;
    /*background:  #ec1c24;*/
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */ }
    .nav li {
      /*float: left;*/
      list-style: none;
      /*border-right: 1px solid #044F26;*/
      /*
        plan your menus and drop-downs wisely.
        */
      /* showing sub-menus */ }
      .nav li a {
        display: block;
        border-bottom: 0;
        padding: 0 0.5em;
        text-decoration: none;
        color: #044F26;
        font-family: "gobold_thinregular", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
        /*
            you can use hover styles here even though this size
            has the possibility of being a mobile device.
            */ }
        .nav li a:hover, .nav li a:focus {
          text-decoration: none; }
      .nav li:last-child {
        border-right: none; }
      .nav li ul.sub-menu,
      .nav li ul.children {
        position: absolute;
        z-index: 8999;
        visibility: hidden;
        /* highlight sub-menu current page */ }
        .nav li ul.sub-menu li,
        .nav li ul.children li {
          /*
                if you need to go deeper, go nuts
                just remember deeper menus suck
                for usability. k, bai.
                */ }
          .nav li ul.sub-menu li:last-child a,
          .nav li ul.children li:last-child a {
            border-bottom: 0; }
      .nav li:hover &gt; ul {
        top: auto;
        visibility: visible; }
  /* end .nav */
  /********************
WORDPRESS BODY CLASSES
style a page via class
********************/
  /*
We like having these classes for use in iPad and larger devices
so we've copied them here.
*/
  .single-full #main {
    max-width: 640px;
    float: none;
    margin: 0 auto; }
  /*********************
SIDEBARS &amp; ASIDES
*********************/
  .widget ul li {
    /* deep nesting */ }
  /*!
 *
 * We rarely use these widget classes but they
 * do come in handy sometimes. Know your widgets.
 *
 */
  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  /* search widget */
  /* text widget */
  /*********************
FOOTER STYLES
*********************/
  /*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
  .footer-links ul li {
    /*
            be careful with the depth of your menus.
            it's very rare to have multi-depth menus in
            the footer.
            */ }
  /* end .footer-links */ }

@media only screen and (max-width: 899px) {
  /******************************************************************
Site Name: 
Author:

Stylesheet: Below Tweener

This stylesheet will show on devices smaller than large tablets but
below desktops.

Use this for tweener device sizes. We don't use this stylesheet
often but on occasion it comes in handy.

******************************************************************/ }

@media only screen and (max-width: 1029px) {
  /******************************************************************
Site Name: 
Author:

Stylesheet: Smaller Desktops + Tablets

This stylesheet affects desktops and some tablets but often I find
that 1029px and below is a good breakpoint for showing a mobile 
hamburger menu so you can add styles for that here.

I find it easier to do it this way than to have to override base styles.

******************************************************************/
  /*
.header-2022 #dates, .header-2022 #dates img {
  width: 200px;
  z-index: 1000;
  position: relative;
}

#main::before {
  content: "";
  background-size: 90px;
  position: absolute;
  right: 0;
  width: 80px;
  height: 90px;
  z-index: 1000;
  top: -55px;
}*/ }

/*********************
TWEENER
This targets some trickier 'tweener' devices like large
tablets. You probably won't need to add too much to this stylesheet.
If you're not using it, delete it.
*********************/
@media only screen and (min-width: 900px) {
  /******************************************************************
Site Name:
Author:

Stylesheet: Tweener Stylsheet

This is for some trickier in-between 'tweener' sizes like larger 
tablets.

******************************************************************/ }

/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
Site Name:
Author:

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop.

At this breakpoint you can start setting things like max-width for
your content. Or go full-width. Like Nas said: "The world is yours!"

******************************************************************/
  .prog-groupe-wrap .en-plus {
    font-size: .9em; }
  #inner-header, #inner-footer {
    /* max-width: 1200px;*/
    margin: 0 auto; }
  .nav li a {
    padding: 0 1em; }
  /* #res-soc {
    width: 1000px;
    position: absolute;
    right: auto;
    top: 0;
    left: 0;
    left: calc(50% - 500px);
    padding-right: 1.6em;
  }*/ }

/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
Site Name: 
Author: 

Stylesheet: Larger Laptop + Desktop

You can add some advanced styles for larger devices here if you like. 

******************************************************************/
  /*2023*/
  .header-2022 #dates {
    margin-right: 0; } }

/*********************
HIMALAYA XL 9000 SIZE
This is for super ginormous monitors like your one friend has.
*********************/
@media only screen and (min-width: 1600px) {
  /******************************************************************
Site Name: 
Author: 

Stylesheet: Super Large Monitor Stylesheet

You can add some advanced styles here for extra large monitors.

******************************************************************/
  /*
// .wrap {
//     width: 1570px; // uncomment if you want to restrict the content width
// }*/
  #inner-header, #inner-footer {
    /*max-width: 1272px;*/
    margin: 0 auto; }
  /*
.header-2022 #dates, .header-2022 #dates img {
    width: 280px;
    position: relative;
    z-index: 100;
}

#res-soc {
    width: 280px;
}
*/
  /*#content, .grid #content{background-color: transparent}*/
  /*2023
#main::before {
  content: "";
  background-size: auto;
  background-size: auto;
  background-size: 100%;
  position: absolute;
  right: -180px;
  width: 200px;
  height: 200px;
  z-index: 1000;
  top: -100px;
}
.home #main::before {
  content: "";
  background-size: auto;
  background-size: auto;
  background-size: 100%;
  position: absolute;
  right: -100px;
  width: 200px;
  height: 200px;
  z-index: 1000;
  top: -100px;
}
.header-2022 #dates, .header-2022 #dates img {
    width: 400px;
    position: relative;
    z-index: 100;
}
#content,
.grid #content {
 margin-top: -250px;
}
.header-2022 #logo {height: calc(100% - 250px);}

.header-2022 #res-soc {width: 250px}*/
  /*
.header-2022 #bloginfo {align-items: flex-start;}


#inner-header {flex-wrap: nowrap;}
#gignac {flex-grow: auto; position: relative}
#gignac img {right: auto;}

#menu-central {order: 0; width: 100%;}



#logo img, #gignac img {position: absolute; top: 0}


.header-2024 {width: 100%; position: relative; }

#inner-header.wrap {width: 100%; max-width: 10000px;}

#inner-header #menu-central {width: 1000px;}

#logo img {right: 0px}

#gignac {position: relative;}
#gignac img {left: 10px}



#logo, #gignac {width: calc((100% - 1000px) / 2);}



#gignac {flex-grow: 1; position: relative; padding-right: 1.5em; margin-bottom: auto;}
#gignac img {right: 0; position: absolute; top: 4em}


#res-soc {width: 1000px}
#res-soc ul {position: absolute; width: 156px; right: -156px; padding-left: .25em;}

*/ }

@media only screen and (min-width: 1800px) {
  /*
 .wrap {
    max-width: 1200px;
    width: 1200px;
 }

#inner-header.wrap {width: 100%; max-width: 10000px;}

#inner-header #menu-central {width: 1200px;}


#logo, #gignac {width: calc((100% - 1200px) / 2);}


#res-soc {width: 1200px; left: calc(50% - 600px);}
#res-soc ul {position: absolute; width: 156px; right: -156px; padding-left: .25em;}
*/ }

/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
Site Name:
Author:

Stylesheet: Print Stylesheet

This is the print stylesheet. You probably don't need to edit much
in here but if you want to, do your thang.

Adapted from here:
https://www.noupe.com/design/css-perfect-print-stylesheet-98272.html

Updated 2018-05-25

******************************************************************/ }

@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    -ms-filter: none !important;
    filter: none !important; }
  /* Setting content width, unsetting floats and margins */
  /* Attention: the classes and IDs vary from theme to theme. Thus, set own classes here */
  #content {
    width: 100%;
    margin: 0;
    float: none; }
  /** Setting margins */
  @page {
    margin: 2cm; }
  /* Or: */
  @page :left {
    margin: 1cm; }
  @page :right {
    margin: 1cm; }
  /* The first page of a print can be manipulated as well */
  @page :first {
    margin: 1cm 2cm; }
  /* Set font to 16px/13pt, set background to white and font to black.*/
  /* This saves ink */
  body {
    font-size: 13pt;
    line-height: 1.3;
    background: #fff !important;
    color: #000; }
  h1 {
    font-size: 24pt; }
  h2, h3, h4 {
    font-size: 14pt;
    margin-top: 25px; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }
  /* Defining all page breaks */
  a {
    page-break-inside: avoid; }
  blockquote {
    page-break-inside: avoid; }
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    page-break-inside: avoid; }
  img {
    page-break-inside: avoid;
    page-break-after: avoid; }
  table, pre {
    page-break-inside: avoid; }
  ul, ol, dl {
    page-break-before: avoid; }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  /* Displaying link color and link behaviour */
  a:link, a:visited, a {
    background: transparent;
    color: #0088cc;
    font-weight: bold;
    text-decoration: underline;
    text-align: left; }
  a[href^=http]:after {
    content: " &lt; " attr(href) "&gt; "; }
  article a[href^="#"]:after {
    content: ""; }
  a:not(:local-link):after {
    content: " &lt; " attr(href) "&gt; "; }
  /**
    * Making intergated videos disappear, and removing the iframes' whitespace to zero. 
    */
  .entry-content iframe, ins {
    display: none;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    line-height: 0pt !important;
    white-space: nowrap; }
  .embed-youtube, .embed-responsive, .embed-container {
    display: none;
    position: absolute;
    height: 0;
    overflow: hidden; }
  /* Hiding unnecessary elements for the print */
  #header-widgets, nav, aside,
  .sidebar, .content-ads, .make-comment, .author-bio,
  .heading, .related-posts, #decomments-form-add-comment,
  #breadcrumbs, #footer, .post-byline, .byline, .meta-single,
  .site-title img, .post-tags, .readability, .sidebar, .page-navigation, .wp-prev-next,
  .respond-form {
    display: none; } }
</pre></body></html>