/*
Theme Name: Dsbd
Author: David DI SAN BONIFACIO
Author URI: https://dsbd.fr
Description: Thème créé par l'agence Dsbd
Requires at least: WordPress 5.0
Version 1.0
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	0. 	CSS Reset
	1. 	Document Setup
	2. 	Element Base
	3.	Site Header
    4.  Site Footer		
	7. 	Page Home
	8.	Page Archives Woocommerce
	9.	Page Single Product Woocommerce
	14.	Cart
	15.	Cart checkout
	17.	Search template
	18. Error 404
	19. Site Footer
	20. Responsivity / Media Queries

----------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */

/*	0. CSS Reset
/* -------------------------------------------------------------------------- */

/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
    box-sizing: border-box;
  }
  /*
    2. Remove default margin
  */
  * {
    margin: 0;
  }
  /*
    Typographic tweaks!
    3. Add accessible line-height
    4. Improve text rendering
  */
  body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }
  /*
    5. Improve media defaults
  */
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    width: 100%;
  }
  /*
    6. Remove built-in form typography styles
  */
  input, button, textarea, select {
    font: inherit;
  }
  /*
    7. Avoid text overflows
  */
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    margin-bottom: 0;
  }
  /*
    8. Create a root stacking context
  */
  #root, #__next {
    isolation: isolate;
  }


/*------------------------------------------------------------------
# Font face
-------------------------------------------------------------------**/

@font-face {
    font-family: 'Ubuntu';
    src: url('/wp-content/themes/dsbd/fonts/Ubuntu/Ubuntu-Regular.ttf') format('ttf'),
}

/*------------------------------------------------------------------
# Variables
-------------------------------------------------------------------**/

/* Variables pour les couleurs */
:root {
    --clr-primary: #f7a920;
    --clr-secondary: #6c757d;
    --background-color: #f8f9fa;
    --clr-gradient: linear-gradient(90deg, #ef8e29 , #fbcc0f);
    --text-color: #333;
  }
  
/* Variables pour les polices */
:root {
    --main-font: "Libre Baskerville", serif;
    --heading-font: 'Abril Fatface', sans-serif;
}

/*------------------------------------------------------------------
# Typography
-------------------------------------------------------------------**/

body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4,
body.dark h5,
body.dark h6,
body.dark p {
    color: #fff
}

h1.big-title {
    font-size: 90px;
    font-style: normal;
    font-weight: 700;
    line-height: 100px;
    margin-left: -7px;
    margin-top: 20px;
    margin-bottom: 69px;
    padding-right: 10px;
}


h1 {
    font-size: 3.5rem;
    line-height: 120%;
    font-weight: bold;
    font-family: "Rubik", serif;
}

h2 {
    font-size: 3rem;
    line-height: 120%;
    font-weight: bold;
    font-family: "Rubik", serif;
}

h3 {
    font-size: 2.5rem;
    line-height: 120%;
    font-weight: bold;
}

h4 {
    font-size: 2rem;
    line-height: 130%;
    font-weight: bold;
}

h5 {
    font-size: 1.5rem;
    line-height: 140%;
    font-weight: bold;
}

h6 {
    font-size: 1rem;
    line-height: 150%;
    font-weight: bold;
}

p {
  line-height: 28px;
  margin-bottom: 1rem;
}


@media screen and (max-width: 770px) {
  h1 {
    font-size: 2.5rem;
    line-height: 120%;
    font-weight: bold;
  }

  h2 {
      font-size: 2.25rem;
      line-height: 120%;
      font-weight: bold;
  }

  h3 {
      font-size: 2rem;
      line-height: 120%;
      font-weight: bold;
  }

  h4 {
      font-size: 1.5rem;
      line-height: 120%;
      font-weight: bold;
  }

  h5 {
      font-size: 1.25rem;
      line-height: 140%;
      font-weight: bold;
  }

  h6 {
      font-size: 1.125rem;
      line-height: 140%;
      font-weight: bold;
  }

  p {
    font-size: 1rem;
    line-height: 140%;
}

}

a{
    color: inherit;
    text-decoration: none;
}

a:hover{
    color: inherit;
}

img{
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover;
    shape-margin: 0.75rem;
}

section{
  position: relative;
}

/*------------------------------------------------------------------
# Google fonts
-------------------------------------------------------------------**/

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

/*------------------------------------------------------------------
# Header
-------------------------------------------------------------------**/

header.transparent{
  position: absolute;
  width: 100%;
  background-color: transparent;
  z-index: 9999999;
  color: white;
}

header.transparent .sub-menu{
  color: black;
}

header.sticky .header-menu ul li{
  height: 60px;
}

header.sticky .header-menu ul .tickets{
  height: max-content;
} 

header.sticky .header-menu ul .menu-item-has-children:hover .sub-menu{
  top: 60px;
}

@media screen and (max-width: 770px){
  header.sticky .header-menu ul li{
    height: auto;
  }
}


/*------------------------------------------------------------------
# Menu
-------------------------------------------------------------------**/

.header-menu{
    height: 100%;
}

/**** Desktop ****/

.desktop-menu .sub-menu{
  display: none;
  position: absolute;
  background: rgba(255, 255, 255, 1);
  width: 100vw;
  left: 0;
  top: 70px;
  opacity: 0;
  transition: all 0.2s ease-in;
}

.admin-bar .desktop-menu .sub-menu{
  top: calc(70px);
}

.admin-bar.home .desktop-menu .sub-menu{
  top: calc(70px);
}

.header-menu.desktop-menu .header-menu{
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  margin: 0;
}

.header-menu.desktop-menu  #menu-header{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.header-menu.desktop-menu ul li{
  margin: auto 2rem;
  font-size: 0.9rem;
  padding: 0;
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 0 1rem;
  height: 70px;
  display: flex;
  align-items: center;
}

.header-menu.desktop-menu.highlight-background {
  background-color: white;
  color: black;
}

.header-menu.desktop-menu .menu-item-has-children::after{
  content: '';
  border: solid black;
  border-width: 0 2px 2px 0;
  padding: 2px;
  display: inline;
  margin-left: 0.5rem;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform-origin: center;
  transition: transform 0.2s ease-in-out;
}

.header-menu.desktop-menu ul .menu-item-has-children:hover::after{
  transform: rotate(135deg);
  -webkit-transform: rotate(-135deg);
  transition: transform 0.2s ease-in-out;
}

header.transparent .header-menu.desktop-menu .menu-item-has-children::after{
  content: '';
  border: solid white;
  border-width: 0 2px 2px 0;
  padding: 2px;
}

header.transparent.sticky .header-menu.desktop-menu .menu-item-has-children::after,
header.transparent .header-menu.desktop-menu.highlight-background .menu-item-has-children::after{
  content: '';
  border: solid black;
  border-width: 0 2px 2px 0;
  padding: 2px;
}


.header-menu.desktop-menu ul .menu-item-has-children:hover .sub-menu{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 1.5rem 5%;
  z-index: 9999;
  opacity: 1;
  transition: all 0.2s ease-in-out;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100vw;
  gap: 20px;
}

.header-menu.desktop-menu ul .menu-item-has-children:hover .sub-menu li{
  height: 100%;
  margin: 0;
}

.header-menu.desktop-menu .sub-menu a{
  display: flex;
  transition: all 0.2s ease-in;
  height: 100%;
}

.header-menu .sub-menu a .menu-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 1rem;
  font-weight: 700;
  flex-basis: 120%;
}

.header-menu.desktop-menu .sub-menu li a .menu-thumbnail{
  flex-basis: 80%;
}

.header-menu.desktop-menu .sub-menu li a .menu-thumbnail img{
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
  height: 100%;
}

.header-menu.desktop-menu .sub-menu a .menu-content .menu-excerpt{
  margin-top: 0.2rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.header-menu.desktop-menu .logo{
  margin-top: -10px;
  width: 150px;
}

.mobile-menu-nav .logo{
  width: 80px !important;
}

.header-menu.desktop-menu #menu-menu-principal{
  display: flex;
  margin-bottom: 0;
}

/**** Sticky ****/

header.sticky{
  position: fixed;
  background: white;
  color: black;
  width: 100vw;
  z-index: 999999;
}

header.sticky .header-menu.desktop-menu .sub-menu{
  top: 80px;
}

@media screen and (max-width: 770px){

  .header-menu.mobile-menu li{
    padding: 0;
    list-style: none;
  }
  
  .menu-item-has-children::after{
    
  }

  .header-menu.mobile-menu ul{
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .header-menu.mobile-menu ul li{
    height: auto;
  }

  .header-menu.mobile-menu .sub-menu {
    display: none;
  }

  .header-menu.desktop-menu{
    display: none;
  }

}

/**** Mobile ****/

/* Styles pour l'icône burger et la croix */
.burger-icon,
.close-icon {
  cursor: pointer;
}

.close-icon {
  display: none;
  position: absolute;
  z-index: 9;
  right: 1rem;
  top: 30px;
}

.mobile-menu{
    display: none;
    position: absolute;
    left: 0;
    max-height: 100vh;
    overflow-y: auto;
    width: 100vw;
    list-style: none;
    background: white;
    z-index: 99;
    top: 110px;
    height: max-content;
}

.mobile-menu.active{
    display: flex;
    justify-content: center;
}

.mobile-menu.active + .mobile-menu-toggle .burger-icon {
  display: none; /* Masquer l'icône burger lorsque le menu est ouvert */
}

.mobile-menu.active + .mobile-menu-toggle .close-icon {
  display: block; /* Afficher la croix lorsque le menu est ouvert */
}

/* Styles pour les trois barres de l'icône burger */
.burger-icon .bar,
.close-icon .bar {
  width: 30px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: transform 0.3s; /* Animation de rotation pour la croix */
}
.close-icon .bar:nth-child(1) {
  transform: rotate(45deg);
}
.close-icon .bar:nth-child(2) {
  transform: rotate(-45deg);
}

/* -------------------------------------------------------------------------- */

/*	Infos banner
/* -------------------------------------------------------------------------- */

.infos-banner{
  width: 100%;
  position: relative;
  background-color: black;
  color: white;
  text-align: center;
}

/* -------------------------------------------------------------------------- */

/*	Bootstrap reset
/* -------------------------------------------------------------------------- */

.rounded-5{
  border-radius: 0.5rem;
}

.card{
  border: none;
}

.mb-6{
  margin-bottom: 8rem !important;
}

/* -------------------------------------------------------------------------- */

/*	Components
/* -------------------------------------------------------------------------- */

.button{
  /* border-radius: 30px; */
  padding: 0.5rem 1.2rem !important;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: 0.2s all ease-in-out;
  width: max-content;
  font-weight: 500;
  height: max-content !important;
}

.button.line{
  border: 1px solid white;
  color: white;
}

.button.line:hover{
  border: 1px solid white;
  color: var(--clr-primary);
  background-color: white;
}

.button.full{
  background-color: var(--clr-primary);
  border: 1px solid var(--clr-primary);
  transition: 0.2s all ease-in-out;
  color: white;
}

.button.empty{
  background: white;
  backdrop-filter: blur(1px);
  transition: 0.2s all ease-in-out;
  border: 1px solid transparent;
  color: var(--clr-primary);
}

.button:hover{
  transform: scale(1.05);
  border: 1px solid transparent;
  color: inherit;
  transition: 0.2s all ease-in-out;
  color: white;
}

.button.empty:hover{
  color: var(--clr-primary);
}

.button.link{
  border-radius: 0;
  padding: 0;
  color: inherit;
  padding-right: 30px !important;
}

.button.link::after{
  content: '\003E';
  padding-left: 5px;
  color: inherit;
  transition: all 0.2s ease-in-out;
  position: absolute;
  right: 15px;
}

.button.link:hover{
  border: none;
  transform: scale(1);
  text-decoration: underline;
}

.button.link:hover::after{
  transition: all 0.2s ease-in-out;
  right: 10px;
  text-decoration: none;
}

.card.box-shadow-light{
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.2);
}

.card.box-shadow-spread{
  box-shadow: 0 0 50px 0px rgba(0, 0, 0, 0.1);
}

.text-white{
  color: white;
}

.bg-cover{
  background-size: cover;
}

.bg-center{
  background-position: center;
}

.fit-cover{
  object-fit: cover;
}

.overlay{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  opacity: 0.3;
  transition: 0.2s all ease-in-out;
}

.z-index-9{
  z-index: 9;
}

.arrow {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.arrow .right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.arrow .left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.arrow .up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.arrow .down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.sticky-100{
  position: sticky;
  height: max-content;
  top: 100px;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  background-color: transparent;
  border-bottom: 1px solid #333;  
  border-radius: 0;
  color: #333;
}

.tag{
  background: #f1f1f1;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.7rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  display: block;
  width: max-content;
  height: max-content;
  flex: none;
}

.date{
  font-size: 0.8rem;
}

.separator:last-child{
  display: none;
}

.btn-rounded{
  width: max-content; 
  border : 1px solid black;
  border-radius: 20px;
  background-color: transparent;
  transition: all 200ms ease-in-out;
}

.btn-rounded:hover{
  width: max-content; 
  border : 1px solid black;
  background-color: black;
  border-radius: 20px;
  color: white;
  transition: all 200ms ease-in-out;
}

.btn-rounded.active{
  background-color: black;
  color: white;
}

/* -------------------------------------------------------------------------- */

/*	Swiper reset
/* -------------------------------------------------------------------------- */

.swiper-wrapper{
  box-sizing: inherit;
}

.swiper-slide.col-10{
  width: 80%;
}

.swiper-button-next, .swiper-button-prev{
  color: black;
}

.swiper-button-next::after, .swiper-button-prev::after{
  font-size: 1.2rem;
}

@media screen and (min-width: 768px){
  .swiper-slide.col-md-3{
    width: 30%;
  }
}

/* -------------------------------------------------------------------------- */

/*	Hero
/* -------------------------------------------------------------------------- */

.hero{
  height: 100vh;
  width: 100%;
}

.hero h1{
  font-size: clamp(2rem, 10vw, 4rem);
  text-transform: uppercase;
  font-weight: 400;
}

.hero video{
  object-fit: cover;
}

.hero .edito{
  z-index: 9;
  color: white;
}

.hero .subtitle{
  max-width: 500px;
  text-align: center;
  font-weight: 700;
}

/* -------------------------------------------------------------------------- */

/*	Text center
/* -------------------------------------------------------------------------- */

.text-center .top-title{
  width: max-content; 
  border : 1px solid black;
  border-radius: 20px;
}

/* -------------------------------------------------------------------------- */

/*	3 cards
/* -------------------------------------------------------------------------- */

.cards-3 .card{
  width: 100%;
  aspect-ratio: 1/1;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: 0.2s all ease-in-out;
}

.cards-3 .card .content{
  color: white;
  border-radius: 0 0 0.5rem 0.5rem;
  text-align: center;
}

.cards-3 .card:hover{
  transform: scale(1.03);
  transition: 0.2s all ease-in-out;
}

.cards-3 .card .content .title{
  transition: 0.2s all ease-in-out;
  position: absolute;
}

.cards-3 .card:hover .content .title{
  position: relative;
}

.cards-3 .card .text{
  visibility: hidden;
  margin: 0;
  opacity: 0;
  transition: 0.4s all ease-in-out;
}

.cards-3 .card .text.active{
  visibility: visible;
  opacity: 1;
  transition: 0.4s all ease-in-out;
}

.cards-3 .card .button{
  visibility: hidden;
  margin: 0;
  opacity: 0;
  transition: 0.4s all ease-in-out;
}

.cards-3 .card .button.active{
  visibility: visible;
  opacity: 1;
  transition: 0.4s all ease-in-out;
}

.cards-3 .overlay{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  opacity: 0.3;
  transition: 0.2s all ease-in-out;
}

.cards-3 .card.active .overlay{
  opacity: 0.6;
  transition: 0.2s all ease-in-out;
}

/* -------------------------------------------------------------------------- */

/*	2 cards
/* -------------------------------------------------------------------------- */

.cards-2 .card img{
  aspect-ratio: 16/10;
  object-fit: cover;
}

.cards-2 .card{
  height: 100%;
}

.cards-2 .card .button{
  margin-top: auto;
}

@media screen and (max-width: 770px){
  .cards-3 .row{
    flex-wrap: nowrap;
    overflow: scroll;
  }
}

/* -------------------------------------------------------------------------- */

/* Cards picto thirds
/* -------------------------------------------------------------------------- */

.cards-picto-third .picto{
  border-radius: 50%;
  height: max-content;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid black;
}

/* -------------------------------------------------------------------------- */

/*	Scrolling banner
/* -------------------------------------------------------------------------- */

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  /* -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent); */
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

.tag-list {
  margin: 0;
  padding-inline: 0;
  list-style: none;
}

.tag-list li{
  font-size: 3.5rem;
  font-weight: bold;
}

/* -------------------------------------------------------------------------- */

/*	Activities slider
/* -------------------------------------------------------------------------- */

@media screen and (max-width: 770px){
  .swiper-activities .heading{
    display: block !important;
  }
  .swiper-activities .button{
    position: relative !important;
    right: 0 !important;
  }
}

/* -------------------------------------------------------------------------- */

/*	CTA
/* -------------------------------------------------------------------------- */

.cta .container{
  z-index: 9;
}

.brachiosaure{
  mix-blend-mode: multiply;
  bottom: -60px;
  height: calc(100% + 20vw);
  max-height: calc(100% + 10rem);
  width: auto;
  left: -150px;
  opacity: 0.1;
}

/* -------------------------------------------------------------------------- */

/*	Carousel
/* -------------------------------------------------------------------------- */

.carousel .swiper-slide{
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 60%;
}
.carousel .swiper-slide.full{
  width: 100%;
}

.carousel .swiper-slide img{
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* -------------------------------------------------------------------------- */

/*	Long text
/* -------------------------------------------------------------------------- */

.long-text .sticky-100{
  position: sticky;
  top: 100px;
  height: max-content;
}

.long-text .amonite{
  position: absolute;
  bottom: -200px;
  width: 250px;
  mix-blend-mode: multiply;
  opacity: 0.2;
}

/* -------------------------------------------------------------------------- */

/*	Grid third
/* -------------------------------------------------------------------------- */

.grid-third .container{
  display: grid;
  grid-template-columns: 5fr 5fr 4fr;
  gap: 20px;
}

.grid-third .box-three{
  background-color: #f1f1f1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem;
  grid-column: 3;
  grid-row-start: 1;
}

@media screen and (max-width: 770px){
  .grid-third .container{
    display: block;
  }
}

/* -------------------------------------------------------------------------- */

/*	Illustration
/* -------------------------------------------------------------------------- */

.illustration{
  width: 100%;
  opacity: 0.2;
}

.illustration img{
  width: 400px;
  mix-blend-mode: multiply;
  opacity: 0.6;
}

.illustration.left img{
  margin-right: auto;
}

.illustration.center img{
  margin-left: auto;
  margin-right: auto;
}

.illustration.right img{
  margin-left: auto;
}

@media screen and (max-width: 770px){
  .illustration img{
    width: 200px;
  }
}

/* -------------------------------------------------------------------------- */

/*	Activities list
/* -------------------------------------------------------------------------- */

.activities-list .facetwp-selections ul{
  padding: 0;
}

.activities-list .facetwp-selections ul li{
  padding-bottom: 10px;
}

.activities-list .card h4{
  font-size: 1.3rem ;
}

.activities-list .active-filters{
  margin-bottom: 2rem;
  overflow: scroll;
}

.facetwp-selection-value{
  display: flex;
  margin-right: 1rem;
  background: #f1f1f1;
  padding: 0.4rem 1rem;
  border-radius: 1rem;
  white-space: nowrap;
}

.facetwp-selections .facetwp-selection-value{
  padding-right: 30px !important;
  background-position: right 10px center !important;
}

.facetwp-selection-label{
  display: none;
}

.post-container .post-content{
  overflow: hidden;
}

.post-hover-content{
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 500ms ease-in-out;
  pointer-events: none;
  background-color: var(--clr-primary);
}

.post-container .post-content:hover .post-hover-content{
  visibility: visible;
  transform: translateY(0);
  transition: all 500ms ease-in-out;
  pointer-events: all;
}

/* -------------------------------------------------------------------------- */

/*	Single activite
/* -------------------------------------------------------------------------- */

.single-activity .content-container{
  top: 100px;
  height: max-content;
}

/* -------------------------------------------------------------------------- */

/*	Scolaires list
/* -------------------------------------------------------------------------- */

.scolaires-list .public, .scolaires-list .themes{
  flex-grow: 2;
}

.scolaires-list .public select, .scolaires-list .themes select{
  width: 100%;
  height: 30px;
}



/* -------------------------------------------------------------------------- */

/*	Top-banner
/* -------------------------------------------------------------------------- */

.top-banner img{
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.top-banner .content{
  color: white;
}

.top-banner .overlay{
  width: 100%;
  height: 100%;
  background: linear-gradient(900deg, black, transparent);
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
}

.macaron{
  position: absolute;
  bottom: -75px;
  right: 20%;
  background: black;
  border: 8px solid white;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  width: 150px;
  color: white;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 600;
  text-wrap: balance;
  transform: rotate(-15deg);
}

.macaron p{
  font-size: 1.1rem;
  text-align: center;
}

/* -------------------------------------------------------------------------- */

/*	Footer
/* -------------------------------------------------------------------------- */

footer ul{
  list-style: none;
  padding: 0;
}

footer #menu-copyright-footer{
  display: flex;
}


footer #menu-copyright-footer li{
  margin: 0 0.5rem;
}

footer .email{
  flex-grow: 1;
  margin-right: 1rem;
}

footer ul li{
  padding-bottom: 0.5rem;
  font-size: 0.8rem;
}

footer .optin{
  font-size: 12px;
  line-height: 150%;
}

footer .divider{
  border-top: 1px solid black;
}

footer .copyright{
  font-size: 0.9rem;
}

@media screen and (max-width:770px) {
  footer #menu-copyright-footer{
    flex-direction: column;
  }
  footer .copyright{
    flex-direction: column;
  }
  footer .copyright p{
    order: 2;
  }
}
