:root {
  --black: black;
  --white: white;
  --unabrandcolor: #ff6d05;
  --una-brand-color-dark: #a74702;
  --una-brand-hover-darker: #ec6301;
  --very-dark-grey: #333;
  --brand-really-dark: #311500;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--black);
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: proxima-nova, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  color: var(--white);
  text-align: left;
  letter-spacing: 2px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: brandon-grotesque, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 52px;
}

h3 {
  color: var(--unabrandcolor);
  letter-spacing: 2px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: brandon-grotesque, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 34px;
}

h4 {
  color: var(--white);
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: brandon-grotesque, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
}

p {
  color: #fff;
  text-align: left;
  margin-bottom: 10px;
  font-family: brandon-grotesque, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
}

a {
  color: var(--unabrandcolor);
  text-decoration: underline;
}

a:hover {
  color: var(--una-brand-color-dark);
}

ul {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 30px;
  font-family: brandon-grotesque, sans-serif;
  font-size: 20px;
  line-height: 24px;
}

li {
  padding-top: 5px;
  padding-bottom: 5px;
}

label {
  color: #fff;
  margin-bottom: 5px;
  font-family: proxima-nova, sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: block;
}

.brand {
  color: var(--black);
  margin-top: 4px;
  margin-bottom: 4px;
  padding-top: 0;
  padding-bottom: 0;
}

.text-block-logo-header {
  color: var(--white);
  letter-spacing: 1px;
  margin-top: 10px;
  font-family: brother-xl, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 28px;
}

.text-block-logo-header:hover {
  color: var(--white);
}

.grid-header-logo {
  grid-column-gap: 5px;
  grid-template-rows: auto;
  grid-template-columns: minmax(min-content, max-content) 1fr;
  margin-top: 2px;
}

.text-span-orange-title {
  color: var(--unabrandcolor);
  font-weight: 700;
}

.nav-bar-link {
  color: var(--white);
  letter-spacing: 1.5px;
  padding-left: 15px;
  padding-right: 10px;
  font-family: proxima-nova, sans-serif;
  font-size: 18px;
  text-decoration: none;
}

.nav-bar-link:hover {
  color: var(--una-brand-color-dark);
  text-decoration: none;
}

.nav-bar-link.contact {
  padding-right: 0;
}

.nav-bar-link.services {
  padding-left: 10px;
}

.nav-bar-link.footer {
  padding-left: 0;
  padding-right: 0;
}

.navbar {
  background-color: var(--black);
  height: auto;
  position: fixed;
  inset: 0% 0% auto;
  box-shadow: 1px 1px 15px -10px #000;
}

.nav-dropdown {
  padding-left: 0;
  padding-right: 25px;
}

.hero-section {
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.nav-menu {
  padding-top: 2px;
}

.nav-dropdown-carrot-icon {
  color: var(--white);
  padding-top: 0;
  padding-left: 8px;
  font-size: 18px;
  font-weight: 400;
}

.grid-hero-section {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(min-content, max-content) 1fr;
  transform: translate(0, -62px);
}

.h1-hero-title {
  color: var(--white);
  letter-spacing: 3px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: brother-xl, sans-serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 68px;
}

.h1-hero-title.orange {
  color: var(--unabrandcolor);
  font-weight: 700;
}

.div-flex-vertical-center {
  display: flex;
}

.grid-hero-titles {
  grid-row-gap: 1px;
  grid-template-rows: minmax(min-content, max-content) minmax(min-content, max-content);
  grid-template-columns: 1fr;
  padding-top: 100px;
  position: relative;
}

.h1-hero-subtitle {
  color: var(--white);
  letter-spacing: 4px;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 4px;
  font-family: proxima-nova, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
}

.html-embed {
  z-index: 10;
  margin-left: -100px;
  margin-right: -80px;
  position: static;
  transform: translate(0);
}

.nav-dropdown-link {
  background-color: var(--unabrandcolor);
  color: var(--black);
  letter-spacing: 2px;
  padding: 20px 40px 20px 20px;
  font-family: proxima-nova, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.nav-dropdown-link:hover {
  background-color: var(--una-brand-hover-darker);
  color: var(--black);
}

.nav-dropdown-link.w--current {
  color: var(--black);
}

.parallax-container {
  max-width: 100vw;
  height: 2200px;
  padding-top: 0;
  position: relative;
  overflow: hidden;
}

.image {
  z-index: 2;
  position: absolute;
  top: 60%;
  left: 60%;
}

.image-2 {
  z-index: 1;
  position: absolute;
  top: 40%;
  left: 10%;
}

.image-3 {
  z-index: 3;
  position: absolute;
  top: 35%;
  left: 15%;
}

.image-4 {
  z-index: 2;
  position: absolute;
  top: 32%;
  left: 50%;
}

.image-5 {
  z-index: 1;
  position: absolute;
  top: 30%;
  left: 7%;
}

.image-6 {
  z-index: 3;
  position: absolute;
  left: 20%;
}

.image-7 {
  z-index: 1;
  position: absolute;
  top: 19%;
  left: 70%;
}

.image-8 {
  position: absolute;
  top: 70%;
  left: 35%;
}

.section-services-cards {
  padding-top: 10px;
  padding-bottom: 200px;
  position: relative;
}

.section-black {
  height: 200px;
}

.grid-1fr-1-5fr {
  grid-column-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.5fr;
}

.div-flex-horizontal-center {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.grid-1-5fr-1fr {
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
}

.div-spacer-60px {
  width: 100%;
  height: 60px;
}

.section-title {
  align-items: center;
  padding-top: 0;
  padding-bottom: 100px;
  position: relative;
}

.h2-main-title {
  z-index: 2;
  margin-top: 27px;
  margin-bottom: auto;
  padding-left: 20px;
  font-family: brandon-grotesque, sans-serif;
  font-size: 64px;
  line-height: 70px;
  position: relative;
}

.p-bold {
  font-family: brandon-grotesque, sans-serif;
  font-weight: 700;
}

.h2-services-titles {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: brandon-grotesque, sans-serif;
  font-size: 36px;
  line-height: 42px;
}

.section-motto {
  padding-top: 200px;
  padding-bottom: 300px;
}

.text-span-orange {
  color: var(--unabrandcolor);
}

.h2-motto-title {
  text-align: left;
  letter-spacing: 5px;
  font-family: brandon-grotesque, sans-serif;
  font-size: 72px;
  line-height: 60px;
}

.h2-motto-elipsis {
  color: var(--unabrandcolor);
}

.text-block-florishes {
  z-index: 1;
  float: left;
  color: var(--una-brand-color-dark);
  margin-left: -107px;
  font-family: proxima-nova, sans-serif;
  font-size: 120px;
  font-weight: 900;
  line-height: 124px;
  position: static;
}

.div-main-titles-holder {
  justify-content: flex-start;
  display: flex;
}

.slider {
  background-color: #0000;
  border-radius: 20px;
  height: auto;
  padding: 10px;
}

.grid-section-productions-posters {
  grid-template-rows: auto;
  padding: 20px 100px 60px;
}

.h3-production-title {
  color: var(--white);
  margin-bottom: 2px;
  font-family: brandon-grotesque, sans-serif;
  font-size: 48px;
  line-height: 52px;
}

.text-block-production-info {
  color: var(--una-brand-color-dark);
  margin-bottom: 10px;
  font-family: brandon-grotesque, sans-serif;
  font-size: 18px;
  line-height: 22px;
}

.section-productions {
  padding-top: 10px;
  padding-bottom: 200px;
}

.button-small {
  background-color: var(--una-brand-color-dark);
  color: var(--white);
  align-self: flex-start;
  padding-left: 10px;
  padding-right: 10px;
  font-family: brandon-grotesque, sans-serif;
  font-size: 18px;
  line-height: 22px;
  text-decoration: none;
}

.button-small:hover {
  color: #fff;
  background-color: #b84d02;
}

.button-small.lightbox {
  align-self: flex-start;
  font-family: brandon-grotesque, sans-serif;
}

.button-small.contact {
  width: 100%;
  font-family: brandon-grotesque, sans-serif;
  font-size: 22px;
  line-height: 24px;
}

.button-small.en-savoir-plus {
  width: 150px;
  font-family: brandon-grotesque, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.div-spacer-5px {
  width: 100%;
  height: 5px;
}

.text-block-lightbox-link {
  padding-top: 10px;
  padding-bottom: 10px;
}

.image-posters {
  border: 2px solid var(--very-dark-grey);
  box-shadow: 6px 6px 15px 0 var(--black);
  width: 100%;
  max-width: none;
}

.section-a-propos {
  padding-top: 10px;
  padding-bottom: 200px;
}

.grid-1fr-1fr-a-propos {
  grid-column-gap: 45px;
  grid-template-rows: auto;
}

.grid-vertical-layout {
  grid-template-columns: 1fr;
}

.image-rounded {
  border-radius: 30px;
}

.div-flex-a-propos {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-spacer-10px {
  width: 100%;
  height: 10px;
}

.grid-contact-form {
  grid-template-rows: auto;
}

.form-text-field {
  border: 1px solid var(--brand-really-dark);
  background-color: var(--very-dark-grey);
  color: var(--white);
  font-family: brandon-grotesque, sans-serif;
  font-size: 16px;
}

.form-text-field.message {
  height: 200px;
}

.text-block-contact-subtitle {
  color: var(--white);
  font-family: brandon-grotesque, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 30px;
}

.div-form-wrapper {
  background-color: #0000;
  border-radius: 20px;
  padding: 14px;
}

.section-footer {
  background-image: linear-gradient(#00000080, #00000080), linear-gradient(#000, #0000 10%), url('../images/footerImageOptim.jpg');
  background-position: 0 0, 0 0, 50% 0;
  background-size: auto, auto, cover;
  height: 600px;
  padding-top: 60px;
}

.grid-3 {
  grid-template: "."
  / 1fr 1fr 1fr;
}

.p-footer {
  font-family: brandon-grotesque, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
}

.p-footer.copyright {
  text-align: center;
  font-size: 16px;
  line-height: 20px;
}

.p-footer.social {
  font-weight: 700;
}

.list-footer {
  padding-bottom: 10px;
  padding-left: 0;
  list-style-type: none;
}

.image-social-icons {
  padding-top: 1px;
}

.grid-social {
  grid-column-gap: 31px;
  grid-template-rows: auto;
  grid-template-columns: minmax(min-content, max-content) minmax(min-content, max-content) minmax(min-content, max-content) 1fr;
}

.div-flex-social-footer {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-spacer-40px {
  width: 100%;
  height: 40px;
}

.div-spacer-100px {
  width: 100%;
  height: 100px;
}

.grid-hero-bande-demo {
  grid-template-rows: auto;
}

.h1-hero-title-bande-demo {
  margin-bottom: 0;
  font-family: brandon-grotesque, sans-serif;
  font-size: 56px;
  line-height: 60px;
}

.h2-hero-subtitle-bande-demo {
  color: var(--unabrandcolor);
  letter-spacing: 1px;
  margin-top: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
}

.section-bande-demo {
  padding-top: 140px;
  padding-bottom: 140px;
}

.section-bande-demo.pitch {
  padding-top: 300px;
  padding-bottom: 500px;
}

.section-bande-demo.forfaits {
  padding-top: 0;
  padding-bottom: 0;
}

.p-product-pages {
  font-family: brandon-grotesque, sans-serif;
  font-size: 24px;
  line-height: 28px;
}

.bold-text-orange {
  color: var(--unabrandcolor);
  font-weight: 700;
}

.image-9 {
  border-radius: 20px;
}

.grid-1fr-1fr-1fr {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-1fr {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  height: 100%;
}

.div-full-width-divider-white {
  background-color: var(--white);
  width: 100%;
  height: 1px;
}

.div-bande-demo-forfaits {
  padding-left: 10px;
  padding-right: 10px;
}

.div-bande-demo-forfaits-question {
  align-items: center;
  height: 100px;
  display: flex;
}

.text-block-forfaits-pricing {
  color: var(--unabrandcolor);
  text-align: center;
  font-family: brandon-grotesque, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 32px;
}

.div-bande-demo-forfaits-external {
  border: 1px solid var(--white);
  padding: 10px;
}

.link-bande-demo-price-contact {
  font-family: brandon-grotesque, sans-serif;
  text-decoration: none;
}

.h3-bande-demo-slogan {
  color: var(--white);
  text-align: center;
  letter-spacing: normal;
  font-size: 42px;
  font-weight: 400;
  line-height: 46px;
}

.p-productions {
  font-size: 24px;
  line-height: 28px;
}

.grid-testimonials {
  grid-template-rows: auto;
  grid-template-columns: 1fr minmax(min-content, max-content);
}

.image-10 {
  border-radius: 70px;
}

.p-testimonial {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

.p-testimonial.julie {
  font-size: 30px;
  line-height: 40px;
}

.div-captations-forfaits {
  align-items: center;
  height: 120px;
  display: flex;
}

.image-11 {
  z-index: 1;
  position: absolute;
  top: 70%;
  left: 5%;
}

.image-12 {
  z-index: 1;
  position: absolute;
  top: 78%;
  left: 25%;
}

.image-13 {
  z-index: 1;
  position: absolute;
  top: 35%;
  left: 40%;
}

.field-label, .checkbox-label {
  font-family: brandon-grotesque, sans-serif;
}

.grid-example-images-3up {
  grid-row-gap: 52px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

.grid-3x3-auto {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.div-scroll-arrow-lottie {
  z-index: 9999;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

.lottie-animation {
  width: 120px;
}

.image-14 {
  position: absolute;
  top: 58%;
  left: 60%;
}

.grid-4 {
  grid-column-gap: 49px;
  grid-row-gap: 23px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-15 {
  border-radius: 120px;
}

.image-collab-portrait {
  border-radius: 150px;
}

.h4-collab-name {
  text-align: center;
  font-size: 36px;
  line-height: 36px;
}

.paragraph-4 {
  font-weight: 400;
}

.paragraph-5 {
  text-align: left;
}

.h2-collab-title {
  color: var(--unabrandcolor);
  text-align: center;
}

.container-full-width-hight {
  background-image: url('../images/Timeline-1_01_33_18_27.jpg');
  background-position: 50%;
  background-size: cover;
  min-width: 100vw;
  min-height: 80vh;
}

.container-full-width-hight._1 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-image: url('../images/Timeline-1_01_10_03_28.jpg');
  background-position: 50%;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 80vh;
  display: block;
  overflow: hidden;
}

.container-full-width-hight._2 {
  background-image: url('../images/Timeline-1_01_28_01_01.jpg');
  background-position: 50%;
  background-size: cover;
  min-height: 80vh;
}

.container-full-width-hight._3 {
  background-image: url('../images/Timeline-1_01_14_00_15.jpg');
  background-position: 50%;
  background-size: 140%;
  min-height: 80vh;
}

.container-full-width-hight._4 {
  background-image: url('../images/Timeline-1_01_04_06_01.jpg');
  background-position: 50%;
  background-size: cover;
  min-height: 80vh;
}

.container-full-width-hight._5 {
  background-image: url('../images/Charlotte_V3_MIX_01_00_04_23.jpg');
  background-position: 50%;
  background-size: cover;
  min-height: 80vh;
}

.container-full-width-hight._6 {
  background-image: url('../images/terrier.jpg');
  background-position: 50%;
  background-size: cover;
}

.container-full-width-hight._7 {
  background-image: url('../images/Timeline-1_01_02_31_08.jpg');
  background-position: 50%;
  background-size: cover;
}

.container-full-width-hight._8 {
  background-image: url('../images/HP.jpg');
  background-position: 50%;
  background-size: cover;
}

.container-full-width-hight._9 {
  background-image: url('../images/Timeline-1_01_09_37_18.jpg');
  background-position: 50%;
  background-size: cover;
}

.container-full-width-hight._11 {
  background-image: url('../images/feuDePoubelle.jpg');
  background-position: 50%;
  background-size: cover;
}

.container-full-width-hight._12 {
  background-image: url('../images/Timeline-1_01_01_10_27.jpeg');
  background-position: 50%;
  background-size: cover;
}

.container-full-width-hight.propos {
  background-image: none;
}

.heading {
  background-image: linear-gradient(to bottom, var(--black), var(--black));
  border-radius: 9px;
  padding-left: 20px;
  padding-right: 20px;
}

.text-block {
  color: #fff;
  text-align: left;
  background-color: #000;
  margin-bottom: 10px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.container {
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 80vh;
  display: flex;
}

.heading-2 {
  font-family: proxima-nova, sans-serif;
}

.heading-2.title {
  background-image: linear-gradient(#bd5200, #bd5200);
  margin-top: 10px;
  margin-bottom: 5px;
  padding: 5px 10px;
  font-size: 38px;
}

.cell {
  justify-content: flex-start;
  align-items: flex-end;
}

.text-subtitle {
  color: #fff;
  text-align: right;
  background-image: linear-gradient(#00000080, #00000080);
  margin-top: 0;
  padding: 5px;
  font-family: proxima-nova, sans-serif;
  font-size: 16px;
}

.quick-stack {
  grid-column-gap: 28px;
  padding: 0 0 35px;
}

.cell-2 {
  justify-content: center;
  align-items: flex-end;
}

.cell-3, .cell-4 {
  justify-content: flex-end;
  align-items: center;
}

._10 {
  background-image: url('../images/NT2.jpg');
  background-position: 50%;
  background-size: cover;
}

.image-16, .image-17 {
  border-radius: 20px;
}

.heading-3, .heading-4 {
  margin-top: 0;
}

.proposname {
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 42px;
}

.form-block {
  min-width: 100%;
}

.submit-button {
  background-color: #ec6e38;
  border-radius: 10px;
  min-width: 100%;
  margin-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: proxima-nova, sans-serif;
  font-size: 20px;
  line-height: 24px;
}

.section {
  clear: none;
  position: static;
}

.section.contact {
  padding-top: 140px;
  padding-bottom: 0;
}

.text-field, .text-field-2, .textarea {
  font-family: brandon-grotesque, sans-serif;
  font-size: 16px;
}

.cell-5 {
  justify-content: center;
  align-items: flex-start;
}

.heading-5 {
  margin-top: 0;
  margin-bottom: 5px;
}

.heading-6 {
  margin-bottom: 30px;
}

.section-propos {
  padding-top: 100px;
  padding-bottom: 100px;
}

.cell-6, .cell-7 {
  justify-content: center;
  align-items: flex-start;
}

@media screen and (min-width: 1440px) {
  .h1-hero-title {
    font-size: 72px;
    line-height: 76px;
  }

  .h1-hero-subtitle {
    letter-spacing: 5px;
    font-size: 26px;
    line-height: 26px;
  }

  .h2-main-title {
    letter-spacing: 4px;
    text-transform: none;
  }

  .h2-motto-title {
    font-size: 76px;
    line-height: 62px;
  }

  .container-section-title {
    max-width: 1100px;
  }

  .image-posters {
    width: 100%;
  }

  .image-social-icons {
    padding-top: 1px;
  }

  .container-default {
    max-width: 1100px;
  }

  .h1-hero-title-bande-demo {
    font-size: 62px;
    line-height: 70px;
  }

  .h2-hero-subtitle-bande-demo {
    padding-top: 10px;
    font-size: 32px;
    line-height: 36px;
  }

  .section-bande-demo {
    padding-top: 220px;
    padding-bottom: 220px;
  }

  .section-bande-demo.pitch {
    padding-top: 300px;
    padding-bottom: 500px;
  }

  .div-scroll-arrow-lottie {
    inset: auto 0% 0%;
  }

  .container-full-width-hight._1 {
    background-size: 140%;
  }

  .container-full-width-hight._8 {
    background-position: 100%;
    background-size: 120%;
  }
}

@media screen and (max-width: 991px) {
  h3 {
    font-size: 22px;
  }

  .nav-bar-link {
    color: var(--black);
  }

  .nav-bar-link:hover {
    background-color: var(--una-brand-hover-darker);
    color: var(--black);
    text-decoration: none;
  }

  .nav-bar-link.services, .nav-bar-link.services:hover {
    background-color: #0000;
  }

  .nav-bar-link.footer {
    color: #fff;
    background-color: #0000;
  }

  .nav-dropdown {
    background-color: var(--unabrandcolor);
  }

  .nav-dropdown:hover {
    background-color: var(--una-brand-hover-darker);
  }

  .hero-section {
    overflow: hidden;
  }

  .nav-menu {
    background-color: var(--unabrandcolor);
    left: 500px;
  }

  .nav-dropdown-carrot-icon {
    color: var(--black);
  }

  .grid-hero-section {
    grid-template-rows: auto auto;
    grid-template-columns: minmax(min-content, max-content);
  }

  .grid-hero-titles {
    padding-top: 0;
  }

  .h1-hero-subtitle.cities {
    text-align: center;
  }

  .html-embed {
    margin-bottom: -30px;
    margin-left: 0;
    margin-right: 0;
  }

  .section-parallax {
    overflow: hidden;
  }

  .menu-button {
    background-color: var(--unabrandcolor);
  }

  .nav-dropdown-link {
    padding-left: 45px;
  }

  .icon {
    color: var(--black);
  }

  .image {
    width: 445px;
  }

  .image-2 {
    width: 292px;
    top: 58%;
    left: 70%;
  }

  .image-3 {
    width: 615px;
    left: -15%;
  }

  .image-4 {
    z-index: 3;
    width: 443px;
    top: 30%;
    left: 40%;
  }

  .image-5 {
    width: 286px;
    left: -5%;
  }

  .image-6 {
    width: 639px;
    left: 2%;
  }

  .image-7 {
    width: 274px;
    top: 22%;
    left: 60%;
  }

  .image-8 {
    width: 282px;
    top: 78%;
    left: 10%;
  }

  .section-services-cards {
    overflow: hidden;
  }

  .section-black {
    height: 200px;
  }

  .section-title {
    overflow: hidden;
  }

  .h2-main-title {
    margin-top: 40px;
    font-size: 48px;
    line-height: 52px;
  }

  .h2-services-titles {
    font-size: 38px;
    line-height: 42px;
  }

  .section-motto {
    object-fit: fill;
    overflow: hidden;
  }

  .h2-motto-title {
    font-size: 68px;
  }

  .text-block-florishes {
    font-size: 100px;
  }

  .div-main-titles-holder {
    padding-left: 100px;
  }

  .section-productions, .section-a-propos, .section-contact {
    overflow: hidden;
  }

  .grid-contact-form {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .paragraph-3 {
    font-size: 16px;
    line-height: 20px;
  }

  .grid-hero-bande-demo {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .p-product-pages {
    font-size: 22px;
  }

  .div-bande-demo-forfaits-question {
    height: 150px;
  }

  .image-11 {
    top: 68%;
    left: -5%;
  }

  .image-12 {
    left: 45%;
  }

  .image-13 {
    top: 40%;
    left: 10%;
  }

  .div-scroll-arrow-lottie {
    width: 100%;
  }

  .image-14 {
    z-index: 2;
    top: 50%;
  }
}

@media screen and (max-width: 767px) {
  .brand {
    padding-left: 15px;
  }

  .hero-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .nav-menu {
    left: auto;
  }

  .h1-hero-title {
    font-size: 54px;
    line-height: 58px;
  }

  .div-flex-vertical-center {
    justify-content: center;
  }

  .grid-hero-titles {
    place-items: center;
  }

  .h1-hero-subtitle {
    letter-spacing: 4.4px;
    font-size: 18px;
    line-height: 24px;
  }

  .html-embed {
    margin-left: 10px;
  }

  .image {
    width: 345px;
  }

  .image-2 {
    width: 292px;
  }

  .image-3 {
    width: 515px;
    left: 5%;
  }

  .image-4 {
    width: 400px;
    top: 25%;
    left: 25%;
  }

  .image-5 {
    width: 286px;
    top: 25%;
    left: 5%;
  }

  .image-6 {
    width: 539px;
    left: 2.5%;
  }

  .image-7 {
    width: 274px;
    top: 60%;
    left: 10%;
  }

  .image-8 {
    width: 282px;
  }

  .section-services-cards {
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-1fr-1-5fr {
    grid-template-rows: auto auto;
  }

  .grid-1-5fr-1fr {
    grid-template-columns: 1.5fr;
  }

  .h2-main-title, .section-motto {
    padding-left: 20px;
  }

  .h2-motto-title {
    font-size: 60px;
    line-height: 58px;
  }

  .div-main-titles-holder {
    padding-left: 120px;
  }

  .section-a-propos, .section-contact {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-footer {
    height: auto;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-bande-demo {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-bande-demo.forfaits {
    padding-top: 0;
    padding-bottom: 0;
  }

  .grid-1fr-1fr-1fr {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .div-bande-demo-forfaits-question {
    height: 75px;
  }

  .div-captations-forfaits {
    height: 80px;
  }

  .paragraph-6, .paragraph-7 {
    font-size: 16px;
    line-height: 18px;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 40px;
    line-height: 44px;
  }

  h3 {
    font-size: 28px;
    line-height: 32px;
  }

  h4 {
    font-size: 30px;
    line-height: 34px;
  }

  p {
    font-size: 16px;
    line-height: 20px;
  }

  ul {
    font-size: 18px;
  }

  .text-block-logo-header {
    font-size: 18px;
    line-height: 24px;
  }

  .nav-bar-link {
    font-size: 16px;
    line-height: 16px;
  }

  .grid-hero-section {
    place-items: stretch stretch;
  }

  .h1-hero-title {
    font-size: 30px;
    line-height: 34px;
  }

  .div-flex-vertical-center {
    justify-content: flex-start;
  }

  .div-flex-vertical-center.hero-mobile {
    margin-top: -150px;
  }

  .h1-hero-subtitle {
    letter-spacing: 1.7px;
    padding-left: 0;
    font-size: 12px;
    line-height: 12px;
  }

  .html-embed {
    margin-bottom: 0;
    margin-left: 0;
    padding-left: 10px;
    transform: scale(.6);
  }

  .menu-button {
    padding-top: 22px;
  }

  .div-hero-lightbulb {
    object-fit: fill;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    margin-top: -100px;
    display: flex;
    overflow: hidden;
  }

  .nav-dropdown-link {
    padding-left: 35px;
    padding-right: 20px;
    font-size: 16px;
    line-height: 16px;
  }

  .parallax-container {
    height: 1700px;
  }

  .image {
    z-index: 3;
    width: 300px;
    top: 45%;
    left: 40%;
  }

  .image-2 {
    width: 200px;
    top: 45%;
    left: -20%;
  }

  .image-3 {
    width: 300px;
    top: 25%;
    left: -22%;
  }

  .image-4 {
    width: 250px;
    top: 20%;
    left: 25%;
  }

  .image-5 {
    width: 186px;
    top: 20%;
  }

  .image-6 {
    width: 300px;
    left: 3%;
  }

  .image-7 {
    width: 150px;
    top: 40%;
    left: 60%;
  }

  .image-8 {
    z-index: 2;
    top: 68%;
    left: -20%;
  }

  .grid-1fr-1-5fr {
    grid-row-gap: 14px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .div-flex-horizontal-center {
    align-items: stretch;
  }

  .div-flex-horizontal-center.about {
    align-items: center;
  }

  .grid-1-5fr-1fr {
    grid-template-rows: auto auto;
    grid-template-columns: 1.5fr;
  }

  .h2-main-title {
    padding-top: 8px;
    padding-left: 10px;
    font-size: 32px;
    line-height: 32px;
  }

  .h2-services-titles {
    font-size: 30px;
    line-height: 34px;
  }

  .section-motto {
    padding-right: 20px;
  }

  .h2-motto-title {
    font-size: 48px;
    line-height: 40px;
  }

  .text-block-florishes {
    font-size: 70px;
  }

  .div-main-titles-holder {
    padding-right: 20px;
  }

  .grid-section-productions-posters {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding-left: 50px;
    padding-right: 50px;
  }

  .h3-production-title {
    font-size: 30px;
    line-height: 34px;
  }

  .text-block-production-info {
    font-size: 12px;
    line-height: 16px;
  }

  .button-small {
    font-family: proxima-nova, sans-serif;
    font-size: 14px;
    line-height: 18px;
  }

  .button-small.lightbox {
    font-size: 14px;
    line-height: 18px;
  }

  .grid-1fr-1fr-a-propos {
    grid-template-columns: 1fr;
  }

  .image-rounded {
    width: 150px;
  }

  .text-block-contact-subtitle {
    font-size: 24px;
    line-height: 28px;
  }

  .div-form-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .section-footer {
    height: auto;
    padding-bottom: 60px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .h1-hero-title-bande-demo {
    font-size: 32px;
    line-height: 36px;
  }

  .h2-hero-subtitle-bande-demo {
    font-size: 18px;
    line-height: 22px;
  }

  .section-bande-demo {
    overflow: hidden;
  }

  .p-product-pages {
    font-size: 18px;
    line-height: 24px;
  }

  .p-productions {
    font-size: 20px;
    line-height: 24px;
  }

  .grid-testimonials {
    grid-template-columns: minmax(min-content, max-content);
  }

  .image-11 {
    z-index: 1;
    width: 200px;
    top: 65%;
    left: 45%;
  }

  .image-12 {
    top: 72%;
    left: 35%;
  }

  .image-13 {
    width: 200px;
    left: -15%;
  }

  .div-scroll-arrow-lottie {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    inset: auto 0% 0%;
  }

  .lottie-animation {
    width: 100px;
  }

  .image-14 {
    z-index: 2;
    width: 200px;
    top: 58%;
    left: -10%;
  }

  .heading-2.title {
    font-size: 26px;
  }

  .text-subtitle {
    font-size: 14px;
  }
}

#w-node-c115b7aa-37ad-fd41-365f-10d7e02404be-29852a0e {
  align-self: center;
}

#w-node-_9c5b626a-23cc-f8e4-59c2-ac07565d30cc-29852a0e, #w-node-_797b464f-3ab9-9713-97a9-6f256b8b2a4d-29852a0e, #w-node-_4522f51b-c835-e103-9cc9-814f4d88884e-29852a0e, #w-node-f9a7bf83-11db-4963-f6b2-8d0404e92407-29852a0e, #w-node-_87ec361b-8cf1-9455-35ff-be67525b49ac-29852a0e, #w-node-_563a37f1-fddc-f2b9-dbbc-7b6ef8084d36-29852a0e, #w-node-_27faffd6-60f8-17db-0d0f-77aac2a28211-29852a0e, #w-node-_713b2400-d154-e84d-3be7-2744c494cb3f-29852a0e, #w-node-e1581151-a6b2-3928-7bd1-d8e17645b068-29852a0e, #w-node-d99a1a48-19ca-52af-295a-2ee98def37f4-29852a0e, #w-node-ba7c65c8-1320-b70b-e418-0f68f209c58c-29852a0e, #w-node-_74fe008a-42b9-83d2-77bb-127277abce0f-29852a0e, #w-node-_47ed5acd-b162-ae48-7bde-5c39ad307970-29852a0e {
  grid-template-rows: auto;
  grid-template-columns: 3fr;
}

#w-node-_2321c0c7-b2e5-29dd-be7c-b45c2b8debde-29852a0e {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_2066d9e4-d691-aecc-f84b-a85185d454c5-29852a0e {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-cb771a67-997b-4f53-b8ca-47051196b5da-1196b5d4 {
  align-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_77ffbf30-b5d2-632b-55d9-db96510cb996-29852a0e {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_2066d9e4-d691-aecc-f84b-a85185d454c5-29852a0e {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  #w-node-c115b7aa-37ad-fd41-365f-10d7e02404be-29852a0e {
    justify-self: center;
  }

  #w-node-_2321c0c7-b2e5-29dd-be7c-b45c2b8debde-29852a0e {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_2066d9e4-d691-aecc-f84b-a85185d454c5-29852a0e {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}


