/**
 * @file
 * Visual styles for the site branding block in Bartik.
 */
 /* Supprimé tous les sélecteurs rtl (Right 2 Left)*/
 
.site-branding__logo {
  display: inline-block;
  margin-right: 1em; /* LTR */
  border-bottom: 0;
  margin-top:10px;
  position:relative;
}

/*ajout (pour logo svg)*/
.site-branding__logo img{
  width:90px;
}

/*ajout (pour logo en 2 parties)
mise en background pour mise à léchelle*/
.site-branding__logo:after{
  content: '';
  background-image: url(../../logo_name.svg);
  height: 40px;
  width: 200px;
  background-size: 200px;
  display: inline-block;
  position:absolute; top:8px; left:100px;
}


.site-branding__text {
  display: inline-block;
  vertical-align: top;
  position:relative; bottom:6px;/*Ajout*/
  
}

@media all and (min-width: 461px) {
  .site-branding__text {
    margin-bottom: 1.857em;
  }
}

@media all and (min-width: 901px) {
  .site-branding__text {
    padding: 1.286em 0 0;
  }
}
.site-branding__name {
  color: #686868;
  font-size: 1.6em;
  line-height: 1;
}

@media all and (min-width: 901px) {
  .site-branding__name {
    font-size: 1.821em;
  }
}
.site-branding__slogan {
  /*margin-top: 7px;Inhibé*/ 
  width:250px;  /*Ajout*/ 
  position:absolute; top:60px; left:-15px; /*Ajout*/ 
  word-spacing: 0.1em;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1em; /* natif 0.929em; */
  font-style: italic;

}

/* Sélecteur Ajouté */
@media all and (max-width: 550px) {
  .site-branding__slogan,
  .site-branding__logo:after {
    display:none;
  }

  
}
