.body-cours {
	margin-top: 200px;
  background-image:url('./../img/texture-home.jpg') !important;
  background-size: cover;
  background-position: 50% 25%;
  
/*  this is where the magic happens:  */
  background-attachment: fixed;
  margin-bottom: 2rem;
}

.collapsible {
  background-color: #00CED1;
  color: white;
  font-family: Lucida Handwriting;
  font-weight: bold;
  cursor: pointer;
  padding: 18px;
  border: none;
  text-align: left;
  outline: none;
  font-size: 30px;
  -webkit-box-shadow: 0px 29px 38px -15px rgba(0,0,0,0.43);
  -moz-box-shadow: 0px 29px 38px -15px rgba(0,0,0,0.43);
  box-shadow: 0px 29px 38px -15px rgba(0,0,0,0.43);
  margin: 2rem 5rem 0rem 5rem;
  padding: 1rem;
  border-radius: .2em;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

.collapsible:hover {
  background-color: #333;
  opacity: 0.9;
}
.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.content {
  flex-flow: row nowrap;
  padding: 1rem;
  margin: 0rem 5rem 1rem 5rem;
  display: none;
  overflow: hidden;
  background-color: white;
  border-bottom-left-radius: .2em;
  border-bottom-right-radius: .2em;
}

.content img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  background-color: #333;
  margin: 0.2em;  
  margin-right: 1rem;
}

.descriptif {
  display:flex;
  flex-flow: column nowrap;
  font-size: 25px;
}

.subtitle-description{
  color: #00CED1;
  font-weight: bold;
  margin-right: 8px;
}

.div-descr {
  margin-bottom: 20px;
}

.icon-collapse {
  color:#005253;
  margin-right: 1rem;
  font-size: 30px;
}

.end-collapse{
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.info-cours{
  margin-right: 1rem;
  font-size: 18px;
}


@media (max-width: 1000px) {
.content {
  flex-flow: row wrap;
}
}