/* Fonts */
@font-face {
  font-family: SFProText;
  src: local('SF Pro Text Light'), url('../fonts/sfpro-text-light.ttf') format('truetype');
  font-weight: 300;
}
@font-face {
  font-family: SFProText;
  src: local('SF Pro Text Medium'), url('../fonts/sfpro-text-medium.ttf') format('truetype');
  font-weight: normal;
}
@font-face {
  font-family: SFProText;
  src: local('SF Pro Text Bold'), url('../fonts/sfpro-text-bold.ttf') format('truetype');
  font-weight: bold;
}
@font-face {
  font-family: SFProDisplay;
  src: local('SF Pro Display Medium'), url('../fonts/sfpro-display-medium.ttf') format('truetype');
  font-weight: normal;
}
@font-face {
  font-family: SFProDisplay;
  src: local('SF Pro Display Bold'), url('../fonts/sfpro-display-bold.ttf') format('truetype');
  font-weight: bold;
}
/* Common Controls */
/* Theming */
.alert {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.alert > .text {
  overflow: hidden;
  text-overflow: ellipsis;
}
.alert.alert-success {
  background-color: #DFF0D8;
  color: #326156;
}
.alert.alert-info {
  background-color: #000000;
  color: white;
}
.alert.alert-warning {
  background-color: #FCF8E3;
  color: #70650C;
}
.alert.alert-danger {
  background-color: #8F231F;
  color: white;
}
.button {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  cursor: pointer;
  contain: content;
  min-height: 50px;
  min-width: 40px;
  flex-shrink: 0;
  border-style: none;
  border-width: 0px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.4s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1), color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: inherit;
  font-family: SFProText, sans-serif;
  font-weight: inherit;
  border-radius: 5px;
}
.button.padded > .content {
  padding: 7px 25px 7px 25px;
}
.button.wide {
  min-width: 250px;
}
.button > .content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}
.button > .content > * {
  margin-left: 5px;
  margin-right: 5px;
}
.button > .content > .text {
  transition: color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
.button > .content > .icon {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
}
.button.standard-button.primary {
  background-color: #91278E;
  color: #ECECEC;
  transition: background-color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.button.standard-button.primary:hover {
  background-color: #691c67;
}
.button.standard-button.default {
  background-color: #ECECEC;
  color: #91278E;
  transition: background-color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.button.standard-button.default:hover {
  background-color: #d3d3d3;
}
.button.standard-button.transparent {
  background-color: transparent;
  color: #91278E;
  border: 1px solid transparent;
  border-radius: 7px;
  transition: border-color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.button.standard-button.transparent:hover {
  border-color: #91278E;
}
.item-strip {
  justify-content: center;
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
}
.item-strip > .content-container {
  display: flex;
}
.item-strip > .content-container > .content {
  display: flex;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.item-strip > .content-container > .content::-webkit-scrollbar {
  display: none;
}
.item-strip > .arrows {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.item-strip > .arrows > .arrow {
  width: 75px;
  position: absolute;
  top: 0px;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  pointer-events: all;
  transition: background-color 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  user-select: none;
}
.item-strip > .arrows > .arrow.left {
  left: 0px;
}
.item-strip > .arrows > .arrow.right {
  right: 0px;
}
.item-strip > .arrows > .arrow.disabled {
  opacity: 0.5;
}
.item-strip > .arrows > .arrow:not(.disabled) {
  cursor: pointer;
}
.item-strip > .arrows > .arrow:not(.disabled):hover {
  background-color: rgba(231, 231, 231, 0.75);
}
@media (max-width: 749px) {
  .item-strip > .arrows > .arrow {
    pointer-events: none;
    cursor: none;
  }
}
.item-strip > .arrows > .arrow > img {
  width: 25px;
}
.picture-view {
  display: flex;
  position: relative;
}
.picture-view > .scroll-container {
  display: flex;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}
.picture-view > .scroll-container::-webkit-scrollbar {
  display: none;
}
.picture-view > .scroll-container > .content {
  position: relative;
}
.picture-view > .grab-arrow-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0.25;
  display: flex;
  pointer-events: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: black;
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.picture-view > .grab-arrow-overlay.hidden {
  opacity: 0;
}
.picture-view > .grab-arrow-overlay > .touch {
  width: auto;
  height: 100px;
}
@media (max-width: 499px) {
  .picture-view > .grab-arrow-overlay > .touch {
    height: 50px;
  }
}
.picture-view > .grab-arrow-overlay > .grab-arrow {
  width: 300px;
  height: auto;
}
@media (max-width: 499px) {
  .picture-view > .grab-arrow-overlay > .grab-arrow {
    width: 200px;
  }
}
@media (min-width: 1000px) {
  .picture-view > .grab-arrow-overlay {
    display: none;
  }
}
.picture-frame {
  position: relative;
}
.picture-frame > .content {
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.picture-frame > .content > .picture {
  background-position: center;
  background-repeat: no-repeat;
}
.picture-frame.cover {
  width: 100%;
  padding-top: 100%;
}
.picture-frame.cover > .content {
  position: absolute;
}
.picture-frame.cover > .content > .picture {
  width: 100%;
  height: 100%;
  background-size: cover;
}
.picture-frame.fit {
  width: 100%;
  padding-top: 100%;
}
.picture-frame.fit > .content {
  position: absolute;
}
.picture-frame.fit > .content > .picture {
  width: 100%;
  height: 100%;
  background-size: contain;
}
.picture-frame.circle-cover {
  width: 100%;
  padding-top: 100%;
}
.picture-frame.circle-cover > .content {
  position: absolute;
  border: 1px solid #88919E;
  border-radius: 50%;
}
.picture-frame.circle-cover > .content > .picture {
  width: 100%;
  height: 100%;
  background-size: cover;
}
.picture-frame.circle-fit {
  width: 100%;
  padding-top: 100%;
}
.picture-frame.circle-fit > .content {
  position: absolute;
  border: 1px solid #88919E;
  border-radius: 50%;
}
.picture-frame.circle-fit > .content > .picture {
  width: 80%;
  height: 80%;
  background-size: contain;
}
.picture-frame.rounded-cover {
  width: 100%;
  padding-top: 100%;
}
.picture-frame.rounded-cover > .content {
  position: absolute;
  border: 1px solid #88919E;
  border-radius: 5px;
}
.picture-frame.rounded-cover > .content > .picture {
  width: 100%;
  height: 100%;
  background-size: cover;
}
.picture-frame.rounded-fit {
  width: 100%;
  padding-top: 100%;
}
.picture-frame.rounded-fit > .content {
  position: absolute;
  border: 1px solid #88919E;
  border-radius: 5px;
}
.picture-frame.rounded-fit > .content > .picture {
  width: 100%;
  height: 100%;
  background-size: contain;
}
.picture-frame.original > .content img {
  width: 100%;
  height: auto;
}
.text-area {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background-color: white;
  border-color: #ECECEC;
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  box-sizing: border-box;
  transition: box-shadow 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
  min-height: 38px;
}
.text-area > textarea {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
  padding: 0 !important;
  flex-grow: 1;
  flex-shrink: 1;
  background-color: transparent;
  border-radius: 0;
  font-family: SFProText, sans-serif;
  font-size: 14px;
  font-weight: normal;
  border-style: none !important;
  min-width: 0;
  transition: color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  resize: vertical;
}
.text-area > textarea:focus {
  outline: none;
}
.text-area > textarea::placeholder {
  font-family: SFProText, sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: #88919E;
}
.text-area > textarea::-webkit-input-placeholder {
  font-family: SFProText, sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: #88919E;
}
.text-area > textarea::-ms-input-placeholder {
  font-family: SFProText, sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: #88919E;
}
.text-field {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border-color: #ECECEC;
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  height: 38px;
  overflow: hidden;
  transition: box-shadow 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: white;
}
.text-field > .content {
  display: flex;
  align-items: stretch;
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
}
.text-field > .content::-ms-clear {
  display: none;
}
.text-field > .content::-ms-reveal {
  display: none;
}
.text-field > .content > .input-container {
  display: flex;
  align-items: stretch;
  position: relative;
  flex-grow: 1;
  flex-shrink: 1;
  margin-left: 10px;
  min-width: 0;
}
.text-field > .content > .input-container > input {
  flex-grow: 1;
  flex-shrink: 1;
  background-color: transparent;
  border-radius: 0;
  font-family: SFProText, sans-serif;
  font-size: 14px;
  font-weight: normal;
  border-style: none !important;
  min-width: 0;
  transition: color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  padding: 0;
  -moz-appearance: textfield;
}
.text-field > .content > .input-container > input:focus {
  outline: none;
}
.text-field > .content > .input-container > input::placeholder {
  font-family: SFProText, sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: #88919E;
}
.text-field > .content > .input-container > input::-webkit-input-placeholder {
  font-family: SFProText, sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: #88919E;
}
.text-field > .content > .input-container > input::-ms-input-placeholder {
  font-family: SFProText, sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: #88919E;
}
.text-field > .content > .input-container > input:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset;
  -webkit-box-shadow: 0 0 0 1000px white inset;
}
.page-content.tarifs > .section > .header {
  background-color: #000000;
}
.page-content.tarifs > .section > .header > .title-container {
  border-bottom: 1px solid #000000;
}
.page-content.tarifs > .section > .content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-content.tarifs > .section.audio-system-comparison > .content {
  padding: 0px;
}
.page-content.tarifs > .section.audio-system-comparison > .content > .audio-system-comparison-table {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  color: white;
  width: 100%;
  max-width: 750px;
}
.page-content.tarifs > .section.audio-system-comparison > .content > .audio-system-comparison-table > .item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.page-content.tarifs > .section.audio-system-comparison > .content > .audio-system-comparison-table > .item > .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  background-color: #000000;
  padding: 10px 20px 10px 20px;
}
.page-content.tarifs > .section.audio-system-comparison > .content > .audio-system-comparison-table > .item > .header > .title {
  font-size: 1.25em;
  display: flex;
  align-items: center;
}
.page-content.tarifs > .section.audio-system-comparison > .content > .audio-system-comparison-table > .item > .header > .title > img {
  width: 64px;
  height: auto;
  margin-right: 15px;
}
.page-content.tarifs > .section.audio-system-comparison > .content > .audio-system-comparison-table > .item > .header > .subtitle {
  text-align: right;
}
.page-content.tarifs > .section.audio-system-comparison > .content > .audio-system-comparison-table > .item > .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 10px 20px 10px 20px;
}
.page-content.tarifs > .section.audio-system-comparison > .content > .audio-system-comparison-table > .item > .content > .power-bars {
  display: flex;
  flex-direction: column;
  margin: -10px;
  flex-grow: 1;
}
.page-content.tarifs > .section.audio-system-comparison > .content > .audio-system-comparison-table > .item > .content > .power-bars > .power-bar {
  display: flex;
  align-items: center;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 10px;
}
.page-content.tarifs > .section.audio-system-comparison > .content > .audio-system-comparison-table > .item > .content > .power-bars > .power-bar > .title {
  flex-basis: 75px;
  flex-shrink: 0;
}
.page-content.tarifs > .section.audio-system-comparison > .content > .audio-system-comparison-table > .item > .content > .power-bars > .power-bar > .bars {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
}
.page-content.tarifs > .section.audio-system-comparison > .content > .audio-system-comparison-table > .item > .content > .power-bars > .power-bar > .bars > .bar {
  width: 4px;
  height: 25px;
  background-color: white;
  margin-right: 3px;
  margin-top: 1px;
  margin-bottom: 1px;
}
.page-content.tarifs > .section.audio-system-comparison > .content > .audio-system-comparison-table > .item > .content > .power {
  text-align: right;
}
.page-content.tarifs > .section.audio-system-comparison > .content > .audio-system-comparison-table > .item.barak .bar {
  background-color: #91278E !important;
}
.page-content.tarifs > .section.selectors {
  display: flex;
  justify-content: center;
  color: black;
}
.page-content.tarifs > .section.selectors .selector {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.page-content.tarifs > .section.selectors .selector > .title {
  margin-bottom: 20px;
  text-align: center;
}
.page-content.tarifs > .section.selectors .selector > .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: -10px;
}
.page-content.tarifs > .section.selectors .selector > .content > .selector-item {
  width: 280px;
  height: 100px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  border: 1px solid #000000;
  cursor: pointer;
  border-radius: 5px;
  box-sizing: border-box;
}
.page-content.tarifs > .section.selectors .selector > .content > .selector-item.active,
.page-content.tarifs > .section.selectors .selector > .content > .selector-item:hover {
  border: 3px solid #91278E;
}
.page-content.tarifs > .section.selectors .selector > .content > .selector-item > .icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-right: 20px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.page-content.tarifs > .section.selectors .selector > .content > .selector-item > .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}
.page-content.tarifs > .section.selectors .selector > .content > .selector-item > .content > .subtitle {
  color: #000000;
  font-size: 12px;
}
.page-content.tarifs .highlight {
  color: #009c4a;
}
.title-bar.home:not(.scrolled) {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background-color: transparent;
  border-bottom: none;
}
.title-bar.home:not(.scrolled) > .right > ul > li {
  color: white !important;
}
.page-content.accueil > .section.main {
  height: 100vh;
  position: relative;
}
.page-content.accueil > .section.main > .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
.page-content.accueil > .section.main > .overlay.scene {
  background-image: url("../img/la-barak-scene.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
}
.page-content.accueil > .section.main > .overlay.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 100px;
}
.page-content.accueil > .section.main > .overlay.logo > .logo {
  opacity: 0.75;
}
@media (max-width: 749px) {
  .page-content.accueil > .section.main > .overlay.logo > .logo {
    width: 50%;
  }
}
@media (min-width: 750px) {
  .page-content.accueil > .section.main > .overlay.logo > .logo {
    width: 20%;
  }
}
.page-content.accueil > .section.main > .overlay.logo > .caption {
  margin-top: 25px;
  color: white;
  font-size: 1.5em;
}
@media (max-width: 780px) {
  .page-content.accueil > .section.main > .overlay.logo > .caption {
    font-size: 1.25em;
  }
}
.page-content.accueil > .section.main > .overlay-promo {
  position: absolute;
  left: 0;
  bottom: 25px;
  right: 0;
  display: flex;
  flex-direction: row;
  cursor: pointer;
  text-decoration: none;
  color: white;
  align-items: center;
  justify-content: center;
}
.page-content.accueil > .section.main > .overlay-promo > .arrows {
  background-image: url("../img/icons/arrow-right-FFFFFF.svg");
  background-repeat: repeat-x;
  flex-grow: 0;
  flex-shrink: 0;
  height: 20px;
  width: 11px;
}
.page-content.accueil > .section.main > .overlay-promo > .text {
  flex-shrink: 0;
  flex-grow: 0;
  margin-left: 15px;
  margin-right: 15px;
}
.page-content.accueil > .section.about > .header {
  background-color: #000000;
}
.page-content.accueil > .section.about > .header > .title-container {
  border-bottom: 1px solid #000000;
}
.page-content.accueil > .section.about > .content {
  display: flex;
  flex-wrap: wrap;
}
.page-content.accueil > .section.about > .content > .item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 400px;
  background-size: cover;
  flex-basis: 0;
  flex-grow: 1;
  align-items: center;
  min-width: 450px;
  overflow: hidden;
}
@media (max-width: 499px) {
  .page-content.accueil > .section.about > .content > .item {
    min-width: 300px;
    height: 250;
  }
}
@media (max-width: 749px) {
  .page-content.accueil > .section.about > .content > .item {
    min-width: 300px;
    height: 300px;
  }
}
.page-content.accueil > .section.about > .content > .item > .background {
  position: absolute;
  top: -200px;
  right: 0px;
  left: 0px;
  bottom: -200px;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.page-content.accueil > .section.about > .content > .item:nth-child(1) > .background {
  background-image: url('../img/backgrounds/after-hrs-2-1.jpg');
}
.page-content.accueil > .section.about > .content > .item:nth-child(2) > .background {
  background-image: url('../img/backgrounds/after-hrs-2-2.jpg');
}
.page-content.accueil > .section.about > .content > .item:nth-child(3) > .background {
  background-image: url('../img/backgrounds/after-hrs-2-3.jpg');
}
.page-content.accueil > .section.about > .content > .item > .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.6);
  margin-left: 20px;
  margin-right: 20px;
  width: calc(100% - 40px);
  max-width: 500px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.page-content.accueil > .section.about > .content > .item > .header > .title {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 15px;
  margin-right: 15px;
  color: black;
}
.page-content.accueil > .section.about > .content > .item > .header > .subtitle {
  text-align: center;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 15px;
  flex-grow: 1;
  color: black;
}
.page-content.accueil > .section.services > .header {
  background-color: #000000;
}
.page-content.accueil > .section.services > .header > .title-container > .title {
  color: white;
}
.page-content.accueil > .section.services > .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.page-content.accueil > .section.services > .content > .text {
  color: black;
  text-align: center;
}
.page-content.accueil > .section.services > .content > .specialties-grid {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 8px solid #91278E;
  border-bottom: 8px solid #91278E;
}
.page-content.accueil > .section.services > .content > .specialties-grid > .specialty-row {
  display: flex;
}
@media (max-width: 999px) {
  .page-content.accueil > .section.services > .content > .specialties-grid > .specialty-row {
    flex-direction: column;
  }
}
.page-content.accueil > .section.services > .content > .specialties-grid > .specialty-row > .specialty-item {
  display: flex;
  align-items: stretch;
  position: relative;
}
@media (min-width: 1250px) {
  .page-content.accueil > .section.services > .content > .specialties-grid > .specialty-row > .specialty-item {
    height: 200px;
  }
}
@media (max-width: 1249px) {
  .page-content.accueil > .section.services > .content > .specialties-grid > .specialty-row > .specialty-item {
    height: 150px;
  }
}
@media (min-width: 750px) {
  .page-content.accueil > .section.services > .content > .specialties-grid > .specialty-row > .specialty-item {
    flex-basis: 50%;
  }
}
@media (max-width: 999px) {
  .page-content.accueil > .section.services > .content > .specialties-grid > .specialty-row > .specialty-item {
    border-bottom: 1px solid white;
  }
}
.page-content.accueil > .section.services > .content > .specialties-grid > .specialty-row > .specialty-item > .content {
  display: flex;
  align-items: stretch;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
}
.page-content.accueil > .section.services > .content > .specialties-grid > .specialty-row > .specialty-item > .content > .title {
  position: absolute;
  display: flex;
  align-items: center;
  padding: 20px;
  margin: 0px;
  background-color: #000000;
  border-bottom-right-radius: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.page-content.accueil > .section.services > .content > .specialties-grid > .specialty-row > .specialty-item > .background-container {
  min-width: 150px;
  flex-grow: 1;
  display: flex;
  position: relative;
  overflow: hidden;
}
.page-content.accueil > .section.services > .content > .specialties-grid > .specialty-row > .specialty-item > .background-container > .background {
  flex-grow: 1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: -75px;
  right: 0px;
  left: 0px;
  bottom: -75px;
}
.page-content.accueil > .section.services > .content > .service-grid-container {
  margin-bottom: 20px;
  padding: 20px;
}
.page-content.accueil > .section.services > .content > .service-grid-container > .service-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: -15px;
}
.page-content.accueil > .section.services > .content > .service-grid-container > .service-grid > .service-item-group {
  display: flex;
}
.page-content.accueil > .section.services > .content > .service-grid-container > .service-grid > .service-item-group > .item {
  display: flex;
  flex-direction: column;
  padding: 15px;
  box-sizing: border-box;
  width: 200px;
}
@media (max-width: 499px) {
  .page-content.accueil > .section.services > .content > .service-grid-container > .service-grid > .service-item-group > .item {
    width: 175px;
  }
}
.page-content.accueil > .section.services > .content > .service-grid-container > .service-grid > .service-item-group > .item > .picture-frame-container {
  padding: 10px;
}
.page-content.accueil > .section.services > .content > .service-grid-container > .service-grid > .service-item-group > .item > .text {
  display: flex;
  flex-direction: column;
  padding: 15px 20px 15px 20px;
  border-radius: 5px;
  margin-top: 10px;
  flex-grow: 1;
  justify-content: flex-start;
  box-sizing: border-box;
  text-align: center;
  color: black;
}
@media (max-width: 499px) {
  .page-content.accueil > .section.services > .content > .service-grid-container > .service-grid > .service-item-group > .item > .text {
    padding: 5px 7px 5px 7px;
  }
}
.page-content.accueil > .section.tarifs > .header {
  background-color: #000000;
}
.page-content.accueil > .section.tarifs > .header > .title-container > .title {
  color: white;
}
.page-content.accueil > .section.tarifs > .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.page-content.accueil > .section.tarifs > .content > .buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -10px;
  padding: 20px;
}
.page-content.accueil > .section.tarifs > .content > .buttons > .button {
  margin: 10px;
}
.page-content.accueil > .section.events > .header {
  background-color: #000000;
}
.page-content.accueil > .section.events > .header > .title-container > .title {
  color: white;
}
.page-content.accueil > .section.events > .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: black;
}
@media (max-width: 749px) {
  .page-content.accueil > .section.events > .content {
    padding: 0px;
  }
}
.page-content.accueil > .section.events > .content > .item-strip {
  width: 100%;
  justify-content: stretch;
}
.page-content.accueil > .section.events > .content > .item-strip > .content-container {
  padding: 0px 20px 0px 20px;
}
.page-content.accueil > .section.events > .content > .item-strip .event :not(:first-child) {
  margin-left: 10px;
}
.page-content.accueil > .section.events > .content > .item-strip .event :not(:last-child) {
  margin-right: 10px;
}
.page-content.accueil > .section.events > .content > .item-strip .event > .cover-picture {
  display: block;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease-out;
}
.page-content.accueil > .section.events > .content > .item-strip .event > .cover-picture > img {
  height: 400px;
}
.page-content.accueil > .section.events > .content > .item-strip .event > .cover-picture :hover {
  opacity: 0.5;
}
.page-content.accueil > .section.events > .content > .item-strip .event > .date {
  text-align: center;
  margin-top: 10px;
}
.page-content.accueil > .section.events > .content > .coming-up {
  margin: 15px;
  text-align: center;
}
.page-content.accueil > .section.contact-us {
  display: flex;
  flex-wrap: wrap;
}
.page-content.accueil > .section.contact-us > .contact-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-basis: 66%;
  position: relative;
  min-width: 300px;
  overflow: hidden;
  justify-content: center;
}
@media (min-width: 1000px) {
  .page-content.accueil > .section.contact-us > .contact-details {
    min-height: 500px;
  }
}
.page-content.accueil > .section.contact-us > .contact-details > .background {
  position: absolute;
  top: -100px;
  right: 0px;
  left: 0px;
  bottom: -100px;
  background-image: url("../img/backgrounds/stage-spotlights-truss.jpg");
  background-size: cover;
}
.page-content.accueil > .section.contact-us > .contact-details > .background-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(5px) brightness(0.5);
  -webkit-backdrop-filter: blur(5px) brightness(0.5);
}
@supports not ((backdrop-filter: blur()) or (-webkit-backdrop-filter: blur())) {
  .page-content.accueil > .section.contact-us > .contact-details > .background-cover {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.page-content.accueil > .section.contact-us > .contact-details > .header > .title-container {
  border-bottom: 1px solid white;
}
.page-content.accueil > .section.contact-us > .contact-details > .header > .title-container > .title {
  color: white;
}
.page-content.accueil > .section.contact-us > .contact-details > .content {
  display: flex;
  flex-direction: column;
  padding: 15px;
  z-index: 1;
}
.page-content.accueil > .section.contact-us > .contact-details > .content > .contact-elements {
  margin-bottom: 15px;
}
.page-content.accueil > .section.contact-us > .contact-details > .content > .other-links {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-content.accueil > .section.contact-us > .map {
  display: flex;
  flex-basis: 33%;
  align-items: stretch;
  flex-grow: 1;
  flex-shrink: 0.5;
  min-height: 300px;
}
.page-content.accueil > .section.contact-us > .map iframe {
  flex-grow: 1;
}
.price-grid {
  display: flex;
  flex-wrap: wrap;
  max-width: 1500px;
  justify-content: center;
  margin: -15px;
}
.price-grid > .item {
  display: flex;
  position: relative;
  flex-direction: column;
  padding: 15px;
  box-sizing: border-box;
}
@media (min-width: 750px) {
  .price-grid > .item {
    width: 250px;
  }
}
@media (min-width: 500px) and (max-width: 749px) {
  .price-grid > .item {
    width: 225px;
  }
}
@media (max-width: 499px) {
  .price-grid > .item {
    width: 175px;
  }
}
.price-grid > .item > .picture-frame-container {
  position: relative;
}
@media (min-width: 1000px) {
  .price-grid > .item > .picture-frame-container {
    padding: 15px;
  }
}
.price-grid > .item > .picture-frame-container > .overlay {
  position: absolute;
  font-size: 0.85em;
  z-index: 1;
  text-align: center;
}
.price-grid > .item > .picture-frame-container > .overlay.overlay-top-left {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 50%;
  padding: 10px;
  left: 0px;
  top: 0px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-grid > .item > .picture-frame-container > .overlay.overlay-bottom {
  background-color: rgba(0, 0, 0, 0.75);
  padding: 5px;
  bottom: 0px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  border-radius: 7px;
}
.price-grid > .item > .text {
  display: flex;
  flex-direction: column;
  padding: 15px;
  flex-grow: 1;
  justify-content: flex-start;
  box-sizing: border-box;
  text-align: center;
  color: black;
}
.price-grid > .item > .text > .subtitle {
  color: #000000;
  font-size: 0.75em;
}
.price-grid > .item > .text > .price-info {
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-end;
  margin-top: 10px;
}
@media (min-width: 750px) {
  .price-grid > .item > .text > .price-info.compact {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    flex-grow: 1;
  }
  .price-grid > .item > .text > .price-info.compact > .price-details {
    align-items: flex-end;
  }
}
.price-grid > .item > .text > .price-info > .main-price {
  margin: 0px;
  color: #91278E;
}
.price-grid > .item > .text > .price-info > .price-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000000;
  font-size: 0.75em;
}
.price-grid > .item > .text > .price-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin-top: 10px;
  flex-grow: 1;
}
.price-grid > .item > .text > .details {
  flex-grow: 1;
  text-align: left;
}
@media (min-width: 1000px) {
  .price-grid > .item.large {
    width: 400px;
  }
}
@media (min-width: 750px) and (max-width: 999px) {
  .price-grid > .item.large {
    width: 350px;
  }
}
@media (min-width: 500px) and (max-width: 749px) {
  .price-grid > .item.large {
    width: 325px;
  }
}
@media (max-width: 499px) {
  .price-grid > .item.large {
    width: 275px;
  }
}
.price-grid > .item.large .title,
.price-grid > .item.large .price-info {
  font-size: 1.25em;
}
.price-grid > .item.large .subtitle {
  font-size: 1em;
}
a {
  color: #91278E;
}
a.color-inherit {
  color: inherit;
}
a.no-underline {
  text-decoration: none;
}
a.underline-on-hover {
  text-decoration: none;
}
a.underline-on-hover:hover {
  text-decoration: underline;
}
h1 {
  text-transform: uppercase;
  font-family: SFProDisplay, sans-serif;
  font-weight: bold;
  margin: 0px 0px 30px 0px;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (min-width: 500px) {
  h1 {
    font-size: 4em;
  }
}
@media (max-width: 499px) {
  h1 {
    font-size: 2.5em;
  }
}
h2 {
  text-transform: uppercase;
  font-family: SFProDisplay, sans-serif;
  font-weight: normal;
  margin: 0px 0px 20px 0px;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (min-width: 500px) {
  h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 499px) {
  h2 {
    font-size: 1.75em;
  }
}
h3 {
  text-transform: uppercase;
  font-family: SFProDisplay, sans-serif;
  font-weight: normal;
  margin: 0px 0px 10px 0px;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (min-width: 500px) {
  h3 {
    font-size: 1.75em;
  }
}
@media (max-width: 499px) {
  h3 {
    font-size: 1.25em;
  }
}
h4 {
  text-transform: uppercase;
  font-weight: bold;
  margin: 0px 0px 5px 0px;
  text-overflow: ellipsis;
  overflow: hidden;
}
p {
  margin: 0px 0px 15px 0px;
}
html {
  height: 100%;
  width: 100%;
  position: fixed;
}
body {
  height: 100%;
  font-family: SFProText, sans-serif;
  font-size: 16px;
  font-weight: normal;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin: 0;
  padding: 0;
  align-items: stretch;
  color: white;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body > .react-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}
body > .react-container > .app-container {
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}
body > .react-container > .app-container.modal-opened {
  overflow-y: hidden;
}
body > .react-container > .app-container > .page-content {
  flex-grow: 1;
}
body > .react-container > .app-container > .page-content > .spacer {
  flex-shrink: 0;
}
@media (max-width: 999px) {
  body > .react-container > .app-container > .page-content > .spacer {
    height: 60px;
  }
}
@media (min-width: 1000px) {
  body > .react-container > .app-container > .page-content > .spacer {
    height: 80px;
  }
}
body > .react-container > .app-container > .page-content > .alerts {
  display: flex;
  flex-direction: column;
}
.title-bar {
  position: absolute;
  width: 100%;
  z-index: 10;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid #000000;
}
.title-bar.desktop {
  display: flex;
  flex-shrink: 0;
  overflow: visible;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  height: 80px;
}
@media (max-width: 999px) {
  .title-bar.desktop {
    display: none;
  }
}
.title-bar.desktop > .left {
  display: flex;
  align-items: center;
}
.title-bar.desktop > .left > .logo {
  height: 50px;
  margin-left: 15px;
  margin-right: 15px;
}
.title-bar.desktop > .middle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-grow: 1;
  margin-right: 15px;
  cursor: pointer;
}
.title-bar.desktop > .middle > .title-logo {
  height: 25px;
  margin-bottom: 5px;
}
.title-bar.desktop > .right {
  display: flex;
  justify-content: stretch;
  flex-shrink: 0;
  margin-right: 20px;
}
.title-bar.desktop > .right > ul {
  list-style: none;
  list-style-image: none;
  display: flex;
  flex-direction: row;
  padding-left: 0px;
  margin: 0px;
}
.title-bar.desktop > .right > ul > li {
  text-decoration: none;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  cursor: pointer;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  color: #000000;
}
.title-bar.desktop > .right > ul > li:hover,
.title-bar.desktop > .right > ul > li.active {
  background-color: #000000;
  color: white;
}
.title-bar.mobile {
  flex-direction: column;
  align-items: stretch;
}
@media (min-width: 1000px) {
  .title-bar.mobile {
    display: none;
  }
}
.title-bar.mobile.expanded {
  height: 100%;
}
.title-bar.mobile > .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.title-bar.mobile > .top > .left {
  display: flex;
  justify-content: center;
  align-items: center;
}
.title-bar.mobile > .top > .left > .menu-toggle {
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  align-self: flex-end;
}
.title-bar.mobile > .top > .left > .menu-toggle > .line {
  width: 30px;
  border-top: 2px solid #000000;
}
.title-bar.mobile > .top > .left > .menu-toggle > .line:not(:last-child) {
  margin-bottom: 5px;
}
.title-bar.mobile > .top > .left > .logo {
  height: 40px;
  margin-left: 10px;
  cursor: pointer;
}
.title-bar.mobile > .top > .left > .title-logo {
  margin-left: 10px;
  height: 25px;
  cursor: pointer;
}
.title-bar.mobile > ul {
  list-style: none;
  list-style-image: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-left: 0px;
  margin: 0px;
  font-size: 1.25em;
  background-color: white;
  color: #000000;
}
.title-bar.mobile > ul > li {
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 60px;
  box-sizing: border-box;
  cursor: pointer;
  padding: 20px;
  flex-shrink: 0;
  transition: background-color 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.title-bar.mobile > ul > li:hover,
.title-bar.mobile > ul > li.active {
  background-color: #000000;
  color: white;
}
.title-bar.mobile > ul.collapsed {
  max-height: 0px;
  transition: max-height 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.title-bar.mobile > ul.expanded {
  max-height: 360px;
  transition: max-height 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.modal-container {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: visible;
  -webkit-overflow-scrolling: touch;
}
.modal-container > .modal {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-height: 100%;
  max-width: 1000px;
  background-color: white;
  color: black;
  border-radius: 10px;
  overflow: hidden;
}
.modal-container > .modal > .header {
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background-color: white;
  padding: 30px 30px 10px 30px;
}
.modal-container > .modal > .header > .title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
  color: black;
}
.modal-container > .modal > .header > .title > .main-title {
  text-align: left;
  margin: 0px;
}
.modal-container > .modal > .header > .title > .subtitle {
  text-align: left;
  margin: 0px;
}
.modal-container > .modal > .content-container {
  overflow-y: auto;
  padding: 30px 30px 0px 30px;
}
.modal-container > .modal > .content-container > .spacer {
  height: 30px;
}
.section > .header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.section > .header > .title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin-top: 20px;
  max-width: 600px;
  flex-grow: 1;
}
.contact-elements {
  display: flex;
  flex-direction: column;
}
.contact-elements.align-center {
  align-items: center;
}
.contact-elements.compact {
  flex-direction: row;
  justify-content: center;
}
.contact-elements.compact > .contact-element > .text {
  display: none;
}
.contact-elements > .contact-element {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-top: 10px;
}
.contact-elements > .contact-element > .icon {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}
.contact-elements.light > .contact-element {
  color: white;
}
footer {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: #000000;
  color: white;
  font-size: 0.9em;
  flex-shrink: 0;
}
footer > .container {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
footer > .container a {
  color: white;
}
