@charset "UTF-8";
/* ---------------------------------------------------------------------------- */
/* Imports */
/* ---------------------------------------------------------------------------- */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

i[class^=icon],
i[class*=" icon"] {
  display: flex;
  align-items: center;
}

/* ---------------------------------------------------------------------------- */
/* Components - Buttons */
/* ---------------------------------------------------------------------------- */
.text-link:hover {
  text-decoration: underline;
}

.button {
  overflow: hidden;
  position: relative;
  text-decoration: none;
  background: none;
  border-radius: 10px;
  border: 0;
  padding: 19px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .button {
    padding: clamp(0.625rem, 1.0416666667vw, 1.25rem) 20px;
  }
}
.button.border-radius {
  border-radius: 7px;
}
.button.small-button {
  padding: 10px 20px;
}
@media (min-width: 992px) {
  .button.small-button {
    padding: 5px 15px;
  }
}
.button span,
.button i {
  position: relative;
  z-index: 10;
  font-size: inherit;
  transition: all 0.3s ease;
}
.button:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.button.opaque-color-gradient {
  background: var(--color-gradient);
  color: var(--color-white);
}
.button.opaque-color-gradient:hover:after {
  opacity: 1;
}
.button.opaque-color-gradient:after {
  background: var(--color-gradient-button);
  opacity: 0;
}
.button.outline-color-gradient {
  background-image: var(--color-gradient-button);
  color: var(--color-black);
}
.button.outline-color-gradient:hover:after {
  opacity: 0;
}
.button.outline-color-gradient:hover span {
  color: var(--color-white);
}
.button.outline-color-gradient:hover i {
  color: var(--color-white) !important;
  background-image: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}
.button.outline-color-gradient:after {
  top: 2px;
  left: 2px;
  border-radius: 8px;
  background: var(--color-white);
  height: calc(100% - 4px);
  width: calc(100% - 4px);
  opacity: 1;
}
.button.outline-color-gradient i {
  background-image: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.button.outline-color-white {
  border: 1px solid var(--color-white);
  border-radius: 20px;
  color: var(--color-white);
}
.button.outline-color-white:hover:after {
  opacity: 0;
}
.button.outline-color-white:hover span {
  color: var(--color-white);
}
.button.outline-color-white:hover i {
  color: var(--color-white) !important;
}
.button.outline-color-white i {
  background-image: var(--color-white);
}

/* ---------------------------------------------------------------------------- */
/* Components - Content-text */
/* ---------------------------------------------------------------------------- */
.style-h1,
h1 {
  font-size: clamp(44px, 4.1666666667vw, 80px);
  line-height: 1.2;
}
@media (min-width: 992px) {
  .style-h1,
  h1 {
    line-height: 1.2;
  }
}

.style-h2,
h2 {
  font-size: clamp(35px, 2.8645833333vw, 55px);
  line-height: 1.3;
}
@media (min-width: 992px) {
  .style-h2,
  h2 {
    line-height: 1.3;
  }
}

.style-h3,
h3 {
  font-size: clamp(28px, 2.2916666667vw, 44px);
  line-height: 1.3;
}
@media (min-width: 992px) {
  .style-h3,
  h3 {
    line-height: 1.3;
  }
}

.style-h4,
h4 {
  font-size: clamp(25px, 1.8229166667vw, 35px);
  line-height: 1.3;
}
@media (min-width: 992px) {
  .style-h4,
  h4 {
    line-height: 1.3;
  }
}

.style-h5,
h5 {
  font-size: clamp(22px, 1.4583333333vw, 28px);
  line-height: 1.3;
}
@media (min-width: 992px) {
  .style-h5,
  h5 {
    line-height: 1.3;
  }
}

.style-h6,
h6 {
  font-size: clamp(18px, 1.1979166667vw, 23px);
  line-height: 1.3;
}
@media (min-width: 992px) {
  .style-h6,
  h6 {
    line-height: 1.3;
  }
}

.style-p {
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.5;
}
@media (min-width: 992px) {
  .style-p {
    line-height: 1.5;
  }
}

.style-font-content-text {
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.5;
}
@media (min-width: 992px) {
  .style-font-content-text {
    line-height: 1.5;
  }
}

.style-font-content-text-small {
  font-size: clamp(15px, 0.78125vw, 15px);
  line-height: 1.5;
}
@media (min-width: 992px) {
  .style-font-content-text-small {
    line-height: 1.5;
  }
}

.style-font-content-text-big {
  font-size: clamp(22px, 1.3541666667vw, 26px);
  line-height: 1.5;
}
@media (min-width: 992px) {
  .style-font-content-text-big {
    line-height: 1.5;
  }
}

.style-font-menu-mobile,
font-menu-mobile {
  font-size: clamp(22px, 3.0379746835vh, 26px);
  line-height: 1;
}
@media (min-width: 992px) {
  .style-font-menu-mobile,
  font-menu-mobile {
    line-height: 1;
  }
}

.style-font-button, .text-link, .button {
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1;
}
@media (min-width: 992px) {
  .style-font-button, .text-link, .button {
    line-height: 1;
  }
}

.style-font-button-small, .text-link.small-font, .button.small-button {
  font-size: clamp(13px, 0.78125vw, 15px);
  line-height: 1;
}
@media (min-width: 992px) {
  .style-font-button-small, .text-link.small-font, .button.small-button {
    line-height: 1;
  }
}

.style-font-main-menu, .header nav.menu-principal .menu li a, .header a:not(.button) {
  font-size: clamp(20px, 1.25vw, 28px);
  line-height: 1;
}
@media (min-width: 992px) {
  .style-font-main-menu, .header nav.menu-principal .menu li a, .header a:not(.button) {
    line-height: 1;
  }
}

.style-font-main-sub-menu, .header nav.menu-secondaire ul li a, .header nav.menu-principal .menu li .dropdown-menu-holder ul li a {
  font-size: clamp(15px, 1.0416666667vw, 20px);
  line-height: 1;
}
@media (min-width: 992px) {
  .style-font-main-sub-menu, .header nav.menu-secondaire ul li a, .header nav.menu-principal .menu li .dropdown-menu-holder ul li a {
    line-height: 1;
  }
}

.style-font-form {
  font-size: clamp(14px, 0.8333333333vw, 16px);
  line-height: 1;
}
@media (min-width: 992px) {
  .style-font-form {
    line-height: 1;
  }
}

.style-font-main {
  font-family: var(--font-main);
}

.style-font-secondary, .header nav.menu-secondaire ul li a {
  font-family: var(--font-secondary);
}

/* Font Weight */
.fw-thin {
  font-weight: 100 !important;
}

.fw-extralight {
  font-weight: 200 !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-regular, .header nav.menu-principal .menu li .dropdown-menu-holder ul li a {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold, .header nav.menu-principal .menu li a {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-extrabold {
  font-weight: 800 !important;
}

.fw-black {
  font-weight: 900 !important;
}

/* Titles */
h1 {
  font-weight: 600;
}

h1, h2, h3, h4, h5, h6,
.style-h1, .style-h2, .style-h3, .style-h4, .style-h5, .style-h6 {
  display: block;
  font-weight: 600;
  font-family: var(--font-main);
}

.suptitle {
  font: 400 1.5625rem/1.3 var(--font-main);
  margin-bottom: 30px;
}

/* Paragraphes */
.style-p,
p {
  font-family: var(--font-secondary);
}
.style-p strong,
p strong {
  font-weight: 700;
}

b, strong {
  font-weight: bold;
}

i, em, .style-italic {
  font-style: italic;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.4rem;
}

sub {
  bottom: -0.25rem;
}

.content-text,
.block-text .content-holder {
  /* ---------- Images ---------- */
}
.content-text > *:first-child,
.block-text .content-holder > *:first-child {
  margin-top: 0;
}
.content-text > *:last-child,
.block-text .content-holder > *:last-child {
  margin-bottom: 0;
}
.content-text h1:has(> [class^=style-]), .content-text h2:has(> [class^=style-]), .content-text h3:has(> [class^=style-]), .content-text h4:has(> [class^=style-]), .content-text h5:has(> [class^=style-]), .content-text h6:has(> [class^=style-]),
.block-text .content-holder h1:has(> [class^=style-]),
.block-text .content-holder h2:has(> [class^=style-]),
.block-text .content-holder h3:has(> [class^=style-]),
.block-text .content-holder h4:has(> [class^=style-]),
.block-text .content-holder h5:has(> [class^=style-]),
.block-text .content-holder h6:has(> [class^=style-]) {
  font-size: inherit !important;
  line-height: inherit !important;
  margin-bottom: 0;
}
.content-text h1, .content-text h2,
.content-text .style-h1, .content-text .style-h2,
.block-text .content-holder h1,
.block-text .content-holder h2,
.block-text .content-holder .style-h1,
.block-text .content-holder .style-h2 {
  margin-bottom: clamp(2.1875rem, 2.6041666667vw, 3.125rem);
}
.content-text h3, .content-text h4, .content-text h5, .content-text h6,
.content-text .style-h3, .content-text .style-h4, .content-text .style-h5, .content-text .style-h6,
.block-text .content-holder h3,
.block-text .content-holder h4,
.block-text .content-holder h5,
.block-text .content-holder h6,
.block-text .content-holder .style-h3,
.block-text .content-holder .style-h4,
.block-text .content-holder .style-h5,
.block-text .content-holder .style-h6 {
  margin-bottom: 25px;
}
.content-text .style-p,
.content-text p,
.block-text .content-holder .style-p,
.block-text .content-holder p {
  margin-bottom: 25px;
}
.content-text .style-p strong,
.content-text p strong,
.block-text .content-holder .style-p strong,
.block-text .content-holder p strong {
  font-family: var(--font-main);
  font-weight: 700;
}
.content-text .style-p + *:not(p):not(ol):not(ul):not(img),
.content-text p + *:not(p):not(ol):not(ul):not(img),
.block-text .content-holder .style-p + *:not(p):not(ol):not(ul):not(img),
.block-text .content-holder p + *:not(p):not(ol):not(ul):not(img) {
  margin-top: 40px;
}
.content-text .style-p:last-of-type,
.content-text p:last-of-type,
.block-text .content-holder .style-p:last-of-type,
.block-text .content-holder p:last-of-type {
  margin-bottom: 0 !important;
}
.content-text a:not(.button),
.block-text .content-holder a:not(.button) {
  background-image: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: underline !important;
}
.content-text hr,
.block-text .content-holder hr {
  height: 1px;
  display: block;
  margin: 3rem auto;
  background: var(--color-grey-light);
  border: none;
  clear: both;
}
.content-text ul,
.block-text .content-holder ul {
  list-style-type: disc;
}
.content-text ol,
.block-text .content-holder ol {
  list-style-type: decimal;
}
.content-text ul,
.content-text ol,
.block-text .content-holder ul,
.block-text .content-holder ol {
  padding-left: 25px;
  margin-bottom: 25px;
}
.content-text ul li,
.content-text ol li,
.block-text .content-holder ul li,
.block-text .content-holder ol li {
  margin: 2px 0;
  font-family: var(--font-secondary);
}
.content-text img,
.block-text .content-holder img {
  border-radius: 2px;
}
.content-text .alignleft,
.block-text .content-holder .alignleft {
  float: left;
  max-width: 45%;
  margin: 5px 35px 15px 0;
}
.content-text .alignleft.wp-caption,
.block-text .content-holder .alignleft.wp-caption {
  margin-right: 2rem;
}
.content-text .alignright,
.block-text .content-holder .alignright {
  float: right;
  max-width: 45%;
  margin: 5px 0 15px 35px;
}
.content-text .alignright.wp-caption,
.block-text .content-holder .alignright.wp-caption {
  margin-left: 2rem;
}
.content-text .aligncenter,
.block-text .content-holder .aligncenter {
  padding: 10px 0;
  margin: 0 auto 2rem;
  clear: both;
}
.content-text .aligncenter.wp-caption,
.block-text .content-holder .aligncenter.wp-caption {
  max-width: 100%;
}
.content-text .wp-caption p,
.block-text .content-holder .wp-caption p {
  color: #888;
  font: italic 12px/16px var(--font-main);
  text-align: center;
  padding: 0 5px;
  margin: 10px 10px 0 0;
}

/* ---------------------------------------------------------------------------- */
/* Layout - Header */
/* ---------------------------------------------------------------------------- */
/*
Utiliser la fonction map-get($colors, nom-de-la-couleur) pour les variables de couleur dynamique.
Les variables root ne fonctionneront pas vue à cause de l'utilisation de certaines mixins.
*/
.version-mobile .main {
  padding-top: 70px;
}
.version-mobile .header {
  position: fixed;
  top: 0;
  left: 0;
}
.version-mobile .header .header-container .header-items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px clamp(1.5625rem, 1.5625vw, 1.875rem);
}
.version-mobile .header .header-container .header-items .logo-holder {
  margin-bottom: 0;
}

/* ***** GÉNÉRAL ***** */
.header {
  width: 100%;
  z-index: 800;
  position: relative;
  transition: all 0.3s ease;
  /* Hint Colors */
  /* Hint General Elements */
  /* Hint Burger */
}
.header a,
.header i {
  color: #ffffff;
}
.header i {
  font-size: 21px !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header a:hover {
  color: var(--color-main);
}
.header .top-header {
  background: var(--color-main);
  padding: 5px 25px;
}
.header .top-header .single-button button {
  border: 0;
  background: none;
  padding: 0;
}
.header .header-container {
  display: flex;
  flex-direction: column;
  background: var(--color-gradient);
  height: 100%;
}
.header .header-container .header-items {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(0.9375rem, 1.5625vw, 1.875rem) clamp(1.5625rem, 1.5625vw, 1.875rem);
}
.header .header-container .header-items .logo-holder {
  margin-bottom: 10px;
}
.header .header-container .header-items .logo-holder .logo {
  position: relative;
}
.header .header-container .header-items .logo-holder .logo img {
  width: 150px;
}
@media (min-width: 1200px) {
  .header .header-container .header-items .logo-holder .logo img {
    width: clamp(13.4375rem, 17.4479166667vw, 20.9375rem);
  }
}
.header .header-container .header-items .menus-holder {
  flex-direction: column;
  justify-content: space-evenly;
  flex: 1;
  padding: 25px 0;
}
.header .header-container .header-buttons {
  background: var(--color-white);
  padding: clamp(0.9375rem, 1.5625vw, 1.875rem) clamp(1.5625rem, 1.5625vw, 1.875rem);
}
.header .header-container .header-buttons .single-button {
  margin-bottom: clamp(0.625rem, 0.78125vw, 0.9375rem);
}
.header .header-container .header-buttons .single-button:last-child {
  margin-bottom: 0;
}
.header .header-container .header-buttons .single-button .button {
  width: 100%;
}
.header .hamburger-holder .hamburger {
  transition: all 0.3s ease-in-out;
}
.header .hamburger-holder .hamburger .line {
  width: 24px;
  height: 2px;
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  border-radius: 100vh;
}
.header .hamburger-holder .hamburger .line:first-of-type {
  margin-top: 0;
}
.header .hamburger-holder .hamburger .line:last-of-type {
  margin-bottom: 0;
}
.header .hamburger-holder .hamburger:hover {
  cursor: pointer;
}
.header .hamburger-holder .hamburger.is-active {
  animation: smallbig 0.6s forwards;
}
.header .hamburger-holder .hamburger.is-active .line:nth-child(1),
.header .hamburger-holder .hamburger.is-active .line:nth-child(2),
.header .hamburger-holder .hamburger.is-active .line:nth-child(3) {
  transition-delay: 0.2s;
}
.header .hamburger-holder .hamburger.is-active .line:nth-child(2) {
  opacity: 0;
}
.header .hamburger-holder .hamburger.is-active .line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header .hamburger-holder .hamburger.is-active .line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.header .phone-holder {
  display: flex;
  justify-content: end;
  width: 24px;
}

.header nav.menu-principal .menu li {
  margin-bottom: clamp(0.9375rem, 1.8229166667vw, 2.1875rem);
}
.header nav.menu-principal .menu li a {
  display: flex;
  align-items: center;
}
.header nav.menu-principal .menu li a:hover span {
  transform: translateX(15px);
}
.header nav.menu-principal .menu li a span {
  display: inline-block;
  transition: all 0.3s ease;
}
.header nav.menu-principal .menu li a .icon {
  display: flex;
  justify-content: center;
  margin-right: 10px;
  width: 26px;
}
.header nav.menu-principal .menu li a img {
  max-height: 27px;
}
.header nav.menu-principal .menu li .dropdown-icon {
  display: none;
}
.header nav.menu-principal .menu li .dropdown-menu-holder {
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 100%;
  transform: translateX(-100%);
  margin: 0;
  padding: 70px 45px;
  width: 720px;
  height: 100%;
  background: var(--color-secondary);
  pointer-events: none;
  transition: all 0.8s cubic-bezier(0.15, 0.65, 0.25, 1);
}
.header nav.menu-principal .menu li .dropdown-menu-holder.submenu-active {
  transform: translateX(0);
  pointer-events: auto;
}
.header nav.menu-principal .menu li .dropdown-menu-holder .close-holder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 120px;
}
.header nav.menu-principal .menu li .dropdown-menu-holder .close-holder p {
  color: var(--color-white);
}
.header nav.menu-principal .menu li .dropdown-menu-holder .close-holder .close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
}
.header nav.menu-principal .menu li .dropdown-menu-holder .close-holder .close i {
  font-size: 24px !important;
}
.header nav.menu-principal .menu li .dropdown-menu-holder ul li {
  margin-bottom: 15px;
  position: relative;
}
.header nav.menu-principal .menu li .dropdown-menu-holder ul li a {
  padding: 5px;
  width: 100%;
  display: block;
  margin: 0 !important;
  text-align: left;
  position: relative;
}
.header nav.menu-secondaire ul li {
  margin-bottom: clamp(0.5rem, 0.78125vw, 0.9375rem);
}
.header nav.menu-secondaire ul li a:hover {
  text-decoration: underline;
}
.header nav.menu-secondaire ul li ul {
  display: none;
}
.header nav ul li {
  display: flex;
  align-items: stretch;
}
.header nav ul li:last-of-type {
  margin-bottom: 0;
}
.header nav ul li a {
  position: relative;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.header nav ul li.current_page_parent > a, .header nav ul li.current-menu-item > a, .header nav ul li.current-menu-parent > a, .header nav ul li.current-page-parent > a, .header nav ul li.current_page_item > a {
  font-weight: bold;
}

.banner {
  position: relative;
  color: #fff;
  background: var(--color-main);
  padding: 3.125rem 0;
  min-height: 33vh;
  overflow: hidden;
}
.banner.full-height {
  min-height: 33vh;
}
@media (min-width: 992px) {
  .banner.full-height {
    min-height: auto;
  }
}
.banner.two-third-height {
  min-height: 33vh;
}
@media (min-width: 992px) {
  .banner.two-third-height {
    min-height: 66vh;
  }
}
.banner.mid-height {
  min-height: 50vh;
}
@media (min-width: 992px) {
  .banner.mid-height {
    min-height: 50vh;
  }
}
.banner.one-third-height {
  min-height: 33vh;
}
@media (min-width: 992px) {
  .banner.one-third-height {
    min-height: 33vh;
  }
}
.banner.banner_map.auto-height {
  min-height: 260px;
}
.banner video {
  z-index: 1;
  position: absolute;
  left: 0;
  transform: scale(5);
}
@media (min-width: 768px) {
  .banner video {
    transform: scale(2.5);
  }
}
@media (min-width: 1200px) {
  .banner video {
    transform: scale(1.25);
  }
}
.banner .video-holder {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 11;
}
.banner .video-holder:hover {
  cursor: pointer;
}
.banner .video-holder:hover .play .stroke-dotted {
  stroke-width: 2px;
  opacity: 1;
}
.banner .video-holder:hover .play .stroke-solid {
  opacity: 0;
  stroke-dashoffset: 300;
}
.banner .video-holder a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.banner .video-holder a .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 111;
}
.banner .video-holder a .play .stroke-dotted {
  stroke-width: 1px;
  stroke-dasharray: 4, 5;
  transform-origin: 50% 50%;
  animation: spin 4s infinite linear;
  transition: stroke-width 1s ease;
}
.banner .video-holder a .play .stroke-solid {
  stroke-dashoffset: 0;
  stroke-dashArray: 300;
  stroke-width: 2px;
  transition: stroke-dashoffset 1s ease, opacity 1s ease;
}
.banner .svg-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner .overlay-banner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 11;
  background-blend-mode: multiply;
}
.banner .container {
  z-index: 11;
}
.banner .banner-background {
  width: 100%;
  min-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.banner.video_banner {
  position: relative;
}
.banner.video_banner .btn-banner {
  position: absolute;
  z-index: 111;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.banner.video_banner .btn-banner:hover .play {
  opacity: 1;
}
.banner.video_banner .btn-banner:hover .play .stroke-dotted {
  stroke-width: 4px;
  opacity: 1;
}
.banner.video_banner .btn-banner:hover .play .stroke-solid {
  opacity: 0;
  stroke-dashoffset: 300;
}
.banner.video_banner .btn-banner:hover .play .icon {
  transform: scale(1.05);
}
.banner.video_banner .btn-banner .stroke-solid {
  stroke-dashoffset: 0;
  stroke-dashArray: 300;
  stroke-width: 4px;
  -webkit-transition: stroke-dashoffset 1s ease, opacity 1s ease;
  transition: stroke-dashoffset 1s ease, opacity 1s ease;
}
.banner.video_banner .btn-banner .play {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translatey(-50%) translatex(-50%);
  z-index: 9999;
  opacity: 0;
  width: 2px;
}
.banner .banner-container {
  display: flex;
  flex-direction: column;
}
.banner .banner-container h1,
.banner .banner-container p {
  color: var(--color-white);
}
.banner .banner-container.align-center {
  align-items: center;
}
.banner .banner-container.align-center .banner-content {
  max-width: 1090px;
  text-align: center;
}
.banner .banner-container.align-left {
  align-items: flex-start;
}
.banner .banner-container.align-left .banner-content {
  text-align: left;
  max-width: 560px;
}
.banner .banner-container.align-right {
  align-items: flex-end;
}
.banner .banner-container.align-right .banner-content {
  text-align: right;
  max-width: 560px;
}