/*
Theme Name: Dopslide
Theme URI: 
Author: AF
Author URI: 
Description: 
Requires at least: 6.8
Tested up to: 6.8
Requires PHP: 5.7
Version: 
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: doposlide
Tags: 
*/

/*----- helpers -----*/

*{
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}

:root{
  --orange: rgb(251, 105, 48);
  --noir: rgb(26, 26, 26);
  --rose: rgb(255, 88, 88);
  --blanc: rgb(255, 255, 255);
  --gris: rgb(169, 169, 169);
  --bleu: #0046FD;
}

body{
  background: #EDF2F9;
}

body.overflow-hidden{
  overflow: hidden;
}


@keyframes blurFadeIn {
  0% {
    top: 10px;
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    top: 0;
    filter: blur(0);
    opacity: 1;
  }
}

#title{
  text-align: center;
}

main{
  padding:0 !important;
}


.btn{
  cursor: pointer;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  padding: 11px 15px;
  text-decoration: none;
  color: #fff;
  font-family: var(--wp--preset--font-family--montserrat) !important, sans-serif;
  font-size: 13.45px;
  font-weight: 400;
  letter-spacing: 0.14px;
  line-height: 21px;
  text-align: right;
  text-transform: none;
  position: relative;
  width: fit-content;
  background: linear-gradient(63.52deg, #0046FD -88.05%, #1D5BFC -41.88%, #6A93FB 57.55%, #E3EAF9 203.16%, #EDF2F9 217.36%);
  overflow: hidden;
  border-radius: 10px;
}

.btn.shadow{
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.btn.center{
  margin: 0 auto;
}

.btn.blanc{
  background: var(--blanc);
  color: black;
  border: .5px solid #000000;
}

.btn.orange{
  background-color: rgba(251, 105, 48);
}

.bulle{
  position: relative;
  width: fit-content;
}

.bulle::after{
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transform: translate(20%, -30%);
  background-color: rgba(0, 70, 253, 1);
  border-radius: 100%;
  border: 3.24px solid rgba(255, 255, 255, 1);
  /*
  background-color: var(--rose);
  border-radius: 100%;
  border: 1px solid var(--blanc);
   */
}


input[type="checkbox"]{
  appearance: none;
  cursor: pointer;
  background-color: transparent;
  width: inherit;
  height: inherit;
  position: relative;
  padding: 10px;
}

input[type=checkbox]::before {
  content: url('assets/svg/checkbox.svg');
  display: flex;
  position: absolute;
  top: 0;
  left: 50%;
  font-size: 1.7em;
  transform: translate(-50%, -0%);
  align-items: center;
}

input[type=checkbox]:checked::after {
  content: url('assets/svg/checked.svg');
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 1.7em;
  transform: translate(-50%, -50%);
}

.wp-block-query,
.wp-block-post-template{
  max-width: 100%;
  padding:0 !important;
}

.texte-picto{
  display: flex;
  gap:20px;
  align-items: center;
}

.bouton-picto a{
  display: flex;
  align-items: center;
  gap: 10px;
}

.w-min{
  width: fit-content;
}

.not-underline,
.not-underline a{
  text-decoration: none;
}

.radius-avatar{
  display: flex;
  align-items: center;
  gap:15px;
}

.radius-avatar .wp-block-post-author__avatar{
  margin-right: 0;
}

.radius-avatar img{
  border-radius: 100%;
  width: 32px;
  height: 32px;
}

.custom-card-author{
  margin-left: auto !important;
  margin-right: auto !important;
}

.excerpt-btn a.wp-block-button__link{
  font-size: 16px;
  background: #fff;
  padding: 16px 28px;
  border-radius: 24px;
  color: #424143;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  text-decoration: none;
}

.outil-slick .slick-slide {
  transform: scale(0.9);
  transition: all 0.3s ease;
  margin: 0 10px; /* 10px de chaque côté pour l'espacement */
}

.outil-slick .slick-center {
  transform: scale(1);
  z-index: 2;
}

.outil-slick .slick-list {
  margin: 0 -10px; /* Pour compenser le margin et éviter un décalage */
  padding-bottom: 20px !important;
}

.outil-slick-wrapper .custom-arrow-prev{
  position: absolute;
  top:50%;
  left:-20px;
  transform: translateY(-50%);
  cursor: pointer;
}

.outil-slick-wrapper .custom-arrow-next{
  position: absolute;
  top:50%;
  right:-20px;
  transform: translateY(-50%);
  cursor: pointer;
}

body.single .wp-block-post-author{
  justify-content: center !important;
  align-items: center !important;
}

body.single .wp-block-post-author__avatar{
  margin-right: 10px !important;
}

body.single .wp-block-post-author__content{
  width: fit-content !important;
  flex-grow: unset !important;
  flex-basis: unset !important;
}

body.single .wp-block-post-content h2{
  color:#0554F2;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

body.single .wp-block-post-content img{
  margin: 0 auto;
}

body.single .wp-block-post-content p,
body.single .wp-block-post-content li{
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  margin-top: 18px;
}

body.single .wp-block-post-content figure{
  margin-top: 30px;
}

body.single .wp-block-post-content figure + p{
  margin-top:51px;
}

body.single .wp-block-post-content img{
  width: 100% !important;
  height: 100%;
  /*aspect-ratio: 994 / 560 !important;*/
  aspect-ratio: unset !important;
  object-fit: cover;
  border-radius: 20px;
  max-width: 994px;
  margin: 0 auto;
  display: flex;
}

body.single .date-auteur{
  display: flex;
}

.custom-toc label{
  font-size: 16px;
  font-weight: 700;
}

.custom-toc label + a{
  margin-top: 30px;
}

.custom-toc a{
  margin-top: 16px;
  font-size:16px;
  font-weight: 500;
  color: #424143;
  text-decoration: none;
  display: block;
}

.custom-toc a span{
  text-decoration: underline;
}

.custom-breadcrumb span{
  font-size: 16px;
  font-weight: 500;
  color: #424143;
}

.custom-breadcrumb a{
  text-decoration: underline;
  font-size: 16px;
  font-weight: 500;
  color: #424143;
}

/* HEADER --------------------------*/

header{
  right: 0;
  top: 0;
  z-index: 9;
  position: relative;
}

header .header-desktop{
  display: none;
  flex: none;
  height: auto;
  z-index: 1;
  width: 100%;
  background-color: #FCFCFC;
  padding: 71px 139px;
  box-shadow: 2.64px 2.64px 5.28px 0px rgba(0, 0, 0, 0.5);
}

header .header-desktop .content-header{
  width: 100%;
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 33px;
  flex-wrap: nowrap;
  height: min-content;
  justify-content: center;
  overflow: visible;
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

header .content-header a{
  display: flex;
  width: fit-content;
}

header .content-header a.logo svg{
  width: 81px;
  height: 18px;
}

header .header-desktop .content-nav{
  display: flex;
  align-items: center;
  flex: 1 0 0px;
  flex-direction: row;
  gap: 10px;
  height: min-content;
  justify-content: center;
  overflow: visible;
  padding: 0;
}

header .header-desktop .content-nav nav{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex: 1 0 0px;
}

header .header-desktop .content-nav ul{
  display: flex;
  list-style: none;
  gap: 32px;
}

header .header-desktop .content-nav ul.sub-menu{
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 69px 32px 27px;
  border-radius: 30px;
  position: absolute;
  top: -27px;
  left: -32px;
  z-index: 9;
  border: 2px solid var(--bleu);
  background-color: #fff;
}

header .header-desktop .content-nav ul li.menu-item-has-children:hover ul.sub-menu{
  display: flex;
  width: 400%;
  min-width: 500px;
}

header .header-desktop .content-nav ul li.menu-item-has-children{
  position: relative;
}

header .header-desktop .content-nav ul li.menu-item-has-children:hover a{
  z-index: 9999;
  position: relative;
}

header .header-desktop .content-nav li a{
  display: flex;
  font-weight: 500;
  line-height: 1em;
  text-align: center;
  color: var(--bleu);
  font-family: var(--wp--preset--font-family--montserrat) !important;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
}

header .header-desktop .content-nav .search-wrapper .search-input .search-content{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 20px;
  position: relative;
  z-index: 9999;
}

header .header-desktop .content-nav .search-wrapper{
  position: relative;
  z-index: 1;
}

header .header-desktop .content-nav .search-wrapper .search-input .search-results {
  display: none;
  padding: 69px 32px 27px;
  background-color: #D9D9D9;
  border-radius: 30px;
  position: absolute;
  top: -27px;
  left: -32px;
  z-index: 9;
  width: calc(100% + 64px);
}

header .header-desktop .content-nav .search-wrapper .search-input .search-results ul {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

header .header-desktop .content-nav .search-wrapper .search-input .search-results li {
  width: fit-content;
  cursor: pointer;
}

header .header-desktop .content-nav .search-wrapper .search-input .search-results li a {
  font-family: var(--wp--preset--font-family--montserrat) !important;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: var(--bleu);
  cursor: pointer;
  padding: 8px 29px;
  background-color: var(--blanc);
  border-radius: 54px;
  transition: all .3s ease;
}

header .header-desktop .content-nav .search-wrapper .search-input .search-results li a:hover{
  background-color: var(--bleu);
  color: var(--blanc);
  transition: all .3s ease;
}

header .header-desktop .content-nav .search-wrapper .search-input .search-results p{
  color: var(--bleu);
  font-family: var(--wp--preset--font-family--montserrat) !important;
  font-weight: 500;
  font-size: 20px;
  line-height: 1em;
}

header .header-desktop .content-nav .search-wrapper .search-input .search-icon{
  display: flex;
}

header .header-desktop .content-nav .search-wrapper .search-input .search-icon svg{
  width: 16px;
  height: 16px;
}

header .header-desktop .content-nav .search-wrapper .search-input input{
  background: transparent;
  border: none;
  outline: none;
  color: var(--bleu);
  font-family: var(--wp--preset--font-family--montserrat) !important;
  font-weight: 500;
  font-size: 18px;
  line-height: 1em;
  width: 100%;
}

header .header-desktop .content-nav .search-wrapper .search-input input::placeholder{
  color: var(--bleu);
  font-family: var(--wp--preset--font-family--montserrat) !important;
  font-weight: 500;
  font-size: 18px;
  line-height: 1em;
}

header .header-desktop .content-nav ul li.menu-item-has-children ul.sub-menu li{
  width: fit-content;
}

header .header-desktop .content-nav ul li.menu-item-has-children ul.sub-menu li a{
  font-family: var(--wp--preset--font-family--montserrat) !important;
  line-height: 100%;
  color: var(--bleu);
  cursor: pointer;
  padding: 8px 29px;
  background-color: var(--blanc);
  border-radius: 54px;
  transition: all .3s ease;
  border: 1px solid var(--bleu);
  font-weight: 700;
}

header .header-desktop .content-nav ul li.menu-item-has-children ul.sub-menu li a:hover{
  background-color: var(--bleu);
  color: var(--blanc);
  transition: all .3s ease;
}

header .header-desktop .content-nav .search-wrapper .search-input

header .header-desktop .content-nav .content-contact{
  display: flex;
  align-items: center;
  flex: 1 0 0px;
  flex-direction: row;
  gap: 10px;
  height: min-content;
  justify-content: flex-end;
  overflow: visible;
  padding: 0;
}

header .header-desktop .content-nav .content-contact a.btn-whatsapp{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bleu);
  border-radius: 50%;
  color: #fff;
  height: 50px;
  width: 50px;
}

header .header-desktop .content-nav .content-contact a.btn-whatsapp svg{
  width: 25px;
  height: 25px;
}

header .header-mobile{
  width: 100%;
}

header .header-mobile .content-header{
  display: flex;
  flex: none;
  height: auto;
  z-index: 1;
  width: 100%;
  background-color: #FCFCFC;
  padding: 20px;
  box-shadow: 2.64px 2.64px 5.28px 0px rgba(0, 0, 0, 0.5);
  position: relative;
}

header .header-mobile .content-header .top-header{
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  align-items: center;
}

header .header-mobile .content-header .top-header a.logo{
  padding: 12px 0;
}

header .header-mobile .content-header .top-header a.logo svg{
  width: 81px;
  height: 18px;
}

header .header-mobile .content-header .top-header svg{
  width: 46px;
  height: 30px;
}

header .header-mobile .content-nav {
  position: absolute;
  max-width: 100%;
  z-index: 4;
  top: 0;
  left: 0;
  flex-direction: column;
  padding: 48px 15px;
  max-height: 0;  /* Début caché */
  overflow: hidden;
  width: 100%;
  display: none;
  gap: 25px;
  transition: max-height 0.5s ease-in-out; /* Transition plus fluide */
  background: white;
  height: 100vh;
}

header .header-mobile .content-nav.active{
  max-height: 100vh;
  display: flex;
}

header .header-mobile .content-nav .close{
  display: block;
  position: absolute !important;
  top: 10px;
  color: black;
  right: 20px;
  cursor: pointer;
  font-weight: 300;
  line-height: 1em;
  text-align: center;
  font-family: var(--wp--preset--font-family--montserrat) !important;
  font-size: 25px;
  text-decoration: none;
}

header .header-mobile .lang-switcher{
  position: relative;
}

header .header-mobile .lang-switcher .list-lang{
  display: none!important;
}

header .header-mobile .lang-switcher .list-lang.active{
  display: flex!important;
}

header .header-mobile .lang-switcher .list-lang{
  flex-direction: column;
  gap: 20px!important;
  padding: 12px 12px;
  border-radius: 10px;
  background-color: #CED2D6;
  position: absolute;
  top: 0;
}

header .header-mobile .lang-switcher .flag-alone li:not(.current-lang){
  display: none;
}

header .header-mobile .lang-switcher .flag-alone li.current-lang{
  padding: 12px 12px;
  cursor: pointer;
}

header .header-mobile .lang-switcher li{
  list-style: none;
}

header .header-mobile .lang-switcher li a img{
  width: 30px!important;
  height: 24px!important;
}

header .header-mobile .content-nav nav{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex: 1 0 0px;
  margin-top: 33px;
}

header .header-mobile .content-nav ul{
  display: flex;
  list-style: none;
  flex-direction: column;
  gap: 32px;
}

header .header-mobile .content-nav li a{
  display: flex;
  font-size: 15px;
  font-weight: 500;
  line-height: 1em;
  text-align: center;
  color: var(--noir);
  text-decoration: none;
}

header .header-mobile .content-nav .content-contact{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

header .header-mobile .content-nav .content-contact .bulle,
header .header-mobile .content-nav .content-contact .bulle a{
  width: 100%;
  font-size: 20px;
  align-items: center;
  gap: 15px;
}

header .header-mobile .content-nav .content-contact .bulle a svg{
  width: 25px;
}

header .header-mobile .content-nav .search-wrapper{
  background-color: #D9D9D9;
  border: none !important;
  padding: 15px 25px !important;
  border-radius: 20px !important;
  outline: none;
}

header .header-mobile .content-nav .search-wrapper .search-input .search-content{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

header .header-mobile .content-nav .search-wrapper .search-input{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

header .header-mobile .content-nav .search-wrapper .search-input .search-icon{
  display: flex;
  align-items: center;
}

header .header-mobile .content-nav .search-wrapper .search-input .search-icon svg{
  width: 20px;
  height: 20px;
}

header .header-mobile .content-nav .search-wrapper .search-input input{
  background: transparent;
  border: none;
  outline: none;
  color: var(--bleu);
  font-family: var(--wp--preset--font-family--montserrat) !important;
  font-weight: 300;
  font-size: 18px;
  line-height: 1em;
  width: 100%;
}

header .header-mobile .content-nav .search-wrapper input::placeholder{
  color: var(--bleu);
  font-family: var(--wp--preset--font-family--montserrat) !important;
  font-weight: 300;
  font-size: 18px;
  line-height: 1em;
}

header .header-mobile .content-nav .menu{
  display: flex;
  flex-direction: column;
  gap: 25px;
}

header .header-mobile .content-nav .menu .sub-menu {
  display: none;
  margin-top: 15px;
  list-style: none;
  flex-direction: column;
  gap: 15px;
}

header .header-mobile .content-nav .menu .sub-menu.active {
  display: flex;
}

header .header-mobile .content-nav .menu > li {
  background-color: #D9D9D9;
  border: none !important;
  padding: 15px 25px !important;
  border-radius: 20px !important;
  outline: none;
}

header .header-mobile .content-nav .menu > li > a{
  color: var(--bleu);
  font-family: var(--wp--preset--font-family--montserrat) !important;
  font-weight: 300;
  font-size: 18px;
  line-height: 1em;
  width: 100%;
}

header .header-mobile .content-nav .menu > li.menu-item-has-children > a::before{
  content: url('assets/svg/chevron-bas.svg');
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  height: 14px;
  width: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
  cursor: pointer;
}

header .header-mobile .content-nav .menu > li.menu-item-has-children > a{
  position: relative;
}

header .header-mobile .content-nav .menu .sub-menu > li{
  width: fit-content;
}

header .header-mobile .content-nav .menu .sub-menu > li > a{
  font-family: var(--wp--preset--font-family--montserrat) !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: var(--bleu);
  cursor: pointer;
  padding: 8px 18px;
  background-color: var(--blanc);
  border-radius: 54px;
  transition: all .3s ease;
}

header .header-mobile .content-nav .menu .sub-menu > li > a:hover{
  background-color: var(--bleu);
  color: var(--blanc);
  transition: all .3s ease;
}

header .header-mobile .content-nav .search-wrapper{
  position: relative;
  width: 100%;
}

header .header-mobile .content-nav .search-wrapper .search-input .search-results {
  display: none;
}

header .header-mobile .content-nav .search-wrapper .search-input .search-results ul {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px;
}

header .header-mobile .content-nav .search-wrapper .search-input .search-results li {
  width: fit-content;
  cursor: pointer;
}

header .header-mobile .content-nav .search-wrapper .search-input .search-results li a {
  font-family: var(--wp--preset--font-family--montserrat) !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: var(--bleu);
  cursor: pointer;
  padding: 8px 18px;
  background-color: var(--blanc);
  border-radius: 54px;
  transition: all .3s ease;
}

header .header-mobile .content-nav .search-wrapper .search-input .search-results li a:hover{
  background-color: var(--bleu);
  color: var(--blanc);
  transition: all .3s ease;
}

header .header-mobile .content-nav .search-wrapper .search-input .search-results p{
  color: var(--bleu);
  font-family: var(--wp--preset--font-family--montserrat) !important;
  font-weight: 300;
  font-size: 18px;
  line-height: 1em;
}

.img-laureat img{
  width: 150px !important;
}

.img-avis img{
  width: 200px !important;
}

/* FOOTER --------------------------*/

footer{
  background: linear-gradient(358.26deg, #0046FD -39.11%, #1D5BFC -1.42%, #6A93FB 79.77%, #E3EAF9 198.65%, #EDF2F9 210.25%);
}

footer .footer-top{
  background: rgba(237, 242, 249, 1);
  padding: 20px;
  border-radius: 0 0 25px 25px;
}

footer .footer-bottom{
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer .footer-bottom .menu-footer{
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

footer .footer-bottom .menu-footer .part-menu{
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

footer .footer-bottom .menu-footer .part-menu h3{
  font-family: var(--wp--preset--font-family--montserrat) !important;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: white;
}

footer .footer-bottom .menu-footer .part-menu .list-liens{
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

footer .footer-bottom .menu-footer .part-menu .list-liens a{
  font-family: var(--wp--preset--font-family--montserrat) !important;
  font-weight: 300;
  font-size: 18px;
  line-height: 36px;
  color: white;
}

footer .footer-bottom .logo-footer{
  display: flex;
  justify-content: center;
}

footer .footer-bottom .logo-footer a{
  display: flex;
}

footer .footer-bottom .logo-footer a figure{
  margin-top: 20px;
}

footer .footer-bottom .logo-footer a figure img{
  width: 180px;
}

footer .footer-bottom .reseaux-sociaux{
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}


footer .footer-bottom .reseaux-sociaux a{
  display: flex;
}

footer .footer-bottom .reseaux-sociaux a img{
  width: 24px;
}

footer .footer-bottom .copyright{
  display: flex;
  justify-content: center;
}

footer .footer-bottom .copyright span{
  font-family: var(--wp--preset--font-family--montserrat) !important;
  font-weight: 300;
  font-size: 14px;
  color: white;
  text-align: center;
}

.custom-breadcrumb .yoast-breadcrumbs{
  max-width: unset !important;
}

@media screen and (max-width: 992px) and (min-width: 600px){
  .grid-2-tablet ul{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 992px){
  h1{
    font-size: 36px !important;
  }

  h2{
    font-size: 36px !important;
  }

  .archive h2{
    font-size: 24px !important;
  }

  .p-0-mob{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .pt-0{
    padding-top: 0 !important;
  }

  .meilleurs-articles-wrapper{
    margin-top: 40px !important;
  }

  .m-0-auto{
    margin: 0 auto !important;
  }

  body.single .wrapper-post{
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 0 !important;
  }

  body.single .wrapper-post > .wp-block-columns{
    margin-top: 30px !important;
    flex-direction: column;
  }

  .p-lr-0{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .wrapper-toc{
    padding:20px 30px !important;
  }

  body.single h1{
    font-size: 36px !important;
  }

  body.single h1 + div time{
    font-size: 25px !important;
  }

  body.single .banner-home{
    padding-top: 40px !important;
  }

  body.single .wrapper-post{
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  body.single .sidebar-wrapper h2{
    margin-top: 20px !important;
  }

  body.single .sidebar-wrapper p{
    margin-top: 20px !important;
  }

  .titre-aller-plus-loin{
    font-size: 42px !important;
  }

  .essayer-btn a{
    font-size: 20px !important;
  }
}

@media screen and (min-width: 576px){
  .outil-slick-wrapper .custom-arrow-prev{
    left:-10px;
  }

  .outil-slick-wrapper .custom-arrow-next{
    right:-10px;
  }
}

@media screen and (min-width: 992px){
  header{
    min-height: 84px;
  }

  header .header-mobile{
    display: none;
  }

  header .header-desktop{
    display: flex;
    padding: 20px 60px;
  }

  header .content-header a.logo svg{
    width: 139px;
    height: 50px;
  }

  header .header-desktop .content-header{
    justify-content: space-between;
  }

  header .header-desktop .content-nav .content-contact{
    justify-content: unset;
  }

  header .header-desktop .content-nav{
    flex: unset;
    gap: 20px;
  }

  header .header-desktop .content-nav ul{
    gap: 20px;
  }

  header .content-header a.btn{
    font-weight: 500;
    line-height: 1em;
    text-align: center;
    font-family: var(--wp--preset--font-family--montserrat) !important;
    font-size: 16px;
    justify-content: center;
    align-items: center;
  }

  header .content-header a.btn svg{
    width: 18px;
  }

  header .lang-switcher{
    position: relative;
  }

  header .lang-switcher .list-lang{
    display: none!important;
  }

  header .lang-switcher:hover .list-lang{
    display: flex!important;
  }

  header .lang-switcher .list-lang{
    flex-direction: column;
    gap: 20px!important;
    padding: 12px 12px;
    border-radius: 10px;
    background-color: #CED2D6;
    position: absolute;
    top: 0;
  }

  header .lang-switcher .flag-alone li:not(.current-lang){
    display: none;
  }

  header .lang-switcher .flag-alone li.current-lang{
    padding: 12px 12px;
    cursor: pointer;
  }

  header .lang-switcher li{
    list-style: none;
  }

  header .lang-switcher li a img{
    width: 30px!important;
    height: 24px!important;
  }

  header .header-desktop .content-nav ul li.menu-item-has-children:hover ul.sub-menu{
    width: 200%;
    min-width: 360px;
  }

  body.single .sidebar-wrapper{
    position: sticky;
    top: 110px;
    left: 0;
  }

  footer .footer-top{
    padding: 44px;
  }

  footer .footer-bottom{
    padding: 50px 30px 30px;
    gap: 50px;
  }

  footer .footer-bottom .logo-footer a figure{
    margin-top: 60px;
  }

  footer .footer-bottom .reseaux-sociaux{
    gap: 20px;
  }

  footer .footer-bottom .menu-footer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: flex-start;
  }

}


@media screen and (min-width: 1200px){
  header .header-desktop .content-nav{
    flex: unset;
    gap: 70px;
  }

  header .header-desktop .content-nav ul{
    gap: 50px;
  }
}

@media screen and (min-width: 1800px){
  .outil-slick-wrapper .custom-arrow-prev{
    left:-60px;
  }

  .outil-slick-wrapper .custom-arrow-next{
    right:-60px;
  }
}


@media screen and (min-width: 1920px){
  header .header-desktop .content-nav ul{
    gap: 50px;
  }

  header .header-desktop .content-nav ul li.menu-item-has-children:hover ul.sub-menu{
    width: 400%;
    min-width: 500px;
  }
}


