/**
 * breakpoints
*/
/*
@mixin media-breakpoint-desktop() {
    @media screen and (min-width: 768px){
        @content;
    }
}

@mixin media-breakpoint-mobile() {
    @media screen and (max-width: 768px){
        @content;
    }
}
*/
main.devis {
  background: var(--background-primary);
  padding-bottom: 40px;
  color: var(--gris-labalette);
  font-size: 16px;
  text-align: center;
  line-height: 130%;
  /* 20.8px */
}
@media screen and (min-width: 992px) {
  main.devis .container {
    max-width: 1366px;
    padding-bottom: 80px;
  }
}
main.devis .breadcrumb {
  text-align: initial;
  line-height: 150%;
  color: var(--color-text);
}
main.devis h1 {
  margin-top: 20px;
  /* 75.4px */
  margin-bottom: 12px;
}
@media screen and (min-width: 992px) {
  main.devis h1 {
    font-size: 58px;
    margin-top: 80px;
    line-height: 130%;
  }
}
main.devis #devis {
  margin-top: 40px;
  text-align: initial;
  line-height: initial;
}
main.devis #devis ul li::before {
  display: none;
}