:root
{
  --black: #000;
  --white: #fff;
  --grey: #888;
  --blue: #00b6f0;
  --rose: #ec008d;
  --menubgcolor: #111;
  --footercolor: #eee; /* #444; */
  --footercolorhover: #fff; /* #666; */
}

*
{
  border: 0px;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  text-decoration: none;
}

body
{
  background-color: var(--black);
/*
  background-image: url(img/bg-body.jpg);
*/
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: var(--white);
  font-family: Roboto, Arial, sans-serif;
  font-size: 11pt;
  font-weight: 300;
}

a
{
  color: var(--blue);
  text-decoration: none;
}

a:hover, a:focus, a:active
{
  color: var(--rose);
  text-decoration: none;
}

.form-control
{
  height: 36px;
  line-height: 34px;
  font-size: 14px;
  padding: 0px 12px;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-control:focus
{
  border-color: var(--blue);
  box-shadow: 0px 0px 5px var(--blue);
}

.btn
{
  border-radius: 0px;
}

.btn-primary
{
  color: var(--white);
  background-color: var(--blue);
  border-color: var(--blue);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active
{
  color: var(--white);
  background-color: var(--rose);
  border-color: var(--rose);
}

/*
//==============================================================================
// Header
//==============================================================================
*/

header
{
  display: block;
  width: 100%;
  height: 120px;
  padding: 10px 0px;
  font-size: 0px;
  text-align: center;
}

header .logo
{
  display: inline-block;
  width: 100px;
  height: 100px;
  margin-left: 110px;
  margin-right: 10px;
  vertical-align: middle;
}

header .logo img
{
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  border-radius: 50%;
}

header .btnmenu
{
  display: inline-block;
  width: 100px;
  height: 100px;
  margin-left: 0px;
  margin-right: 0px;
  vertical-align: middle;
  position: relative;
  z-index: 100;
}

header .btnmenu > input#btnmenu
{
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 103;
  width: 100%;
  height: 100%;
  margin: 0px;
  opacity: 0.0;
  cursor: pointer;
}

header .btnmenu > .burger
{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

header .btnmenu > .burger > div
{
  position: relative;
  z-index: 102;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 32px;
  height: 24px;
}

header .btnmenu > .burger > div > span
{
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--white);
  transition: all 0.2s ease;
}

#btnmenu ~ .burger>div>span:nth-child(1) { transform-origin: top left; }
#btnmenu ~ .burger>div>span:nth-child(3) { transform-origin: bottom left; }

#btnmenu:checked ~ .burger { background-color: var(--menubgcolor); }
#btnmenu:checked ~ .burger>div>span:nth-child(1) { transform: translateX(10px) translateY(0px) rotate(45deg); }
#btnmenu:checked ~ .burger>div>span:nth-child(2) { transform: translateX(40px); opacity: 0.0; }
#btnmenu:checked ~ .burger>div>span:nth-child(3) { transform: translateX(10px) translateY(1px) rotate(-45deg); }

header nav.menu
{
  position: absolute;
  left: 0px;
  top: 100px;
  z-index: 105;
  width: 240px;
  height: auto;
  padding: 10px 20px;
  background-color: var(--menubgcolor);
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.6s ease;
  text-align: left;
}

header nav.menu::-webkit-scrollbar
{
  display: none;
}

header nav.menu ul
{
  list-style: none;
  margin: 0px;
  padding: 0px;
}

header nav.menu ul li > *
{
  position: relative;
  display: block;
  transition: all 0.2s ease;
}

header nav.menu ul li > * > img
{
  position: absolute;
  left: 0px;
  top: 0px;
  display: block;
  width: 30px;
  height: 30px;
}

header nav.menu ul li ul
{
  position: absolute;
  height: 0px;
  transform: scaleY(0);
  transform-origin: top;
  margin: 0px 0px 5px 0px;
  transition: all 0.3s ease;
}

header nav.menu ul li:hover ul
{
  position: relative;
  height: auto;
  transform: scaleY(1);
}

header nav.menu > ul > li > *
{
  color: var(--white);
  font-size: 16pt;
  font-weight: 300;
  line-height: 30px;
}

header nav.menu > ul > li.blanc > *
{
  color: var(--white);
}

header nav.menu > ul > li > ul > li > *
{
  color: var(--white);
  font-size: 12pt;
  line-height: 24px;
  padding-left: 0px;
}

header nav.menu > ul > li > ul > li.all > *
{
  color: var(--white);
}

header nav.menu > ul > li > ul > li.sep > *
{
  color: #666;
  margin-top: 10px;
}

header nav.menu a:hover
{
  color: var(--rose);
}

#btnmenu         ~ nav.menu { transform: translateY(-100vh); }
#btnmenu:checked ~ nav.menu { transform: translateY(0);      }

/*
//==============================================================================
// Body
//==============================================================================
*/

.body
{
  padding: 15px 0px;
}

.body .container.blocs
{
  margin-bottom: 20px;
}

.body .container.blocs .row > div
{
  padding: 5px;
  position: relative;
  overflow: hidden;
}

.body .container.blocs .row > div a
{
  display: block;
  position: relative;
  overflow: hidden;
}

.body .container.blocs .row > div a img
{
  display: block;
  width: 100%;
  transition: all 0.3s ease;
}

.body .container.blocs .row > div a:hover img
{
  transform: scale(1.2);
}

.body .container.blocs .row > div .title
{
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  display: none;
  align-items: center;
  justify-content: center;
}

.body .container.blocs.titres .row > div .title
{
  display: flex;
}

.body .container.blocs .row > div .title h3
{
  color: var(--white);
  font-size: 20pt;
  font-weight: 300;
}

.body .container.titre h2
{
  color: var(--white);
  font-size: 16pt;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
}

.body .container.titre.bleu h2
{
  color: var(--blue);
}

.body .container.sigle .row > div img
{
  display: block;
  width: 100px;
  max-width: 100%;
  margin: 0px auto;
}

body.contact h1,
body.contact h3
{
  text-align: center;
}

body.contact .body form
{
  margin: 40px auto;
}

body.contact .body form .btn-primary
{
  width: 100%;
  max-width: 100%;
  line-height: 30px;
  transition: all 0.3s ease;
}

@media (min-width: 768px)
{
  .pousse img
  {
    margin-top: 200px;
  }
}

/*
//==============================================================================
// Error 404
//==============================================================================
*/

.error404 .row > div
{
  font-size: 0px;
  padding-top: 10vh;
  padding-bottom: 10vh;
  text-align: center;
}

.error404 h2, .error404 h3
{
  display: inline-block;
  margin: 0px;
  vertical-align: middle;
}

.error404 h2
{
  color: var(--white);
  font-size: 40px;
  line-height: 50px;
  margin-left: 40px;
  padding: 25px 0px;
  text-align: left;
}

.error404 h3
{
  color: var(--grey);
  font-size: 140px;
  line-height: 150px;
  text-align: right;
}

/*
//==============================================================================
// Footer
//==============================================================================
*/

footer
{
  display: block;
  width: 100%;
  padding-bottom: 30px;
  font-size: 10pt;
  text-align: center;
}

footer .slogan
{
  padding: 10px 0px;
  text-transform: uppercase;
}

footer .slogan p
{
  margin: 0px;
}

footer .social
{
  padding: 10px 0px;
}

footer .social ul
{
  font-size: 0px;
  list-style: none;
}

footer .social ul li
{
  display: inline-block;
  margin: 0px 5px;
}

footer .social ul li a
{
  display: block;
}

footer .social ul li a img
{
  display: block;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

footer .social ul li a:hover img
{
  transform: scale(1.2);
}

footer .copyright,
footer .copyright a
{
  color: var(--footercolor);
  transition: all 0.3s ease;
}

footer .copyright a:hover
{
  color: var(--footercolorhover);
}

/*
//==============================================================================
// Mobile
//==============================================================================
*/

@media (max-width: 991px)
{
  .form-control
  {
    height: 40px;
    line-height: 38px;
    font-size: 16px;
  }

  header nav.menu
  {
    left: -140px;
  }
}

/*
//==============================================================================
// Version 2025
//==============================================================================
*/

:root { --menubgcolor:#2C1048; }

body.v2025 { background-color:#2C1048; background-image:none!important;}
body.v2025 header,
body.v2025 .body { padding:0; }

body.v2025 header .logo, body.v2025 header .logo img { width:auto; height:100%; }
body.v2025 header .logo img { background-color:none; border-radius:0; }
body.v2025 header .btnmenu { margin:10px 0; float:right; }
body.v2025 header nav.menu { left:unset; right:0px; }

.v2025 .container-fluid,
.v2025 .container-fluid > .row,
.v2025 .container-fluid > .row > div { margin:0; padding:0; overflow:hidden; }
.v2025 .container-fluid > .row > div a { display:block; }
.v2025 .container-fluid > .row > div img { display:block; width:100%; }
.v2025 .container-fluid > .row > div a img { opacity:1.0 transform:scale(1.01); transition:all 0.3s ease; }
.v2025 .container-fluid > .row > div a:hover img { opacity:1.0; transform:scale(1.10); }

.v2025 footer .slogan { padding:25px 0 0 0; }
.v2025 footer .slogan p { font-weight:600; }
footer .realisations { margin:0; }
footer .realisations ul { font-size:0; padding:15px 10px; text-align:justify; }
footer .realisations ul li { display:inline-block; }
footer .realisations ul li::before, footer .realisations ul li a { display:inline-block; color:var(--footercolor); font-size:9pt; letter-spacing:-0.07em; line-height:18px; vertical-align:middle; }
footer .realisations ul li::before { content:"-"; margin:0 4px; }
footer .realisations ul li:first-child::before, footer .realisations ul li.nosep::before { display:none; }
footer .realisations a { text-transform:uppercase; transition:all 0.3s ease; }
footer .realisations a:hover { color:var(--footercolorhover); }
