/*
Theme Name: nomadetheme
Theme URI: //
Author: 6nomades team
Author URI: //
Description: nomadetheme by 6nomades team
Requires at least: 5.3
Tested up to: 5.8
Requires PHP: 5.6
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nomadetheme
Tags: theme, dev, responsive, bootstrap
*/

/*======================================
//--//-->   PERSONAL STYLE
======================================*/

/* PRELOADER
-------------------------------------------------- */
/**.preloader {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    color: #fff;
    background-color: #346bc7;
    font-family: Consolas, Menlo, Monaco, monospace;
    font-weight: bold;
    font-size: 30vh;
    z-index: 1099;
  }
  .preloader.hidden {
    animation: fadeOut 0.5s;
    animation-fill-mode: forwards;
  }
  @keyframes fadeOut {
    100% {
      opacity: 0;
      visibility: hidden;
    }
  }
  .loader {
    --path: #dadfe4;
    --dot: #ec346f;
    --duration: 2s;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 999999999999999;
  }
  .loader:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    display: block;
    background: var(--dot);
    top: 37px;
    left: 19px;
    transform: translate(-18px, -18px);
    -webkit-animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
            animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  }
  .loader svg {
    display: block;
    width: 100%;
    height: 100%;
  }
  .loader svg rect,
  .loader svg polygon,
  .loader svg circle {
    fill: none;
    stroke: var(--path);
    stroke-width: 10px;
    stroke-linejoin: round;
    stroke-linecap: round;
  }
  .loader svg polygon {
    stroke-dasharray: 145 76 145 76;
    stroke-dashoffset: 0;
    -webkit-animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
            animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  }
  .loader svg rect {
    stroke-dasharray: 192 64 192 64;
    stroke-dashoffset: 0;
    -webkit-animation: pathRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
            animation: pathRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  }
  .loader svg circle {
    stroke-dasharray: 150 50 150 50;
    stroke-dashoffset: 75;
    -webkit-animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
            animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  }
  .loader.triangle {
    width: 48px;
  }
  .loader.triangle:before {
    left: 21px;
    transform: translate(-10px, -18px);
    -webkit-animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
            animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  }
  
  @-webkit-keyframes pathTriangle {
    33% {
      stroke-dashoffset: 74;
    }
    66% {
      stroke-dashoffset: 147;
    }
    100% {
      stroke-dashoffset: 221;
    }
  }
  
  @keyframes pathTriangle {
    33% {
      stroke-dashoffset: 74;
    }
    66% {
      stroke-dashoffset: 147;
    }
    100% {
      stroke-dashoffset: 221;
    }
  }
  @-webkit-keyframes dotTriangle {
    33% {
      transform: translate(0, 0);
    }
    66% {
      transform: translate(10px, -18px);
    }
    100% {
      transform: translate(-10px, -18px);
    }
  }
  @keyframes dotTriangle {
    33% {
      transform: translate(0, 0);
    }
    66% {
      transform: translate(10px, -18px);
    }
    100% {
      transform: translate(-10px, -18px);
    }
  }
  @-webkit-keyframes pathRect {
    25% {
      stroke-dashoffset: 64;
    }
    50% {
      stroke-dashoffset: 128;
    }
    75% {
      stroke-dashoffset: 192;
    }
    100% {
      stroke-dashoffset: 256;
    }
  }
  @keyframes pathRect {
    25% {
      stroke-dashoffset: 64;
    }
    50% {
      stroke-dashoffset: 128;
    }
    75% {
      stroke-dashoffset: 192;
    }
    100% {
      stroke-dashoffset: 256;
    }
  }
  @-webkit-keyframes dotRect {
    25% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(18px, -18px);
    }
    75% {
      transform: translate(0, -36px);
    }
    100% {
      transform: translate(-18px, -18px);
    }
  }
  @keyframes dotRect {
    25% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(18px, -18px);
    }
    75% {
      transform: translate(0, -36px);
    }
    100% {
      transform: translate(-18px, -18px);
    }
  }
  @-webkit-keyframes pathCircle {
    25% {
      stroke-dashoffset: 125;
    }
    50% {
      stroke-dashoffset: 175;
    }
    75% {
      stroke-dashoffset: 225;
    }
    100% {
      stroke-dashoffset: 275;
    }
  }
  @keyframes pathCircle {
    25% {
      stroke-dashoffset: 125;
    }
    50% {
      stroke-dashoffset: 175;
    }
    75% {
      stroke-dashoffset: 225;
    }
    100% {
      stroke-dashoffset: 275;
    }
  }
  .loader {
    display: inline-block;
    margin: 0 16px;
  } **/
  
/* GENERAL
-------------------------------------------------- */
body {
  background-color: #f1e7d9;
  font-family: 'Raleway', sans-serif;
  color: black;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Spectral', serif;
  background-color: none;
}

  
  /* NAVBAR
  -------------------------------------------------- */
  @media (max-width: 992px) {
      .bandeau-bg-video {
        display: none;
      }
  }

  @media (min-width: 992px) {
      .navbar-expand-lg .navbar-collapse {
      display: flex!important;
      flex-basis: auto;
      margin: 0px 0px;
  }
      
    .bandeau-bg-video {
    display: inline-block;
  }
  }

  .menu-item {
      margin-left: 3rem;
  }

  .navbar {
    background-color: #8c2426;
    padding: 0px 0px;
    display: inline-flex;
    margin: 0px 0px;
  }

  #toplogo {
    display: inline-flex;
    float: left;
    
  }

  a.navbar-brand {
    height: 100%;
    float: inline-start;
    background-color: #f1e7d9;
    padding: 10px 10px;
  }

  p.title {
    margin-bottom: 0rem;
  }

  a#menuItem {
    background-color: transparent;
    font-size: 1.5em;
    font-family: 'Spectral', serif;
    color: white;
    font-weight: bold;
    vertical-align: middle;
  }

  a#menuItem:hover {
    color:#f1e7d9;
  }

  #menucontainer {
    margin: 0px 0px;
    padding: 0px 0px;
    width: 1900px;
  }
  
  /* TAXO LINK
  -------------------------------------------------- */
  .product a:hover {
      color: #000;
      text-decoration: none;
      font-weight: 600;
  }
  
  /* CAROUSEL
  -------------------------------------------------- */
  
  
  /* CARD
  -------------------------------------------------- */
  .myitems a {
      color: #212529;
  }
  .myitems a:hover {
      color: #74787b;
  }	

  .cardQSJ {
    background-color: #f1e7d9 !important;
  }
  
  /* IMG + H1
  -------------------------------------------------- */

  .submenu h1 {
      height:100px;
      line-height:20px;
      vertical-align: left; /* centrage vertical */
  }
  
  /* BTN PROMO
  -------------------------------------------------- */
  .btnsize {
      font-size: 3rem;
  }
  
  /* SIDEBAR
  -------------------------------------------------- */
  .product {
      font-size: 1rem;
  }
  .product i {
      margin: 20px 20px 20px 20px;
  }
  .widget-sidebar a:hover {
      color: #606060;
      text-decoration: none;
  }
  
  /* TIPS
  -------------------------------------------------- */
  
  
  /* VIDEO
  -------------------------------------------------- */
  
  #videocontainer {
    width: 100%;
    overflow:hidden;
    display:block;
    height: 800px;
  }

  #videobanner {
    margin-top:-250px;
  }
  
  /* CONTACT FORM
  -------------------------------------------------- */
  .mycontact input[type=checkbox] {
      margin-left: 0;
  }
  .mycontact label{
      margin-left: 1rem;
  }
  
  /* FOOTER
  -------------------------------------------------- */
  footer {
      padding-top: 3rem;
      padding-bottom: 3rem;
  }
  
  footer p {
      margin-bottom: .25rem;
  }

  a:focus,

  a:hover {
      color: #fff;
      text-decoration: none;
  }
  .bg-my {
    background-color: #8c2426;
    color: #fff;
  }
  
  /* FOOTER MENU
  -------------------------------------------------- */
  .footernavmenu{
    display: inline;
    list-style-type: none;
    margin: 0 10px 0 5px;
    padding: 0;
  }
  .footernavmenu li {
    display: list-item;
  }

  .footernavmenu li a {
    text-align: left;
    text-decoration: none;
    color: #f1e7d9;
  }
  
  .footernavmenu li a:hover {
    color: #fff;
  }
  
  /* 404
  -------------------------------------------------- */
  .error-box {
    top: 50%;
    right: 8%;
  }
  .error-box h1 {
    margin-bottom: 50px;
  }
  @media (max-width: 767.98px) {
    .error-box {
      top: 25%;
      right: 0%;
      background-color: rgba(0, 0, 0, 0.5);
    }
    .error-box h1 {
      margin-bottom: 0px;
    }
    .error-box p {
      display: none;
    }
    .error-box form {
      display: none;
    }
  }
  
  /* PAGINATION
  -------------------------------------------------- */
  .paginate .page-numbers {
      position: relative;
      display: inline-block;
      padding: .5rem .75rem;
      margin: -3px;
      text-decoration: none;
      line-height: 1.25;
      color: #007bff;
      background-color: #fff;
      border: 1px solid #dee2e6;
  }
   
  .paginate .page-numbers:hover {
      z-index: 2;
      color: #0056b3;
      text-decoration: none;
      background-color: #e9ecef;
      border-color: #dee2e6;
  }
   
  .paginate .current {
      z-index: 3;
      color: #fff;
      background-color: #007bff;
      border-color: #007bff;
  }
  
  
  /* [2] Transition property for smooth transformation of images */
  .img-hover-zoom img {
    transition: transform .5s ease;
  }
  
  /* [3] Finally, transforming the image when container gets hovered */
  .img-hover-zoom:hover img {
    transform: scale(1.2);
  }
  
  /* CONTACT FORM
  -------------------------------------------------- */
  #sendmessage {
    color: #136967;
    border: 1px solid #136967;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  #errormessage {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  #sendmessage.show,
  #errormessage.show,
  .show {
    display: block;
  }
  
  .validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
  }
  
  /* STATISTIQUE GAUGE
  -------------------------------------------------- */
  .GaugeMeter{
      Position:        Relative;
      Text-Align:      Center;
      Overflow:        Hidden;
      Cursor:          Default;
  }
  
  .GaugeMeter SPAN,
  .GaugeMeter B{
      Margin:          -5% 23%;
      Width:           54%;
      Position:        Absolute;
      Text-align:      Center;
      Display:         Inline-Block;
      Color:           RGBa(0,0,0,.8);
      Font-Weight:     100;
      Font-Family:     "Open Sans", Arial;
      Overflow:        Hidden;
      White-Space:     NoWrap;
      Text-Overflow:   Ellipsis;
  }
  .GaugeMeter[data-style="Semi"] B{
      Margin:          0 10%;
      Width:           80%;
  }
  
  .GaugeMeter[data-label] {
      Font-Size:       4em;
  }
  
  .GaugeMeter S,
  .GaugeMeter U{
      Text-Decoration: None;
      Font-Size:       .5em;
      Opacity:         .5;
  }
  
  .GaugeMeter B{
      Color:           Black;
      Font-Weight:     300;
      Font-Size:       .5em;
      Opacity:         .8;
  }
  
  /* SOCIAL SHARE
  -------------------------------------------------- */
  .social-bloc{
      display: block;
  }
  .social-share {
      margin: 0;
      float: right;
      overflow: hidden;
  }
  .social-share li {
      margin-right: 15px;
      display: inline-block;
      list-style: none;
  }
  .social-share li>div a {
      color: #999;
      width: 30px;
      height: 30px;
      border: 1px solid #999;
      border-radius: 50%;
      text-align: center;
      font-size: 18px;
      cursor: pointer;
  }
  .social-share li>div a{
      line-height: 28px;
      display: inline-block;
      vertical-align: middle;
  }
  .social-share li>div.facebook-social a:hover {
      border-color: #3b5998;
      background-color: #3b5998;
      color: white;
  }
  .social-share li>div.twitter-social a:hover {
      border-color: #00aced;
      background-color: #00aced;
      color: white;
  }
  .social-share li>div.pinterest-social a:hover {
      border-color: #cb2027;
      background-color: #cb2027;
      color: white;
  }
  .social-share li>div.linkedin-social a:hover {
      border-color: #0077b5;
      background-color: #0077b5;
      color: white;
  }
  .social-share li>div.email-social a:hover {
      border-color: #b116a8;
      background-color: #b116a8;
      color: white;
  }
  
  /* MENTION PAGE
  -------------------------------------------------- */
  .list-ico {
      list-style: none;
      padding-left: 0;
      margin-bottom: 50px;
  }
  
  /* .list-ico {
      line-height: 2;
  } */
  
  .list-ico span {
      color: #0078ff;
      margin: 0 20px 0 50px;
  }

  /* PREV NEXT LINK
  -------------------------------------------------- */
  .prevnext a {
    display: inline-block;
    width: 95%;
    height: 100%;
    padding: 15px 0;
    color: #000;
    text-decoration: none;
    font-weight: 600;
  }
  .prevnext a:hover {
    color: #424242;
  }
  .prevnext div:hover {
    background-color: #eeecec;
  }

    /* WHODAT
  -------------------------------------------------- */
  .whodatImg {
    width: 30%;
    margin: auto;
  }

  .btn {
    background-color: #199a8b;
    border: #199a8b;
    margin-bottom: 50px;
    display: flex;
   }
   
  .btn:hover {
   background-color: #33a598;
   border: #33a598;
  }

  .img-card:hover {
    transform: scale(1.05);
  }

      /* PUB
  -------------------------------------------------- */
  
  #leconcept, #lacommunaute, #lesactus {
    padding-top: 70px; 
  }

  #lacommunaute, #lesactus {
    padding-bottom: 40px;
  }

  #creetonvoyage, #rejoinsungroupe {
    padding-top: 20px; 
  }


  /*PERSONNALISATION GROUPES ---------------
  ----------------------------------------*/
  a.bp-group-home-link {
    color: #136967;
  }

  a.bp-group-home-link:hover {
    color: #199a8b;
  }

  a {
    color: #136967;
  }

  a:hover {
    color: #199a8b
  }







  #play {
    font-size: 24px;
    padding: 2rem;
    background: #199a8b;
    color: #ffffff;
    border-radius: 8px;
  }

  ul {
    list-style-type: none !important;
  }

 .img-hover-zoom:hover img {
  transform: scale(1.2);
  }


  a.btn.btn-secondary.btn-group{
    border-radius: 0.5em;
    font-family: 'Raleway', sans-serif;
    padding: 1.5rem 1.5rem;
    padding-left: 1.7em;
    font-size: 1.4rem;
    text-align: center;
    font-weight: bolder;
    width: 300px;
  }


  a.btn.btn-secondary.btn-concept{
    border-radius: 0.5em;
    font-family: 'Raleway', sans-serif;
    padding: 1.5rem 1.5rem;
    font-size: 1.4rem;
    text-align: center;
    font-weight: bolder;
    width: 175px;
  }

  a.btn.btn-secondary.btn-crea{
    border-radius: 0.5em;
    font-family: 'Raleway', sans-serif;
    padding: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
    font-weight: bolder;
    width: 225px;
  }


   img.avatar {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 1px 0 #fff;
    -moz-box-shadow: 0 1px 0 #fff;
    box-shadow: 0 1px 0 #fff;
    }

    #textecrea {
      padding-top: 20%;
      font-size: 1.3em;
    }

    #banner {
      margin-top: 50px;
      margin-left: 300px;
      margin-right: 300px;
      height: 300px;
      width: 1000px;
    }

    .video-son-0 {
      background-image: url(/assets/img/picto-son-0.png);
    }

    .video-son-1 {
      background-image: url(/assets/img/picto-son-1.png);
    }

    .video-son {
      display: block;
      width: 50px;
      height: 50px;
      position: absolute;
      margin-top: -490px;
      margin-left: 40px;
      background-size: cover;
      border-radius: 20%;
      border: 2px solid  #136967;
      z-index: 999;
      background-color: #136967;
  }

    .img-fluid-banner-pub {
      margin-top: 50px;
    }

    .card-body {
      flex: 1 1 auto;
      padding: 1.1 rem;
    }

    .dropdown-item.active {
      color:#f1e7d9;
      text-decoration: none;
      background-color: #136967;
    }

     /* Footer 
    -------------------------------------------------- */

    .img-icon:hover {
      transform: scale(1.1);
    }

    ul.sub-menu {
      padding-left: 0rem;
    }

  
    

