@import url(https://fonts.googleapis.com/css?family=Raleway);

body {
  color: #333;
  background: #fcfcfc;
  font-family: 'Raleway', sans-serif;
  overflow-x: hidden;
  display: block;
  margin-left: 10%;
  margin-right: 10%;
}

@media screen and (max-width: 350px) {
    body {
        margin-left: 5%;
        margin-right: 5%;
    }
}

.faq-header{
  font-size: 42px;
  border-bottom: 1px dotted #ccc;
  padding: 24px;
}

@media screen and (max-width: 350px) {
    .faq-header {
       font-size: 30px;
    }
}

.faq-content {
  margin: 0 auto;
}

.faq-question {
  padding: 20px 0;
  border-bottom: 1px dotted #ccc;
}

.panel-title {
  font-size: 3.4vw;
  position: relative;
  margin: 0;
  padding: 10px 10px 0 48px;
  display: block;
  cursor: pointer;
}

@media screen and (min-width: 700px) {
    .panel-title {
       font-size: 24px;
    }
}

@media screen and (max-width: 600px) {
    .panel-title {
       font-size: 20px;
    }
}

.panel-content {
  font-size: 16px;
  padding: 0px 14px;
  margin: 0 40px;
  height: 0;
  overflow: hidden;
  z-index: -1;
  /* position: relative; */
  opacity: 0;
  -webkit-transition: .4s ease;
  -moz-transition: .4s ease;
  -o-transition: .4s ease;
  transition: .4s ease;
}

@media screen and (min-width: 700px) {
    .panel-content {
       font-size: 20px;
    }
}

.panel:checked ~ .panel-content{
  height: auto;
  opacity: 1;
  padding: 14px;
}

.plus {
  position: absolute;
  margin-left: 20px;
  margin-top: 4px;
  z-index: 5;
  font-size: 42px;
  line-height: 100%;
  -webkit-user-select: none;    
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .2s ease;
  -moz-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
}

.panel:checked ~ .plus {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.panel {
  display: none;
}

iframe {
    border: 1px solid black; 
    border-radius: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
} 

.last-update {
    text-align: right;
}

.tableau {
    background-image: linear-gradient(
    to left,
    violet,
    indigo,
    blue,
    green,
    yellow,
    orange,
    red
  );
  -webkit-background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}

.header-image-container {
    width: 100%;
    max-height: 200px;
    overflow: hidden;
}

.header-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
}

@media screen and (min-width: 700px) {
    .header-image-container, .header-image {
        max-height: 300px;
    }
}

@media screen and (min-width: 1150px) {
    .header-image-container, .header-image {
        max-height: 400px;
    }
}

@media screen and (min-width: 1550px) {
    .header-image-container, .header-image {
        max-height: 500px;
    }
}

@media screen and (min-width: 1950px) {
    .header-image-container, .header-image {
        max-height: 600px;
    }
}



