#oeuvre
{
  font-family: "Quicksand", sans-serif;
  font-size: calc(15px + 0.390625vw);
  background-color: #fff8e16b;
}

#oeuvre .bandeau-titre
{
  position: relative;
  font-family: "Quicksand", sans-serif;
  font-size: calc(40px + 0.390625vw);
  text-align: center;
  color: white;
}

#oeuvre .bandeau-titre .texte
{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#oeuvre .bandeau-titre img { width: 100%; vertical-align: middle; }

#oeuvre .oeuvre-contenu { padding: 0; }


/*******************************/
/*** INSPIRATION ***/
/*******************************/

#oeuvre #inspiration
{
  display: grid;
  grid-template-rows: repeat(1, 1fr);
  grid-template-columns: repeat(2, 1fr);
  padding: 100px 8vw;
  background: #DFD0B8;
}

#oeuvre #inspiration .titre
{
  white-space: nowrap;
  font-family: "Quicksand", sans-serif;
  font-size: calc(30px + 0.390625vw);
  text-align: center;
  margin-bottom: 40px;
}

#oeuvre #inspiration .texte
{
  margin-left: 100px;
  text-align: justify;
}

#oeuvre #inspiration .image img 
{
  object-fit: cover;
  display: block;
  width: 100%;
}

@media all and (max-width: 1200px)
{
  #oeuvre #inspiration
  {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 8vw;
  }

  #oeuvre #inspiration .titre
  {
    white-space: nowrap;
    font-family: "Quicksand", sans-serif;
    font-size: calc(30px + 0.390625vw);
    text-align: center;
    margin-bottom: 40px;
  }

  #oeuvre #inspiration .texte
  {
    margin-left: 0;
    margin-top: 10px;
    text-align: justify;
  }

  #oeuvre #inspiration .image img 
  {
    object-fit: cover;
    display: block;
    width: 100%;
  }
}

/*******************************/
/*** DANSES ***/
/*******************************/

#oeuvre #danses
{
  position: relative;
}

#oeuvre #danses .presentation
{
  font-size: calc(30px + 0.390625vw);
  font-weight: bold;
}

#oeuvre #danses .liste
{
  
}

#oeuvre #danses img { width:100%; }

#oeuvre #danses .contenu
{
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  grid-template-rows: repeat(1, 1fr);
  grid-template-columns: repeat(2, 1fr);
}

#oeuvre #danses .col1
{
  padding: 100px;
}

@media all and (max-width: 1200px)
{
  #oeuvre #danses
  {
    position: relative;
  }
  
  #oeuvre #danses .presentation
  {
    font-size: calc(30px + 0.390625vw);
    font-weight: bold;
  }
  
  #oeuvre #danses .liste
  {
    
  }
  
  #oeuvre #danses img { display: none; }
  
  #oeuvre #danses .contenu
  {
    position: inherit;
    display: flex;
    flex-wrap: wrap;
  }
  
  #oeuvre #danses .col1
  {
    padding: 100px;
  }
}

/*******************************/
/*** PROGRAMME ***/
/*******************************/

#oeuvre #programme
{
  padding: 100px;
  text-align: center;
}

#oeuvre #programme .titre
{
  font-size: calc(30px + 0.390625vw);
  margin-bottom: 50px;
  font-weight: bold;

}

#oeuvre #programme .liste ul
{
  list-style: none;
  padding: 0;
}

#oeuvre #programme .compositeur
{
  font-weight: bold;
}

#oeuvre #programme .compositeur .orchestrateur
{
  font-weight: normal;
  font-style: italic;
}

