
/*Design du bloc Head*/
.head{
    background: var(--background-color-second);
    font-size: 13.5px;
  }
.head a{
    color: var(--font-color-second);
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
  .header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 10px 0;
    transition: all 0.5s;
    z-index: 997;
    margin-bottom: 30px;
  }
  .header .logo {
    line-height: 1;
  }
  
  .header .logo img {
    max-height: 70px;
    margin-right: 10px;
  }
  
  .header .logo h1 {
    font-size: 35px;
    margin: 0;
    font-weight: 700;
    color: var(--default-color);
  }
  
  .scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  }
  .img-illustrator{
    margin-top: 10px;
    width: 250px;
    height: 250px;
  }
  .img-illustrator img{
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  /*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
      padding: 0;
    }
  
    .navmenu ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
      margin-left: 10%;
    }
  
    .navmenu li {
      position: relative;
    }
  
    .navmenu>ul>li a {
      white-space: nowrap;
      padding: 10px 8px;
      font-size: 15px ;
    }
  
    .navmenu>ul>li:last-child {
      padding-right: 0;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--default-color);
      font-size: 13.5px;
      padding: 0 2px;
      font-family: var(--Police-title);
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
      position: relative;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 10px;
      line-height: 0;
      margin-left: 5px;
      transition: 0.3s;
    }
  
    .navmenu>ul>li>a:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: -6px;
      left: 0;
      background-color: var(--background-color);
      visibility: hidden;
      width: 0px;
      transition: all 0.3s ease-in-out 0s;
    }
  
    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
      visibility: visible;
      width: 100%;
    }
  
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--accent-color);
    }
  
    .dark{
      background: var(--background-color-second) !important;
      color: var(--font-color) !important;
    }
  
    .navmenu .dropdown ul {
      margin: 0;
      padding: 10px 0;
      background: var(--background-color);
      display: block;
      position: absolute;
      visibility: hidden;
      left: 10px;
      top: 130%;
      opacity: 0;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  
    .navmenu .dropdown ul li {
      min-width: 200px;
    }
  
    .navmenu .dropdown ul a {
      color: #000000;
      padding: 10px 20px;
      font-size: 13px;
      text-transform: none;
    }
  
    .navmenu .dropdown ul a i {
      font-size: 12px;
    }
  
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
      color: var(--accent-color);
    }
  
    .navmenu .dropdown:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
  
    .navmenu .dropdown .dropdown ul {
      top: 0;
      left: -90%;
      visibility: hidden;
    }
  
    .navmenu .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: -100%;
      visibility: visible;
    }
  }
  /* Mobile Navigation */
  @media (max-width: 1199px) {
    .mobile-nav-toggle {
      color: var(--font-color);
      font-size: 28px;
      line-height: 0;
      margin-right: 10px;
      cursor: pointer;
      transition: color 0.3s;
    }
    .sitename{
      color: var(--font-color) !important;
    }
    .navmenu {
      padding: 0;
      z-index: 9997;
    }
    .dark{
      background: var(--background-color-second) !important;
      color: var(--font-color) !important;
    }
  
    .navmenu ul {
      display: none;
      list-style: none;
      position: absolute;
      inset: 60px 20px 20px 20px;
      padding: 10px 0;
      margin: 0;
      border-radius: 6px;
      background-color: var(--background-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      box-shadow: none;
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
    }
  
    .navmenu>ul>li a {
      font-size: 20px ;
    }
    .navmenu a,
    .navmenu a:focus {
      color: var(--default-color);
      padding: 10px 20px;
      font-family: var(--Police-title);
      font-size: 17px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.3s;
      background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
  
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
      background-color: var(--accent-color);
      color: var(--accent-color);
    }
  
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--accent-color);
    }
  
    .navmenu .active i,
    .navmenu .active:focus i {
      background-color: var(--accent-color);
      color: var(--contrast-color);
      transform: rotate(180deg);
    }
  
    .navmenu .dropdown ul {
      position: static;
      display: none;
      z-index: 99;
      padding: 10px 0;
      margin: 10px 20px;
      background-color: var(--background-color-);
      transition: all 0.5s ease-in-out;
    }
  
    .navmenu .dropdown ul ul {
      background-color: rgba(33, 37, 41, 0.1);
    }
  
    .navmenu .dropdown>.dropdown-active {
      display: block;
      background-color: rgba(33, 37, 41, 0.03);
    }
  
    .mobile-nav-active {
      overflow: hidden;
    }
  
    .mobile-nav-active .mobile-nav-toggle {
      color: var(--font-color);
      position: absolute;
      font-size: 32px;
      top: 15px;
      right: 15px;
      margin-right: 0;
      z-index: 9999;
    }
  
    .mobile-nav-active .navmenu {
      position: fixed;
      overflow: hidden;
      inset: 0;
      background: rgba(33, 37, 41, 0.8);
      transition: 0.3s;
    }
  
    .mobile-nav-active .navmenu>ul {
      display: block;
    }
  }

/*Début Le responsive design*/
/*Design sur pc*/
  @media(min-width: 1199px)  {

  .pc-none{
    display: none;
    }
    .profil-img{
      width: 50px;
      height: 50px;
    }
    .profil-img img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .h1{
      font-size: 40px;
      font-family: var(--fine-font);
    }
    .h2{
      font-size: 35px;
      font-family: var(--fine-font);
    }
    .h3{
      font-size: 20px;
    }
    .p1{
      font-size: 22px;
      font-family: var(--fine-font);
    }
    .p2{
      font-size: 18px;
      font-family: var(--fine-font);
    }
    .product-card{
      border: none;
      border-radius: 10px;
      overflow: hidden;
      margin-top: 10px;
    }
    .product-card .position-relative{
      width: 100%;
    }
    .product-image{
      object-fit: cover;
      width: 100%;
      height: auto;
      border-radius: 10px 10PX 0 0;
    } 
    /*les design des écrits de la carte produits*/
    .title-card{
      font-size: 18px;
      color: var(--default-color);
      font-weight: bold;
    }
    .description-card{
      font-size: 14px;
      font-weight: bold;
    }
    .price{
      font-size: 18px;
      float: right;
      font-weight: bold;
      color: var(--default-color);
    }
    .price-before{
      font-size: 14px;
      margin-top: 3px;
      float: left;
      font-weight: bold;
      text-decoration: line-through;
    } 
    /*overlay*/
    .overlay{
      background: rgba(0, 0, 0, 0.2);
      position: absolute;
      top: 80%;
      left: 50%;
      border-radius: 0.5rem;
      transform: translate(-50%, -50%);
      display: flex;
      gap: 10px;
    
    }
    .overlay button{
      border: none;
      background: transparent;
      width: auto;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 15px;
    }
    
  }

   .select2-container--default .select2-results__option--highlighted[aria-selected]{
    background-color: orangered !important;
    color: white !important;
  }
  .select2-container--default .select2-selection--single{
    background: #fff !important;
    border: 1px solid var(--background-color-alternative);
    height: 50px;
  }
    .select2-container--default .select2-selection--single .select2-selection__rendered{
      line-height: 50px !important;
      font-size: 17px;
  }
  .select2-container--default.select2-container--focus .select2-selection--single{
    background: var(--background-color) !important;
    color: var(--default-color) !important;
  }
  .hidden{
    display: none;
  }
  /*Design sur mobile*/
  @media(max-width: 1199px)  {
    .profil-img{
      width: 50px;
      height: 50px;
    }
    .profil-img img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
   .mobile-none{
    display: none;
    }
    .sitename{
      font-size: 22px !important;
    }
    .h1{
      font-size: 40px;
      font-family: var(--fine-font);
    }
    .h1-x{
      font-size: 25px;
      font-family: var(--fine-font);
    }
    .h2{
      font-size: 35px;
      font-family: var(--fine-font);
    }
    .h3{
      font-size: 20px !important;
    }
    .p1{
      font-size: 22px;
      font-family: var(--fine-font);
    }
    .p1-x{
      font-size: 15px;
      font-family: var(--fine-font);
    }
    .p2{
      font-size: 18px;
      font-family: var(--fine-font);
    }
    .product-card{
      object-fit: cover;
      border: none;
      border-radius: 10px;
      overflow: hidden;
      margin-top: 10px;
    }
    .product-card .position-relative{
      width: 100%;
    }
    .product-image{
      object-fit: cover;
      width: 100%;
      height: auto;
      border-radius: 10px 10PX 0 0;
    } 
    /*les design des écrits de la carte produits*/
    .title-card{
      font-size: 30px !important;
      color: var(--default-color);
      font-weight: bold;
    }
    .description-card{
      font-size: 14px;
      font-weight: bold;
    }
    .price{
      font-size: 18px;
      float: right;
      font-weight: bold;
      color: var(--default-color);
    }
    .price-before{
      font-size: 14px;
      margin-top: 3px;
      float: left;
      font-weight: bold;
      text-decoration: line-through;
    } 

  }
  .etoiles{
    font-size: 20px !important;
  }
  .payment-option{
    border: 1px solid #ddd;
    border-radius: 5rem;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--background-color-alternative);
  }
  .payment-form{
    margin-top: 10px;
    display: none;
  }
  .form-control:disabled{
    background: var(--background-color-alternative);
  }
  .div-icon{
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
  }
  .img-icon{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  .payment-form .input{
     border-radius: 5rem !important;
  }
  .filepond--image-preview{
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
  }
  .filepond--root{
    object-fit: cover !important;
    width: 200px !important;
    height: 200px !important;
  }

  .filepond--image-preview-wrapper{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  .filepond--item-panel{
    overflow: visible !important;
  }
  .filepond--file-action-button{
    transform: translateY(50%) !important;
    top: 10px;
    left: 25% !important;
  }
  .filepond--credits{
    display: none !important;
  }
  /*Fin Le responsive design*/
   /*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0;
  scroll-margin-top: 120px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px;
  }
}
/*Fin section*/
/*l'espace entre deux elements*/
  .space-one{
    height: 3rem;
  }
  .space-end{
    height: 8rem;
  }
  .space{
    background: transparent;
    width: 2rem;
  }
