/* PREVENT SELECTION */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* PREVENT IMAGE DRAG */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

/* RESET */
/* Reset the basic styles for all elements */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  line-height: 1.7;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*:focus {
  outline: none;
}

/* Eliminate dotted outlines for links, buttons and form elements */
a:focus,
a:active,
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner {
  border: 0;
  outline: 0;
}

/* PRELOADER START */
.preloader-bg,
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  z-index: 999999;
}

#preloader {
  display: table;
  table-layout: fixed;
}

#preloader-status {
  display: table-cell;
  vertical-align: middle;
}

.preloader-position {
  position: relative;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}

.loader {
  position: relative;
  width: 45px;
  height: 45px;
  left: 50%;
  top: auto;
  margin-left: -22px;
  margin-top: 2px;
  animation: rotate 1s infinite linear;
  border: 3px solid rgba(17, 17, 17, 0.15);
  border-radius: 50%;
}

.loader span {
  position: absolute;
  width: 45px;
  height: 45px;
  top: -3px;
  left: -3px;
  border: 3px solid transparent;
  border-top: 3px solid rgba(17, 17, 17, 0.75);
  border-radius: 50%;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* PRELOADER END */

/* SOUND CONTROL START */
.sound-control {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
  left: 3.13rem;
  bottom: 2.8rem;
  color: #fff;
  z-index: 100;
}

.sound-toggle {
  background: transparent;
  border: none;
  color: inherit;
  font-size: 1rem;
  transition: transform 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  outline: none;
}

.sound-toggle:hover {
  color: #22d4d4;
  opacity: 0.5;
}

/* SOUND CONTROL END */

/* SOCIAL ICONS START */
.social-icons {
  position: absolute;
  display: flex;
  bottom: 2.8rem;
  right: 3.13rem;
  gap: 1.25rem;
  z-index: 100;
}

.social-icon {
  color: white;
  font-size: 16px;
  transition: transform 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  outline: none;
  background: transparent;
  border: none;
  appearance: none;
}

.social-icon:hover {
  color: #22d4d4;
  opacity: 0.5;
}
/* SOCIAL ICONS END */

/* =================================================== */
/* SECTION 01 SECTION START */
.section-01-fullscreen,
.html-video-container,
.section-01-fullscreen-video,
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section-01-fullscreen {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.video-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.section-01-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

.section-01-content-title,
.section-01-content-subtitle {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  padding: 0;
  text-size-adjust: 100%;
  font-smoothing: antialiased;
}

.section-01-content-title {
  font-size: 10rem;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
  margin-left: -9px;
}

.section-01-content-subtitle {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #fff;
  color: #000;
}

/* MESSAGE VOLUME ICONE */
.click-to-unmute {
  position: absolute;
  font-family: "Oswald", sans-serif;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px 1.25rem;
  border-radius: 6px;
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.click-to-unmute.hide {
  opacity: 0;
  pointer-events: none;
}

/* SECTION 01 SECTION END */
/* 4. section */
.sections {
  position: relative;
  z-index: 5;
}

.nopadding {
  padding: 0 !important;
  margin: 0 !important;
}

.section {
  overflow: hidden;
}

/* 4.1. section IMG */
.section-bg-home {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#section0 {
  background: none;
}

#section0.section0-light {
  background: #fff;
}

#section1,
#section2,
#section3,
#section4,
#section7,
#section8 {
  background: #000;
  z-index: 11;
}

#section5,
#section6,
#section9 {
  background: #fff;
}

/* 5. hero */
/* 5.1. hero container */
.hero-fullscreen {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  z-index: 0;
}

/* 5.2. hero bg */
.hero-bg {
  position: relative;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* 5.3. hero fullscreen FIX */
.hero-fullscreen-FIX {
  width: 100%;
  height: 100%;
}

/* 4.2 navigation */
/* 4.2.1. navigation icon */
.navigation-icon-wrapper {
  position: fixed;
  width: 2.2rem;
  height: 1.6rem;
  top: 2.6rem;
  right: 3.12rem;
  cursor: pointer;
  z-index: 99998;
}

.navigation-icon .line {
  display: block;
  width: 2.2rem;
  height: 3px;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}

#navigation-icon.active .line:nth-child(1) {
  -webkit-transform: translateY(11px);
  -moz-transform: translateY(11px);
  -ms-transform: translateY(11px);
  -o-transform: translateY(11px);
  transform: translateY(11px);
  background-color: #fff;
}

#navigation-icon.navigation-icon-dark.active .line:nth-child(1) {
  background-color: #111;
}

#navigation-icon.active .line:nth-child(3) {
  -webkit-transform: translateY(-11px);
  -moz-transform: translateY(-11px);
  -ms-transform: translateY(-11px);
  -o-transform: translateY(-11px);
  transform: translateY(-11px);
  background-color: #fff;
}

#navigation-icon.navigation-icon-dark.active .line:nth-child(3) {
  background-color: #111;
}

.navigation-icon .line.line-dark {
  background: #fff;
}

/* 4.2.2. navigation bg and links */
nav.navigation-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  text-align: center;
  visibility: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transform: scale(0.75);
  -moz-transform: scale(0.75);
  -ms-transform: scale(0.75);
  -o-transform: scale(0.75);
  transform: scale(0.75);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  z-index: 1001;
}

nav.navigation-menu.navigation-menu-light {
  background: #fff;
}

nav.navigation-menu.show {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  visibility: visible;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

nav.navigation-menu.navigation-menu-light.show {
  background: #fff;
}

nav.navigation-menu a {
  text-decoration: none;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

nav.navigation-menu a:hover {
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

nav.navigation-menu a:link,
nav.navigation-menu a:visited,
nav.navigation-menu a:active {
  color: #fff;
}

nav.navigation-menu.navigation-menu-light a:link,
nav.navigation-menu.navigation-menu-light a:visited,
nav.navigation-menu.navigation-menu-light a:active {
  color: #111;
}

nav.navigation-menu li a.active {
  color: #777;
}

nav.navigation-menu.navigation-menu-light li a.active {
  color: #999;
}

nav.navigation-menu li {
  margin: 0 0 7px 0;
}

nav.navigation-menu li.last {
  margin: 0;
}

nav.navigation-menu a {
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: none;
}

/* 4.2.3. navigation brackets */
.brackets a::before,
.brackets a::after {
  display: inline-block;
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
  -moz-transition: -moz-transform 0.3s, opacity 0.2s;
  -ms-transition: -ms-transform 0.3s, opacity 0.2s;
  -o-transition: -o-transform 0.3s, opacity 0.2s;
  transition: transform 0.3s, opacity 0.2s;
}

.brackets a::before {
  content: "\2014";
  margin-right: 10px;
  -webkit-transform: translateX(1.25rem);
  -moz-transform: translateX(1.25rem);
  -ms-transform: translateX(1.25rem);
  -o-transform: translateX(1.25rem);
  transform: translateX(1.25rem);
}

.brackets a::after {
  content: "";
  margin-left: 10px;
  -webkit-transform: translateX(-1.25rem);
  -moz-transform: translateX(-1.25rem);
  -ms-transform: translateX(-1.25rem);
  -o-transform: translateX(-1.25rem);
  transform: translateX(-1.25rem);
}

.brackets a:hover::before,
.brackets a:hover::after,
.brackets a:focus::before,
.brackets a:focus::after {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}

.brackets ul,
li {
  list-style: none;
}

.brackets a,
.brackets a:hover,
.brackets a:visited {
  text-decoration: none;
}

/* 4.2.4. navigation IMG */
.navigation-menu-img-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.navigation-menu-img {
  position: absolute;
  width: 50%;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

.menu-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}

.menu-img.active {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.navigation-menu-txt {
  position: relative;
  width: 50%;
  height: auto;
  left: 50%;
}

/* scroll indicator */
.scroll-indicator-wrapper {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 10;
}

.scroll-indicator {
  position: absolute;
  width: 1px;
  height: 3.12rem;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(191, 191, 191, 0.25);
  mix-blend-mode: overlay;
}

.scroll-indicator.scroll-indicator-dark {
  background-color: rgba(0, 0, 0, 0.25);
}

.scroll-indicator::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 50%;
  -webkit-animation: teardrop 2s cubic-bezier(0.76, 0.05, 0.86, 0.06) infinite;
  animation: teardrop 2s cubic-bezier(0.76, 0.05, 0.86, 0.06) infinite;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
  background: linear-gradient(
    top,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
}

@-webkit-keyframes teardrop {
  0% {
    top: -10%;
    opacity: 0;
    height: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100%;
    height: 75%;
  }
}
@keyframes teardrop {
  0% {
    top: -10%;
    opacity: 0;
    height: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100%;
    height: 75%;
  }
}

.scroll-indicator.scroll-indicator-dark::before {
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  background: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

/* 4.7. section heading */
.section-heading,
.section-heading-dark {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
  color: #fff;
  line-height: 1.25;
  padding: 0 0 1.25rem 5.3rem;
}

.section-heading-dark {
  color: #111;
}

.mfw-vide {
  display: flex;
}
/* 5. about section */
/* 5.1. about IMG */
.mfw-content-wrapper,
.mfm-content-wrapper,
.hiw-content-wrapper,
.about-bg-wrapper,
.about-content-wrapper {
  position: relative;
  height: 100vh;
}

.mfw-bg,
.mfm-bg,
.hiw-bg,
.about-bg {
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  /* background-color: #000; */
}

.mfw-bg .img-responsive,
.mfm-bg .img-responsive {
  display: block;
  max-width: 100%;
  /* height: auto; */
  margin: 0 auto;
}

/* about content */
.about-content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #000;
}

/* .services-content .services-content-inner, */
.about-content .about-content-inner {
  position: relative;
  width: 100%;
  padding: 0 25px;
  text-align: center;
}

.about-content-inner h3 {
  font-family: "Oswald", sans-serif;
  font-size: 23px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
}

/* MEMBERSHIP FOR MEN AND WOMEN START */
.mfw-content .section-heading,
.mfm-content .section-heading,
.mfw-content .section-heading-dark,
.mfm-content .section-heading-dark {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #111;
  line-height: 1.25;
  /* padding: 0 0 1.25rem 5.3rem; */
}

.mfm-content .section-heading-dark {
  color: #111;
}

.mfw-content,
.mfm-content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #fff;
}

.mfw-content .mfw-content-inner .mfm-content .mfm-content-inner {
  position: relative;
  width: 100%;
  padding: 0 25px;
  text-align: center;
}

.mfw-content-inner h3,
.mfm-content-inner h3 {
  font-family: "Oswald", sans-serif;
  font-size: 23px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  /* text-align: center; */
  color: #111;
}

/* Membership of men / women  TXT */
.mfw-txt,
.mfm-txt {
  margin: 0 5.3rem;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  padding: 0 1.25rem 0 0;
  color: #111;
  text-align: justify;
  max-height: 40rem;
  overflow: auto;
}

/* ========================================== */
/*                  SCROLLBAR                 */
/* ========================================== */
.news-text-txt,
.mfw-txt,
.mfm-txt {
  --sb-track-color: #fff;
  --sb-thumb-color: #111;
  --sb-size: 1px;
}

.news-text-txt::-webkit-scrollbar,
.mfw-txt::-webkit-scrollbar,
.mfm-txt::-webkit-scrollbar {
  width: var(--sb-size);
}

.news-text-txt::-webkit-scrollbar-track,
.mfw-txt::-webkit-scrollbar-track,
.mfm-txt::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 3px;
}

.news-text-txt::-webkit-scrollbar-thumb,
.mfw-txt::-webkit-scrollbar-thumb,
.mfm-txt::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 3px;
}

/* Style pour Firefox */
/* @supports (scrollbar-width: thin) {
  .news-text-txt,
  .mfw-txt,
  .mfm-txt {
    scrollbar-width: thin;
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}

@supports not selector(::-webkit-scrollbar) {
  .news-text-txt,
  .mfw-txt,
  .mfm-txt {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
} */
/* ========================================== */
/* MEMBERSHIP FOR MEN END */

/* about TXT */
.about-txt {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  margin: 0 5.3rem;
  padding: 0 1.25rem 0 0;
  color: #fff;
  text-align: justify;
  max-height: 40.6rem;
}
.about-txt.scrollable {
  overflow: auto;
}
.services-txt,
.about-txt {
  --sb-track-color: #111;
  --sb-thumb-color: #fff;
  --sb-size: 1px;
}

.services-txt::-webkit-scrollbar,
.about-txt::-webkit-scrollbar {
  width: var(--sb-size);
}

.services-txt::-webkit-scrollbar-track,
.about-txt::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 3px;
}

.services-txt::-webkit-scrollbar-thumb,
.about-txt::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 3px;
}

/* =========================================================== */
/* services section */
/* =========================================================== */

.formula-section {
  display: flex;
  margin: 0 0 15px 5.3rem;
}

.formula-badge {
  font-family: "Oswald", sans-serif;
  display: inline-block;
  border-radius: 3px;
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  color: #111;
  line-height: 1.25;
  padding: 3px 10px;
  background-color: #fff;
}

.services-text-container {
  color: #fff;
  -webkit-overflow-scrolling: touch;
}

.services-text-container .services-txt {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  color: #fff;
  padding: 0 1.25rem 0 0;
  max-height: 16.38rem;
  overflow: auto;
}

/* Description principale */
.main-description {
  line-height: 1.6;
  position: relative;
}

/* Sections Important et Inclus */
.info-sections {
  display: flex;
  flex-direction: column;
  margin: 15px 0 0 0;
}

.important-section,
.included-section {
  display: flex;
}

.important-section h3,
.included-section h3 {
  font-family: "Oswald", sans-serif;
  text-decoration: underline;
  font-weight: bold;
}

.important-section p {
  color: #f7f200;
}

.services-text-container::-webkit-scrollbar {
  width: 1px;
}

.services-text-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.services-text-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

/* services TXT */
.services-txt,
.services-txt-dark {
  margin: 0 5.3rem;
  text-align: justify;
}

.services-txt {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  color: #fff;
  padding: 0 1.25rem 0 0;
  max-height: 19.37rem;
  overflow: auto;
}

.services-txt-dark,
.services-txt-dark a,
.services-txt-dark a:hover {
  color: #5f5f5f;
}

/* services container */
.services-container {
  position: relative;
  width: 100%;
  height: 50vh;
  margin: 0;
  padding: 0;
  background: #fff;
  text-align: center;
}

.services-container.services-container-dark {
  background: #000;
}

.services-content-wrapper,
.services-bg-wrapper {
  position: relative;
  height: 50vh;
}

.services-bg {
  height: 50vh;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* ============================FEAT__SERVICES */
.services-content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #000;
}

.services-content .services-content-inner {
  position: relative;
  width: 100%;
  padding: 0 25px;
  text-align: center;
}

.services-content-inner h3 {
  font-family: "Oswald", sans-serif;
  font-size: 23px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
}

/* FORM MEMBERSHIP FOR MEN START */
.join-form-container {
  font-family: "Oswald", sans-serif;
  width: 43.75rem;
  margin: 15px auto;
  padding: 1.25rem;
  border-radius: 8px;
  /* height: 95vh; */
}

.join-form-container h1 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
}

.join-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
  justify-content: space-around;
}

.join-form input,
.join-form select,
.join-form textarea {
  flex: 1 1 calc(33.333% - 15px);
  padding: 8px;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  font-size: 14px;
  background: #fff;
}

.join-form input::placeholder,
.join-form textarea::placeholder {
  color: #999;
}

.join-form textarea {
  font-family: "Oswald", sans-serif;
  text-align: left;
  font-weight: 500;
}

.form-row select {
  color: #999;
  padding: 0 0 0 3px;
}

.form-row select:focus {
  cursor: pointer;
  border-color: #999;
  color: #333;
}

.form-row select:hover {
  cursor: pointer;
}

.languages,
.photo-upload {
  margin: 10px 0;
  width: 100%;
  padding: 8px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #d0d0d0;
}

.photo-upload label span {
  color: #999;
  font-weight: 300;
  font-size: 12px;
  display: inline-block;
}

/* ZIP CODE START */
.form-row.three-col {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

/* Container pour Zip Code et City */
.form-row.three-col .location-group {
  display: flex;
  gap: 15px;
  width: 49%;
}

/* Zip Code et City auront chacun 50% de leur container */
.form-row.three-col .location-group input:first-child {
  flex: 0.3; /* Pour le Zip Code */
  width: 49%;
}

/* Country prend la même largeur que Last Name */
.form-row.three-col .location-group input:last-child {
  flex: 0.7; /* Pour la City */
}
/* ZIP CODE END */

.upload-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.upload-btn button {
  background: #000;
  color: #fff;
  padding: 6px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

/* LANGAGES START */
.languages {
  margin: 10px 0;
  width: 100%;
}

.language-options {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  width: 100%;
}

.language-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.language-row label {
  /* display: flex; */
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  justify-content: flex-start;
}
/* LANGAGES END */

.join-form textarea {
  width: 100%;
  min-height: 80px;
  margin: 0 0 10px 0;
  resize: vertical;
  padding: 8px;
}

.join-form button[type="submit"] {
  width: 100%;
  padding: 15px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  font-weight: bold;
}

.join-form button[type="submit"]:hover {
  background: #333;
}

/* FORM MEMBERSHIO FOR MEN END */

/*  works section */
/* works IMG carousel */
.works-page-img-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.works-page-img-wrapper a,
.works-page-img-wrapper a:hover {
  color: #fff;
}

.works-page-img-carousel-item {
  position: relative;
  width: 100%;
  height: 50vh;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  overflow: hidden;
}

.panel-left-bg-all img,
.works-page-img-carousel-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* works IMG carousel items */
.works-page-img-carousel-title h4 {
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  line-height: 1.25;
  padding: 0 0 8px 0;
  margin: 0 0 -5px 0;
  text-shadow: 1px 1px 2px #111;
}
.works-page-img-carousel-title p {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  line-height: 1.25;
  padding: 0 0 8px 0;
  margin: 0 0 -5px 0;
  text-shadow: 1px 1px 2px #111;
}

.works-page-img-carousel-spacer-top {
  margin-top: 26px;
}

.works-page-img-carousel-wrapper {
  /* position: relative; */
  background: none;
  height: 100vh;
  z-index: 1;
}

.works-page-img-carousel-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  -ms-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  background-color: rgba(0, 0, 0, 0.7);
}

.works-page-img-carousel-wrapper .works-page-img-carousel-text {
  position: absolute;
  width: 100%;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  left: -10px;
  bottom: 3.12rem;
  padding: 0 60px;
  z-index: 10;
}

.works-page-img-carousel-wrapper
  .works-page-img-carousel-text
  .works-page-img-carousel-heading {
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  line-height: 1.5;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px #111;
  letter-spacing: 0.05em;
}

.works-page-img-carousel-heading.works-page-img-carousel-heading-dark {
  text-align: left;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 37px;
  margin-top: -30px;
  color: #111;
}

.works-page-img-carousel-heading.works-page-img-carousel-heading-dark span {
  display: block;
  font-style: italic;
  font-weight: 700;
  padding-top: 7px;
  color: #5f5f5f;
}

.owl-stage-outer
  .owl-stage
  .owl-item
  .works-page-img-carousel-item
  .works-page-img-carousel-wrapper
  .works-page-img-carousel-text
  .works-page-img-carousel-heading
  .social-icon-flag
  img {
  width: 1.5rem;
  height: auto;
  display: inline-block;
  position: inherit;
  margin: 0.5rem 0 0 0;
}

.social-icon-flag img {
  width: 1.4rem;
  height: auto;
  display: inline-block;
  position: inherit;
  margin: 0.5rem 0 0 0;
}

.works-page-img-carousel-wrapper
  .works-page-img-carousel-text
  .works-page-img-carousel-content {
  max-height: 0;
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  overflow: hidden;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.works-page-img-carousel-wrapper:hover::after {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.works-page-img-carousel-wrapper:hover .works-page-img-carousel-content {
  max-height: 600px;
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transition: all 1s ease-in;
  -moz-transition: all 1s ease-in;
  -ms-transition: all 1s ease-in;
  -o-transition: all 1s ease-in;
  transition: all 1s ease-in;
}

/* news section */
/* news IMG carousel */
.news-page-img-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.news-page-img-carousel-item {
  position: relative;
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  overflow: hidden;
}

.panel-left-bg-all img,
.news-page-img-carousel-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* news IMG carousel items */
.news-page-img-carousel-title h4 {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  line-height: 1.25;
  padding: 0 0 10px 0;
  margin: 0 0 -5px 0;
  text-shadow: 1px 1px 2px #111;
}

.news-page-img-carousel-spacer-top {
  margin-top: 42px;
}

.works-page-img-carousel-spacer-bottom,
.news-page-img-carousel-spacer-bottom {
  margin-top: 25px;
}

.news-page-img-carousel-wrapper {
  position: relative;
  background: none;
  height: 100vh;
  z-index: 1;
}

.news-page-img-carousel-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  -ms-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  background-color: rgba(0, 0, 0, 0.7);
}

.news-page-img-carousel-wrapper .news-page-img-carousel-text {
  position: absolute;
  width: 100%;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  left: -10px;
  bottom: 3.12rem;
  padding: 0 60px;
  z-index: 10;
}

.news-page-img-carousel-wrapper
  .news-page-img-carousel-text
  .news-page-img-carousel-heading {
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  line-height: 1.5;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px #111;
  letter-spacing: 0.05em;
}

.news-page-img-carousel-heading.news-page-img-carousel-heading-dark {
  text-align: left;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 37px;
  margin-top: -30px;
  color: #111;
}

.news-page-img-carousel-heading.news-page-img-carousel-heading-dark span {
  display: block;
  font-style: italic;
  font-weight: 700;
  padding-top: 7px;
  color: #5f5f5f;
}

.news-page-img-carousel-wrapper
  .news-page-img-carousel-text
  .news-page-img-carousel-content {
  max-height: 0;
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  overflow: hidden;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.news-page-img-carousel-wrapper:hover::after {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.news-page-img-carousel-wrapper:hover .news-page-img-carousel-content {
  max-height: 600px;
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transition: all 1s ease-in;
  -moz-transition: all 1s ease-in;
  -ms-transition: all 1s ease-in;
  -o-transition: all 1s ease-in;
  transition: all 1s ease-in;
}

/* news more IMG carousel items */
/* news panel left */
.panel-left {
  position: absolute;
  width: 50%;
  height: 100vh;
  overflow: hidden;
  top: 0;
  left: -100%;
  background: #000;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  z-index: 99;
}

.panel-left.open {
  left: 0;
}

/* news panel left BG */
.panel-left-bg-all {
  position: absolute;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* news panel right */
.panel-right {
  position: absolute;
  width: 50%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  top: 0;
  right: -100%;
  background: #fff;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  z-index: 99;
}

.panel-right.open {
  right: 0;
}

.member-footer {
  margin-top: 3.75rem;
}

/* news panel right TXT */
.news-content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #fff;
}

.news-content .news-content-inner {
  position: relative;
  width: 100%;
  padding: 0 50px;
  text-align: center;
}

.height-correction {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: -100px;
}

.text-title h4 {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
  color: #fff;
  line-height: 1.25;
  padding: 0 0 15px 0;
  margin-left: -2px;
}

.text-title.text-title-dark h4 {
  color: #111;
}

.text-title .news-more-subtitle {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
  color: #5f5f5f;
  line-height: 1.25;
  padding: 0 0 10px 0;
}

.name-flag-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.name-flag-container h4 {
  margin: 0;
}

/* FLAG START */
.member-info {
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-info-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.member-name-section {
  display: flex;
  align-items: center;
  gap: 8px;
}

.member-badge-section {
  display: flex;
  align-items: center;
  gap: 8px;
}

.member-badge {
  font-family: "Oswald", sans-serif;
  font-weight: 200;
  display: inline-block;
  padding: 3px 7px;
  font-size: 12px;
  line-height: 1.25;
  color: #5f5f5f;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #eee;
  border-radius: 5px;
  letter-spacing: 0.05rem;
}
/* FLAG END */

.name-flag-container .social-icon-flag {
  margin: -15px 0 0 15px;
  font-size: 1.2em;
  line-height: 1;
}

.news-text-txt {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  line-height: 100px;
  margin-top: 40px;
  text-align: justify;
  max-height: 28.13rem;
  overflow: auto;
}

.news-text-txt p {
  position: relative;
  top: -7px;
  line-height: 2;
  padding: 0 1.25rem 0 0;
}

.text-spacer {
  position: absolute;
  left: 0;
}

/* contact section */
/* contact container */
.contact-container,
.contact-bg-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: #fff;
  text-align: center;
}

.contact-bg {
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* contact info */
.contact-info-mail {
  display: block;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.contact-info-mail a,
.contact-info-mail a:hover {
  text-decoration: none;
}

/* contact social icons */
.metrics-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  align-items: center;
  justify-content: flex-start;
  background-color: #fff;
  /* padding: 10px 1.25rem; */
  border-radius: 5px;
  margin: 0 auto;
  z-index: 1;
}

.metrics-container img {
  height: 4rem;
  width: auto;
}

/* contact form */
#contact-form {
  width: 100%;
  margin: 22px auto 0 auto;
  padding: 0;
  text-align: center;
  line-height: 1;
}

form {
  margin: 0;
  padding: 0;
}

#form input {
  position: relative;
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #5f5f5f;
  border-left: none;
  border-right: none;
  border-top: none;
  padding: 5px 5px;
  background: none;
  margin: 10px 0 10px 0;
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  font-style: normal;
  font-weight: normal;
  text-align: center;
  color: #5f5f5f;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

textarea {
  position: relative;
  width: 100%;
  height: 100px;
  border-bottom: 1px solid #5f5f5f;
  border-left: none;
  border-right: none;
  border-top: none;
  padding: 5px 5px;
  background: none;
  margin: 5px;
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  font-style: normal;
  font-weight: normal;
  text-align: center;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

#form textarea {
  color: #5f5f5f;
  margin: 10px 0 10px 0;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

#form input:hover,
#form textarea:hover {
  border-color: rgba(95, 95, 95, 0.35);
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

#form input:focus,
#form textarea:focus {
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.success {
  font-family: "Raleway", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  color: #5f5f5f;
  margin: 0 auto;
  padding: 39px 0 13px 0;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#form .error {
  position: absolute;
  font-size: 9px;
  text-transform: uppercase;
  color: #5f5f5f;
  display: block;
  margin: 0;
  padding: 0;
  letter-spacing: 0.15em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 200px !important;
}

.make-space {
  margin-left: 15px;
  margin-right: 15px;
}

::-webkit-input-placeholder {
  /* font-size: 12px; */
  color: #5f5f5f;
}
:-ms-input-placeholder {
  /* font-size: 12px; */
  color: #5f5f5f;
}
::-moz-placeholder {
  /* font-size: 12px; */
  color: #5f5f5f;
}
input:-moz-placeholder {
  /* font-size: 12px; */
  color: #5f5f5f;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}
input:focus:-ms-input-placeholder {
  color: transparent;
}
input:focus::-moz-placeholder {
  color: transparent;
}
input:focus:-moz-placeholder {
  color: transparent;
}

textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
textarea:focus:-ms-input-placeholder {
  color: transparent;
}
textarea:focus::-moz-placeholder {
  color: transparent;
}
textarea:focus:-moz-placeholder {
  color: transparent;
}

/* overlay */
.overlay:before,
.overlay-video:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.overlay:before {
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}

.overlay-video:before {
  -webkit-pointer-events: auto;
  -moz-pointer-events: auto;
  pointer-events: auto;
}

.overlay-inverse-dark-35:before {
  background: -moz-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  background: -webkit-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
}

.overlay-dark-60:before {
  background: rgba(0, 0, 0, 0.6);
}

.overlay-light-80:before {
  background: rgba(255, 255, 255, 0.8);
}

/* center container */
.center-container-home {
  position: relative;
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
  background: none;
  text-align: center;
  z-index: 10;
}

.center-block-home {
  display: table-cell;
  vertical-align: middle;
}

.center-container {
  position: absolute;
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
  background: none;
}

.center-block {
  display: table-cell;
  vertical-align: middle;
}

.center-container-menu {
  position: relative;
  display: table;
  width: 100%;
  height: 100%;
}

.center-block-menu {
  display: table-cell;
  vertical-align: middle;
}

/*  LOGIN */
nav.navigation-menu .login-link a {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  font-family: Arial, sans-serif;
  font-size: 12px;
  opacity: 0.6;
}

.login-link a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.login-link:hover {
  opacity: 1;
}

/* button effect */
.c-btn {
  font-family: "Oswald", sans-serif;
  position: relative;
  display: inline-block;
  border: none;
  background: #fff;
  letter-spacing: 0.25em;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  color: #111;
  margin: 1.25rem 0 0 0;
  padding: 15px 25px;
  -webkit-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.c-btn-contact-modal-wrapper-only {
  padding: 18px 25px 16px 25px;
}

.c-btn.fullwidth-liquid {
  width: 225px;
  color: #fff;
  background: #111;
  border: none;
}

.c-btn.inverse {
  color: #111;
  background: #fff;
}

.c-btn.inverse-dark {
  color: #fff;
  background: #111;
}

.c-btn.fullwidth {
  width: 225px;
}

.c-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #000;
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-btn.fullwidth-liquid::before {
  background: #db0018;
}

.c-btn.inverse::before {
  background: #db0018;
}

.c-btn.inverse-dark::before {
  background: #db0018;
}

.c-btn:hover::before,
a:hover .c-btn::before {
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}

.c-btn span {
  display: inline-block;
  position: relative;
  z-index: 2;
}

.c-btn:hover,
a:hover .c-btn {
  color: #fff;
}

.c-btn.fullwidth-liquid:hover {
  color: #fff;
}

.c-btn.inverse:hover {
  color: #fff;
}

.c-btn.inverse-dark:hover {
  color: #fff;
}

/* section title */
.section-title-vertical {
  position: absolute;
  left: 23px;
  bottom: 0;
  font-family: "Oswald", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 1px 1px 2px #111;
  z-index: 20;
}

.section-title-vertical.right-side {
  left: auto;
  right: 56px;
}

.section-title-vertical span {
  writing-mode: vertical-rl;
  white-space: nowrap;
}

.section-title-vertical:after {
  content: "";
  display: block;
  width: 2px;
  height: 3.12rem;
  background-color: #fff;
  margin: 1.25rem 0 0 12px;
}

/* vertical spacer line */
.spacer-line-vertical-dark,
.spacer-line-vertical-light {
  position: relative;
  display: block;
}

.spacer-line-vertical-dark::after,
.spacer-line-vertical-light::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 25px;
  top: 100%;
  left: 50%;
  margin: -1px auto 0 auto;
}

.spacer-line-vertical-dark::after {
  border-right: 1px solid #5f5f5f;
}

.spacer-line-vertical-light::after {
  border-right: 1px solid #fff;
}

/*  Slick v1.6.0 CUSTOM */
/* 1. slick slide flickering FIX */
.slick-track,
.slick-list {
  -webkit-perspective: 2000;
  perspective: 2000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 2. slick about */
.slick-about {
  width: 100%;
  height: auto;
}

/* 3. slick navigation */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  top: 50%;
  width: 60px;
  height: 60px;
  line-height: normal;
  text-align: center;
  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  z-index: 1;
  visibility: visible;
}

.slick-services .slick-prev,
.slick-services .slick-next {
  top: 50%;
}

.slick-prev {
  left: 0px;
}

.slick-next {
  right: 0px;
}

.slick-prev:before,
.slick-next:before {
  font-size: 11px;
  color: #111;
  padding-top: 14px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  display: block;
  width: 66%;
  height: 66%;
  position: absolute;
  background: #fff;
  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.slick-prev:before {
  left: 55px;
  top: 9px;
}

.slick-next:before {
  right: 55px;
  top: 9px;
}

.slick-prev:hover,
.slick-next:hover {
  -webkit-transition: 0 none;
  -moz-transition: 0 none;
  -ms-transition: 0 none;
  -o-transition: 0 none;
  transition: 0 none;
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.slick-about,
.slick-services,
.slick-hiw,
.slick-mfm,
.slick-mfw,
.slick-activities {
  cursor: auto;
}

.slick-prev:hover:before,
.slick-next:hover:before,
.slick-prev:active:before,
.slick-next:active:before,
.slick-about:hover .slick-prev,
.slick-about:hover .slick-next,
.slick-services:hover .slick-prev,
.slick-services:hover .slick-next,
.slick-hiw:hover .slick-prev,
.slick-hiw:hover .slick-next,
.slick-mfm:hover .slick-prev,
.slick-mfm:hover .slick-next,
.slick-mfw:hover .slick-prev,
.slick-mfw:hover .slick-next,
.slick-activities:hover .slick-prev,
.slick-activities:hover .slick-next,
.slick-fullscreen-slideshow-zoom-fade:hover .slick-prev,
.slick-fullscreen-slideshow-zoom-fade:hover .slick-next {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.slick-about:hover .slick-prev,
.slick-services:hover .slick-prev,
.slick-hiw:hover .slick-prev,
.slick-mfm:hover .slick-prev,
.slick-mfw:hover .slick-prev,
.slick-activities:hover .slick-prev,
.slick-fullscreen-slideshow-zoom-fade:hover .slick-prev {
  left: -25px;
}

.slick-about:hover .slick-next,
.slick-services:hover .slick-next,
.slick-hiw:hover .slick-next,
.slick-mfm:hover .slick-next,
.slick-mfw:hover .slick-next,
.slick-activities:hover .slick-next,
.slick-fullscreen-slideshow-zoom-fade:hover .slick-next {
  right: -25px;
}

/* 4. slick fullscreen slideshow */
.slick-fullscreen-img-fill {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

.slick-fullscreen-img-fill img {
  position: relative;
  display: inline-block;
  min-width: 100%;
  max-width: none;
  min-height: 100%;
}

.slick-fullscreen .slick-fullscreen-item .slick-fullscreen-img-fill,
.slick-fullscreen-slideshow .slick-fullscreen-item .slick-fullscreen-img-fill,
.slick-fullscreen-slideshow-zoom-fade
  .slick-fullscreen-item
  .slick-fullscreen-img-fill {
  height: 100vh;
  background: none;
}

.slick-fullscreen .slick-fullscreen-item .slick-fullscreen-img-fill .bg-img,
.slick-fullscreen-slideshow
  .slick-fullscreen-item
  .slick-fullscreen-img-fill
  .bg-img,
.slick-fullscreen-slideshow-zoom-fade
  .slick-fullscreen-item
  .slick-fullscreen-img-fill
  .bg-img {
  position: relative;
  width: auto;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.slick-fullscreen .slick-dots,
.slick-fullscreen-slideshow .slick-dots,
.slick-fullscreen-slideshow-zoom-fade .slick-dots {
  position: absolute;
  width: 100%;
  height: 5px;
  left: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  list-style-type: none;
}

.slick-fullscreen .slick-dots li button,
.slick-fullscreen-slideshow .slick-dots li button,
.slick-fullscreen-slideshow-zoom-fade .slick-dots li button {
  display: none;
}

.slick-fullscreen .slick-dots li,
.slick-fullscreen-slideshow .slick-dots li,
.slick-fullscreen-slideshow-zoom-fade .slick-dots li {
  position: absolute;
  float: left;
  width: 0;
  height: 5px;
  left: -5px;
  background: #fff;
}

.slick-fullscreen .slick-dots li.slick-active,
.slick-fullscreen-slideshow .slick-dots li.slick-active,
.slick-fullscreen-slideshow-zoom-fade .slick-dots li.slick-active {
  width: 100%;
  -webkit-animation: progressDots 4s both;
  -moz-animation: progressDots 4s both;
  -ms-animation: progressDots 4s both;
  -o-animation: progressDots 4s both;
  animation: progressDots 4s both;
}

@-webkit-keyframes progressDots {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes progressDots {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.slick-fullscreen,
.slick-fullscreen-slideshow,
.slick-fullscreen-slideshow-zoom-fade {
  background: none;
}

.slick-fullscreen .slick-slide,
.slick-fullscreen-slideshow .slick-slide,
.slick-fullscreen-slideshow-zoom-fade .slick-slide {
  display: none;
  float: left;
  height: 100%;
}

.slick-initialized .slick-slide {
  display: block;
}

/* 5. slick fullscreen slideshow ZOOM/FADE transition */
.slick-fullscreen-slideshow-zoom-fade .slick-fullscreen-item .bg-img {
  -webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  -moz-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  -ms-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  -o-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}

.slick-fullscreen-slideshow-zoom-fade
  .slick-fullscreen-item.slick-active
  .bg-img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/*  Owl Carousel v2.2.0 CUSTOM */
.owl-buttons {
  position: static;
}

/* 1. Owl Carousel navigation */
.owl-prev,
.owl-next {
  position: absolute;
  display: block;
  top: 50%;
  margin-top: -29px;
  width: 60px;
  height: 60px;
  line-height: normal;
  font-size: 11px;
  padding-top: 23px;
  color: #111;
  text-align: center;
  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: visible;
}

.owl-prev {
  left: -50px;
  padding-left: 21px;
}

.owl-next {
  right: -50px;
  padding-right: 21px;
}

.owl-prev:before,
.owl-next:before {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  content: "";
  display: block;
  width: 66%;
  height: 66%;
  position: absolute;
  background: #fff;
  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}

.owl-prev:before {
  left: 5.3rem;
  top: 9px;
}

.owl-next:before {
  right: 5.3rem;
  top: 9px;
}

.owl-prev .owl-custom,
.owl-next .owl-custom {
  position: relative;
}

.owl-prev .owl-custom {
  position: relative;
  left: 64px;
}

.owl-next .owl-custom {
  position: relative;
  right: 64px;
}

.owl-prev:hover,
.owl-next:hover {
  -webkit-transition: 0 none;
  -moz-transition: 0 none;
  -ms-transition: 0 none;
  -o-transition: 0 none;
  transition: 0 none;
}

.owl-prev:hover:before,
.owl-next:hover:before,
.owl-prev:active:before,
.owl-next:active:before,
.owl-carousel:hover .owl-prev,
.owl-carousel:hover .owl-next {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.owl-carousel:hover .owl-prev {
  left: -2.2rem;
}

.owl-carousel:hover .owl-next {
  right: -2.2rem;
}

/* Magnific Popup v1.1.0 CUSTOM */
.mfp-arrow-left:after {
  font-family: "Ionicons";
  content: "\f124";
  font-size: 18px;
  color: #fff;
  margin-top: 22px;
}

.mfp-arrow-right:after {
  font-family: "Ionicons";
  content: "\f125";
  font-size: 18px;
  color: #fff;
  margin-top: 22px;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: crosshair;
}

.mfp-arrow-left:after,
.mfp-arrow-left:before {
  border-right: none;
}

.mfp-arrow-right:after,
.mfp-arrow-right:before {
  border-left: none;
}

.mfp-title {
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* fullPage v2.9.4 CUSTOM */

#fp-nav.right,
#fp-nav.left {
  z-index: -1 !important;
  display: none;
  visibility: hidden;
}

/* 25. override */
a,
a:hover,
a:visited,
a:active,
a:focus,
p a,
p a:hover {
  text-decoration: none;
}

.bottom-credits,
.bottom-credits a,
.bottom-credits a:hover,
.c-btn,
.c-btn::before,
.c-btn:hover::before,
a:hover .c-btn::before {
  font-weight: 800;
}

.skillbar-title,
.skill-bar-percent,
.facts-counter-description-img,
.facts-counter-title,
a.button-link,
.center-container-contact-modal p,
.success,
#form .error {
  font-weight: 700;
}

.news-page-img-carousel-wrapper
  .news-page-img-carousel-text
  .news-page-img-carousel-heading,
.works-page-img-carousel-wrapper
  .works-page-img-carousel-text
  .works-page-img-carousel-heading,
.news-page-img-carousel-heading {
  font-weight: 700;
  letter-spacing: 0.05em;
}

#form input,
#form textarea {
  font-weight: 600;
}

.news-page-img-carousel-wrapper .news-page-img-carousel-text {
  font-weight: 500;
  letter-spacing: 0.05em;
}

.skillbar-bar {
  height: 1px;
}

/* ========================================================== */
/* ========================================================== */
/* .services-content .section-heading,
.services-content .section-heading-dark {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
  color: #fff;
  line-height: 1.25;
  padding: 0 0 1.25rem 5.3rem;
} */

/* MODALS MEMBERS */
.member-more-1.panel-left.open,
.member-more-2.panel-left.open,
.member-more-3.panel-left.open,
.member-more-4.panel-left.open,
.member-more-5.panel-left.open,
.member-more-6.panel-left.open,
.member-more-7.panel-left.open,
.member-more-8.panel-left.open,
.member-more-9.panel-left.open,
.member-more-10.panel-left.open {
  left: 0;
}

.member-more-1.panel-right.open,
.member-more-2.panel-right.open,
.member-more-3.panel-right.open,
.member-more-4.panel-right.open,
.member-more-5.panel-right.open,
.member-more-6.panel-right.open,
.member-more-7.panel-right.open,
.member-more-8.panel-right.open,
.member-more-9.panel-right.open,
.member-more-10.panel-right.open {
  right: 0;
}

.member-details {
  margin-top: 1.25rem;
  padding: 15px;
  background: #f5f5f5;
  border-radius: 5px;
}

#contact-form .join-form-container h1 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 300;
  text-align: left;
  text-transform: uppercase;
}

#contact-form .join-form-container .join-form input {
  padding: 10px 8px;
}

#contact-form .join-form-container .join-form textarea {
  height: 130px;
}

/* Style du footer */
.social-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #e5e4e4;
}

/* Container des icônes sociales */
.contact-social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* Style des liens sociaux */
.social-link {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #666;
}

/* Container des informations de marque */
.brand-info {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.brand-info a {
  color: #111;
}

/* Style du lien CGV-CGU */
.brand-link {
  color: #666;
  text-decoration: none;
  font-size: 14px;
}

.brand-link:hover {
  text-decoration: underline;
}

/* ARTICLE */
.cgv-content {
  padding: 1rem 2.5rem;
  color: #333;
  max-height: 40.62rem;
  overflow: auto;
  margin: 0 40px 60px 0;
}

.cgv-article {
  margin-bottom: 15px;
}

.article-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
}

.article-text {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 1rem;
}

.cgv-content .text-spacer {
  padding: 5rem 2.5rem;
  bottom: 0;
}

/* ===========CGV-CONTENT SROLLBAR */
.cgv-content {
  --sb-track-color: #fff;
  --sb-thumb-color: #111;
  --sb-size: 1px;
}

.cgv-content::-webkit-scrollbar {
  width: var(--sb-size);
}

.cgv-content::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 3px;
}

.cgv-content::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 3px;
}

@supports not selector(::-webkit-scrollbar) {
  .cgv-content {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}

/* ========= */
.contact-more-1.panel-right,
.contact-more-2.panel-right,
.contact-more-3.panel-right {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  top: 0;
  right: -100%;
  background: #fff;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity = 100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  z-index: 99;
}

.contact-more-1.panel-right.open,
.contact-more-2.panel-right.open,
.contact-more-3.panel-right.open {
  right: 0;
}

.contact-more-1 .mfw-content,
.contact-more-2 .mfw-content,
.contact-more-3 .mfw-content {
  background: #fff;
}

.contact-more-1 .mfw-content-wrapper .mfw-content .mfw-content-inner h2,
.contact-more-2 .mfw-content-wrapper .mfw-content .mfw-content-inner h2,
.contact-more-3 .mfw-content-wrapper .mfw-content .mfw-content-inner h2 {
  font-weight: 700;
}

.panel-right .mfw-content .section-heading {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #111;
  line-height: 1.25;
  padding: 0 0 1.25rem 40px;
}

/* REST */
.hiw-bg,
.about-bg {
  position: relative;
  overflow: hidden;
  width: 50vw;
  height: 100vh;
}

.img-responsive {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  margin: 0;
}

video.img-responsive {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 0;
  margin: 0;
}

/* ======================
   MOBILE FIRST APPROACH
   ====================== */

/* Base styles (for mobile) */
.navigation-icon .line.line-light,
.navigation-icon .line.line-dark {
  background: #111;
}

/* Navigation and UI elements */
nav.navigation-menu a {
  font-size: 15px;
}

/* .navigation-icon-wrapper {
  top: 17px;
  right: 25px;
} */

/* Intro elements */
.intro-subtitle {
  font-size: 15px;
  margin: 0 0 14px 0;
}

#intro-title {
  font-size: 55px;
  margin: 0 0 0 -4px;
}

/* Background elements */
/* .hiw-bg,
.about-bg,
.services-bg,
.contact-bg {
  min-height: 350px;
} */

.services-content-inner h3,
.about-content-inner h3,
.mfw-content-inner h3,
.mfm-content-inner h3 {
  font-size: 18px;
  /* padding: 0 10px; */
}

/* News and works elements */
.news-page-img-wrapper,
.works-page-img-wrapper {
  width: 100%;
}

.news-page-img-carousel-wrapper .news-page-img-carousel-text,
.works-page-img-carousel-wrapper .works-page-img-carousel-text {
  font-size: 13px;
  left: 0;
  padding: 0 50px;
}

.news-page-img-carousel-heading.news-page-img-carousel-heading-dark,
.works-page-img-carousel-heading.works-page-img-carousel-heading-dark {
  text-align: center;
  padding-bottom: 0;
  margin-top: -14px;
}

.news-page-img-carousel-heading.news-page-img-carousel-heading-dark span,
.works-page-img-carousel-heading.works-page-img-carousel-heading-dark span {
  padding-top: 5px;
}

/* Contact elements */
.contact-info-mail {
  font-size: 16px;
  margin: 0 0 32px 0;
}

.contact-modal-launcher-wrapper {
  width: 280px;
  margin: 24px auto 40px auto;
}

a.button-link {
  font-size: 10px;
  letter-spacing: 0.55em;
}

a.button-link span {
  padding: 0 0 0 24px;
}

a.button-link:before {
  width: 10px;
  top: 1.25rem;
}

a.button-link i {
  padding: 0;
  top: 4px;
}

a.button-link:hover i {
  left: 30px;
}

.contact-modal,
.contact-modal.open {
  width: 100%;
  height: 100vh;
}

#contact-form {
  margin: 21px auto 0 auto;
}

.spacer-line-vertical-dark::after,
.spacer-line-vertical-light::after {
  height: 3.12rem;
  margin: 9px auto 0 auto;
}

/* Sliders and carousels */
.slick-prev,
.slick-next {
  /* top: auto;
  bottom: 0;
  margin-top: -29px; */
}

.slick-prev:before,
.owl-prev:before {
  left: 60px;
}

.slick-next:before,
.owl-next:before {
  right: 60px;
}

.owl-prev .owl-custom {
  left: 39px;
}

.owl-next .owl-custom {
  right: 39px;
}

.desktop-reverse {
  display: flex;
}
.desktop-reverse .image-col {
  order: -1;
}
.desktop-reverse .text-col {
  order: 1;
}

/* RECAPTCHA */
.g-recaptcha {
  margin: 0 0 10px 0;
}

/* ===================================
/* Mobile (petits écrans) - 320 x 620  */
/* =================================== */
@media only screen and (max-width: 320px) and (orientation: portrait) {
  /* slick */
  .slick-about:hover .slick-prev,
  .slick-services:hover .slick-prev,
  .slick-hiw:hover .slick-prev,
  .slick-mfm:hover .slick-prev,
  .slick-mfw:hover .slick-prev,
  .slick-activities:hover .slick-prev,
  .slick-fullscreen-slideshow-zoom-fade:hover .slick-prev {
    left: -62px;
  }
  .slick-about:hover .slick-next,
  .slick-services:hover .slick-next,
  .slick-hiw:hover .slick-next,
  .slick-mfm:hover .slick-next,
  .slick-mfw:hover .slick-next,
  .slick-activities:hover .slick-next,
  .slick-fullscreen-slideshow-zoom-fade:hover .slick-next {
    right: -62px;
  }
  .slick-prev:before,
  .slick-next:before {
    width: 35%;
  }

  /* HERO */
  .navigation-icon-wrapper {
    position: fixed;
    width: 2.2rem;
    height: 1.6rem;
    top: 1rem;
    right: 1.12rem;
  }
  .section-01-content-title {
    font-size: 3rem;
  }
  .section-01-content-subtitle {
    font-size: 0.5rem;
  }
  .click-to-unmute {
    top: 62%;
    font-size: 10px;
  }
  .navigation-icon .line {
    width: 1.5rem;
    height: 2px;
    margin: 5px auto;
  }
  .navigation-icon.active .line {
    width: 1.5rem;
    height: 2px;
    margin: 9px auto;
  }
  .social-icon,
  .sound-toggle {
    font-size: 1.1rem;
  }
  .navigation-menu-img {
    width: 0%;
  }
  .navigation-menu-txt {
    width: 100%;
    left: 0;
  }
  nav.navigation-menu .login-link a {
    font-size: 10px;
  }

  /* ABOUT */
  .hiw-bg,
  .about-bg {
    position: relative;
    overflow: hidden;
    width: 100vw;
    /* height: 50vw; */
  }
  .services-txt,
  .about-txt {
    margin: 0;
    max-height: 30.3rem;
    overflow: auto;
  }
  .about-content-inner .section-heading,
  .about-content-inner .section-heading-dark {
    padding: 0 0 0.8rem 0;
  }
  .section-heading,
  .section-heading-dark {
    padding: 0 0 0.8rem 1.9rem;
  }
  .section-title-vertical {
    z-index: -1 !important;
    display: none;
    visibility: hidden;
  }

  /* MFM&MFW */
  .mfw-txt,
  .mfm-txt,
  .services-txt {
    padding: 0 15px 0 30px;
  }
  .mobile-reverse {
    display: flex;
    flex-direction: column;
  }
  .mobile-reverse .image-col {
    order: -1;
  }
  .mobile-reverse .text-col {
    order: 1;
  }
  .services-container {
    height: 100vh;
  }
  .services-content {
    /* margin: 2rem 0 0 0; */
    padding: 0 30px 0 0;
  }
  .services-content-wrapper {
    height: 100vh;
  }
  .about-bg-wrapper,
  .services-bg-wrapper {
    height: 50vh;
  }
  .services-txt,
  .services-txt-dark {
    margin: 0;
  }
  .formula-section {
    margin: 0 30px 15px 30px;
  }
  .services-text-container .services-txt {
    padding: 0 15px 0 30px;
    max-height: 27rem;
  }
  .hiw-content-wrapper,
  .image-content-responsive {
    height: 50vh;
  }
  .mfw-bg,
  .mfm-bg,
  .hiw-bg,
  .about-bg {
    height: 50vh;
  }
  .mfw-txt,
  .mfm-txt {
    margin: 0;
    max-height: 30.3rem;
  }
  .mfw-content,
  .mfm-content {
    padding: 0 30px 0 0;
  }
  .mfw-content .section-heading,
  .mfm-content .section-heading,
  .mfw-content .section-heading-dark,
  .mfm-content .section-heading-dark {
    font-size: 1.4rem;
  }

  /* FORM */
  .join-form-container {
    font-family: "Oswald", sans-serif;
    width: 98%;
    padding: 0 15px 0 0;
    margin: 100px 30px 8rem 22px;
    border-radius: 8px;
    max-height: 33rem;
    overflow: auto;
  }
  .form-row.three-col {
    flex-direction: column;
  }
  .form-row.three-col .location-group {
    /* flex-direction: column; */
    width: 100%;
  }
  .form-row.three-col .location-group input,
  .form-row.three-col select {
    width: 100%;
  }
  .form-row.three-col .location-group input:first-child,
  .form-row.three-col .location-group input:last-child {
    flex: 1;
    width: 100%;
  }
  .form-row select {
    padding: 8px;
  }
  .language-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  #contact-form {
    margin: 20px auto 70px auto;
  }
  #contact-form .join-form-container {
    width: 92%;
    max-height: 15.5rem;
    margin: 40px 30px 8rem 22px;
  }

  /* MEMBER */
  .news-page-img-carousel-wrapper .news-page-img-carousel-text,
  .works-page-img-carousel-wrapper .works-page-img-carousel-text {
    padding: 0 15px;
  }
  .works-page-img-carousel-title h4 {
    font-size: 17px;
  }
  .works-page-img-carousel-title p {
    font-size: 12px;
  }
  .c-btn {
    font-size: 10px;
    padding: 10px 15px;
  }
  .metrics-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.3rem;
    align-items: center;
    justify-content: space-between;
  }

  /* MODAL'S MEMBER */
  .news-content .news-content-inner {
    padding: 0 15px;
  }
  .text-title h4 {
    font-size: 1.3rem;
  }
  .news-text-txt {
    margin-top: 10px;
    max-height: 8.13rem;
    overflow: auto;
    font-size: 14px;
  }
  #section7 .news-text-txt {
    max-height: 10.13rem;
  }
  .metrics-container img {
    height: 1.9rem;
  }

  .text-title .news-more-subtitle {
    font-size: 0.8rem;
  }
  .text-title .news-more-subtitle {
    padding: 0;
  }
  .member-footer {
    margin-top: 0.8rem;
  }
  .name-flag-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    padding-top: 2rem;
  }
  .text-title h4 {
    padding: 0 0 5px 0;
  }
  #section7 .text-title h4 {
    padding: 2rem 0 5px 0;
  }
  .member-badge {
    font-size: 9px;
  }

  /* CONTACT */
  .cgv-content {
    padding: 0 1.5rem 1rem 1.5rem;
    max-height: 27.62rem;
    margin: 0 0 30px 0;
  }
  .panel-right .mfw-content .section-heading {
    font-size: 1.8rem;
    padding: 0 0 0.8rem 22px;
  }
  .cgv-content .text-spacer {
    padding: 1.5rem 1.5rem;
    bottom: -233%;
  }
  .image-content-responsive-large .mfw-bg {
    height: 100vh;
  }
  #section8 .mfw-content-wrapper .mfw-bg,
  #section8 .mfw-content-wrapper {
    height: 30vh;
  }
  .contact-container {
    height: 70vh;
  }

  /* Modal contact */
  #section8 .mfw-content-inner.m-scrollable-text {
    margin: 25rem 0 0 0;
  }

  /* PANEL */
  .panel-left {
    width: 100%;
    height: 30vh;
    left: 0;
    top: -100%;
  }
  #section7 .panel-right,
  #section6 .panel-right {
    width: 100%;
    height: 70vh;
    right: 0;
    top: 100%;
  }
  .panel-left.open {
    top: 0;
  }
  #section7 .panel-right.open,
  #section6 .panel-right.open {
    top: 30vh;
  }
  .news-content {
    height: 100%;
    padding: 1rem;
    box-sizing: border-box;
    overflow-y: auto;
  }
  .panel-left,
  #section7 .panel-right,
  #section6 .panel-right {
    z-index: 999;
  }
  #section7 .mfw-content-wrapper .mfw-bg,
  #section7 .mfw-content-wrapper,
  #section6 .mfw-content-wrapper .mfw-bg,
  #section6 .mfw-content-wrapper {
    height: 30vh;
  }
  .name-flag-container .social-icon-flag {
    margin: -7px 0 0 15px;
  }
}

/* ===================================
/* Mobile (écrans moyennes) - 350 x 640  */
/* =================================== */
@media only screen and (min-width: 321px) and (max-width: 375px) and (orientation: portrait) {
  /* slick */
  .slick-about:hover .slick-prev,
  .slick-services:hover .slick-prev,
  .slick-hiw:hover .slick-prev,
  .slick-mfm:hover .slick-prev,
  .slick-mfw:hover .slick-prev,
  .slick-activities:hover .slick-prev,
  .slick-fullscreen-slideshow-zoom-fade:hover .slick-prev {
    left: -62px;
  }
  .slick-about:hover .slick-next,
  .slick-services:hover .slick-next,
  .slick-hiw:hover .slick-next,
  .slick-mfm:hover .slick-next,
  .slick-mfw:hover .slick-next,
  .slick-activities:hover .slick-next,
  .slick-fullscreen-slideshow-zoom-fade:hover .slick-next {
    right: -62px;
  }
  .slick-prev:before,
  .slick-next:before {
    width: 35%;
  }

  /* HERO */
  .navigation-icon-wrapper {
    position: fixed;
    width: 2.2rem;
    height: 1.6rem;
    top: 1rem;
    right: 1.12rem;
  }
  .section-01-content-title {
    font-size: 3rem;
  }
  .section-01-content-subtitle {
    font-size: 0.5rem;
  }
  .click-to-unmute {
    top: 62%;
    font-size: 10px;
  }
  .navigation-icon .line {
    width: 1.5rem;
    height: 2px;
    margin: 5px auto;
  }
  .navigation-icon.active .line {
    width: 1.5rem;
    height: 2px;
    margin: 9px auto;
  }
  .social-icon,
  .sound-toggle {
    font-size: 1.1rem;
  }
  .navigation-menu-img {
    width: 0%;
  }
  .navigation-menu-txt {
    width: 100%;
    left: 0;
  }
  nav.navigation-menu .login-link a {
    font-size: 10px;
  }

  /* ABOUT */
  .hiw-bg,
  .about-bg {
    position: relative;
    overflow: hidden;
    width: 100vw;
    /* height: 50vw; */
  }
  .services-txt,
  .about-txt {
    margin: 0;
    max-height: 20.3rem;
    overflow: auto;
  }
  .about-content-inner .section-heading,
  .about-content-inner .section-heading-dark {
    padding: 0 0 0.8rem 0;
  }
  .section-heading,
  .section-heading-dark {
    padding: 0 0 0.8rem 1.9rem;
  }
  .section-title-vertical {
    z-index: -1 !important;
    display: none;
    visibility: hidden;
  }
  .mfw-content-wrapper,
  .mfm-content-wrapper,
  .about-content-wrapper {
    position: relative;
    height: 70vh;
  }

  /* MFM&MFW */
  .mfw-txt,
  .mfm-txt,
  .services-txt {
    padding: 0 15px 0 30px;
  }
  .mobile-reverse {
    display: flex;
    flex-direction: column;
  }
  .mobile-reverse .image-col {
    order: -7;
  }
  .mobile-reverse .text-col {
    order: 1;
  }
  .services-container {
    height: 70vh;
  }
  .services-content {
    /* margin: 2rem 0 0 0; */
    padding: 0 30px 0 0;
  }
  .services-content-wrapper {
    height: 70vh;
  }
  .about-bg-wrapper,
  .services-bg-wrapper {
    height: 30vh;
  }
  .services-bg {
    height: 30vh;
  }
  .services-txt,
  .services-txt-dark {
    margin: 0;
  }
  .formula-section {
    margin: 0 30px 15px 30px;
  }
  .services-text-container .services-txt {
    padding: 0 15px 0 30px;
    max-height: 17.3rem;
  }
  .image-content-responsive {
    height: 30vh;
  }
  .hiw-content-wrapper {
    height: 50vh;
  }
  .mfw-bg,
  .mfm-bg,
  .about-bg {
    height: 30vh;
  }
  .hiw-bg {
    height: 50vh;
  }
  .mfw-txt,
  .mfm-txt {
    margin: 0;
    max-height: 20.3rem;
  }
  .mfw-content,
  .mfm-content {
    padding: 0 30px 0 0;
  }
  .mfw-content .section-heading,
  .mfm-content .section-heading,
  .mfw-content .section-heading-dark,
  .mfm-content .section-heading-dark {
    font-size: 1.5rem;
  }

  /* FORM */
  .join-form-container {
    font-family: "Oswald", sans-serif;
    width: 98%;
    padding: 0 15px 0 0;
    margin: 100px 30px 8rem 22px;
    border-radius: 8px;
    max-height: 24rem;
    overflow: auto;
  }
  .form-row.three-col {
    flex-direction: column;
  }
  .form-row.three-col .location-group {
    /* flex-direction: column; */
    width: 100%;
  }
  .form-row.three-col .location-group input,
  .form-row.three-col select {
    width: 100%;
  }
  .form-row.three-col .location-group input:first-child,
  .form-row.three-col .location-group input:last-child {
    flex: 1;
    width: 100%;
  }
  .form-row select {
    padding: 8px;
  }
  .language-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  #contact-form {
    margin: 20px auto 70px auto;
  }
  #contact-form .join-form-container {
    width: 92%;
    max-height: 22rem;
    margin: 40px 30px 8rem 22px;
  }

  /* MEMBER */
  .news-page-img-carousel-wrapper .news-page-img-carousel-text,
  .works-page-img-carousel-wrapper .works-page-img-carousel-text {
    padding: 0 15px;
  }
  .works-page-img-carousel-title h4 {
    font-size: 17px;
  }
  .works-page-img-carousel-title p {
    font-size: 12px;
  }
  .c-btn {
    font-size: 10px;
    padding: 10px 15px;
  }
  .metrics-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.3rem;
    align-items: center;
    justify-content: space-between;
  }

  /* MODAL'S MEMBER */
  .news-content .news-content-inner {
    padding: 0 15px;
  }
  .text-title h4 {
    font-size: 1.3rem;
  }
  .news-text-txt {
    margin-top: 10px;
    max-height: 9.13rem;
    overflow: auto;
    font-size: 14px;
  }
  #section7 .news-text-txt {
    max-height: 10.13rem;
  }
  .metrics-container img {
    height: 2rem;
  }
  .metrics-container {
    gap: 1rem 2rem;
  }
  .text-title .news-more-subtitle {
    font-size: 0.8rem;
  }
  .text-title .news-more-subtitle {
    padding: 0;
  }
  .height-correction {
    margin-top: -104px;
  }
  .member-footer {
    margin-top: 0.8rem;
  }
  .name-flag-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    padding-top: 2rem;
  }
  .text-title h4 {
    padding: 0 0 5px 0;
  }
  #section7 .text-title h4 {
    padding: 2rem 0 5px 0;
  }
  .member-badge {
    font-size: 9px;
  }

  /* CONTACT */
  .cgv-content {
    padding: 0 1.5rem 1rem 1.5rem;
    max-height: 29.3rem;
    margin: 0 0 100px 0;
  }
  .panel-right .mfw-content .section-heading {
    font-size: 1.8rem;
    padding: 0 0 0.8rem 22px;
  }
  .cgv-content .text-spacer {
    padding: 1.5rem 1.5rem;
    bottom: -233%;
  }
  .image-content-responsive-large .mfw-bg {
    height: 100vh;
  }
  #section8 .mfw-content-wrapper .mfw-bg,
  #section8 .mfw-content-wrapper {
    height: 30vh;
  }
  .contact-container {
    height: 70vh;
  }

  /* Modal contact */
  #section8 .mfw-content-inner.m-scrollable-text {
    margin: 33rem 0 0 0;
  }

  /* PANEL */
  .panel-left {
    width: 100%;
    height: 30vh;
    left: 0;
    top: -100%;
  }
  #section7 .panel-right,
  #section6 .panel-right {
    width: 100%;
    height: 70vh;
    right: 0;
    top: 100%;
  }
  .panel-left.open {
    top: 0;
  }
  #section7 .panel-right.open,
  #section6 .panel-right.open {
    top: 30vh;
  }
  .news-content {
    height: 100%;
    padding: 1rem;
    box-sizing: border-box;
    overflow-y: auto;
  }
  .panel-left,
  #section7 .panel-right,
  #section6 .panel-right {
    z-index: 999;
  }
  #section7 .mfw-content-wrapper .mfw-bg,
  #section7 .mfw-content-wrapper,
  #section6 .mfw-content-wrapper .mfw-bg,
  #section6 .mfw-content-wrapper {
    height: 30vh;
  }
  .name-flag-container .social-icon-flag {
    margin: -7px 0 0 15px;
  }
}

/* =======================================
/* Mobile (écrans moyennes) - 430 x 768  */
/* =====================================*/
@media only screen and (min-width: 376px) and (max-width: 430px) and (orientation: portrait) {
  /* slick */
  .slick-about:hover .slick-prev,
  .slick-services:hover .slick-prev,
  .slick-hiw:hover .slick-prev,
  .slick-mfm:hover .slick-prev,
  .slick-mfw:hover .slick-prev,
  .slick-activities:hover .slick-prev,
  .slick-fullscreen-slideshow-zoom-fade:hover .slick-prev {
    left: -62px;
  }
  .slick-about:hover .slick-next,
  .slick-services:hover .slick-next,
  .slick-hiw:hover .slick-next,
  .slick-mfm:hover .slick-next,
  .slick-mfw:hover .slick-next,
  .slick-activities:hover .slick-next,
  .slick-fullscreen-slideshow-zoom-fade:hover .slick-next {
    right: -62px;
  }
  .slick-prev:before,
  .slick-next:before {
    width: 35%;
  }

  /* HERO */
  .navigation-icon-wrapper {
    position: fixed;
    width: 2.2rem;
    height: 1.6rem;
    top: 1rem;
    right: 1.12rem;
  }
  .section-01-content-title {
    font-size: 3rem;
  }
  .section-01-content-subtitle {
    font-size: 0.5rem;
  }
  .click-to-unmute {
    top: 62%;
    font-size: 10px;
  }
  .navigation-icon .line {
    width: 1.5rem;
    height: 2px;
    margin: 5px auto;
  }
  .navigation-icon.active .line {
    width: 1.5rem;
    height: 2px;
    margin: 9px auto;
  }
  .social-icon,
  .sound-toggle {
    font-size: 1.1rem;
  }
  .navigation-menu-img {
    width: 0%;
  }
  .navigation-menu-txt {
    width: 100%;
    left: 0;
  }
  nav.navigation-menu .login-link a {
    font-size: 10px;
  }

  /* ABOUT */
  .hiw-bg,
  .about-bg {
    position: relative;
    overflow: hidden;
    width: 100vw;
    /* height: 50vw; */
  }
  .services-txt,
  .about-txt {
    margin: 0;
    max-height: 27.3rem;
    overflow: auto;
  }
  .about-content-inner .section-heading,
  .about-content-inner .section-heading-dark {
    padding: 0 0 0.8rem 0;
  }
  .section-heading,
  .section-heading-dark {
    padding: 0 0 0.8rem 1.9rem;
  }
  .section-title-vertical {
    z-index: -1 !important;
    display: none;
    visibility: hidden;
  }
  .mfw-content-wrapper,
  .mfm-content-wrapper,
  .about-content-wrapper {
    position: relative;
    height: 70vh;
  }

  /* MFM&MFW */
  .mfw-txt,
  .mfm-txt,
  .services-txt {
    padding: 0 15px 0 30px;
  }
  .mobile-reverse {
    display: flex;
    flex-direction: column;
  }
  .mobile-reverse .image-col {
    order: -1;
  }
  .mobile-reverse .text-col {
    order: 1;
  }
  .services-container {
    height: 70vh;
  }
  .services-content {
    /* margin: 2rem 0 0 0; */
    padding: 0 30px 0 0;
  }
  .services-content-wrapper {
    height: 70vh;
  }
  .about-bg-wrapper,
  .services-bg-wrapper {
    height: 30vh;
  }
  .services-bg {
    height: 30vh;
  }
  .services-txt,
  .services-txt-dark {
    margin: 0;
  }
  .formula-section {
    margin: 0 30px 15px 30px;
  }
  .services-text-container .services-txt {
    padding: 0 15px 0 30px;
    max-height: 26rem;
  }
  .image-content-responsive {
    height: 30vh;
  }
  .hiw-content-wrapper {
    height: 50vh;
  }
  .mfw-bg,
  .mfm-bg,
  .about-bg {
    height: 30vh;
  }
  .hiw-bg {
    height: 50vh;
  }
  .mfw-txt,
  .mfm-txt {
    margin: 0;
    max-height: 27.3rem;
  }
  .mfw-content,
  .mfm-content {
    padding: 0 30px 0 0;
  }
  .mfw-content .section-heading,
  .mfm-content .section-heading,
  .mfw-content .section-heading-dark,
  .mfm-content .section-heading-dark {
    font-size: 1.5rem;
  }

  /* FORM */
  .join-form-container {
    font-family: "Oswald", sans-serif;
    width: 98%;
    padding: 0 15px 0 0;
    margin: 100px 30px 8rem 22px;
    border-radius: 8px;
    max-height: 28rem;
    overflow: auto;
  }
  .form-row.three-col {
    flex-direction: column;
  }
  .form-row.three-col .location-group {
    /* flex-direction: column; */
    width: 100%;
  }
  .form-row.three-col .location-group input,
  .form-row.three-col select {
    width: 100%;
  }
  .form-row.three-col .location-group input:first-child,
  .form-row.three-col .location-group input:last-child {
    flex: 1;
    width: 100%;
  }
  .form-row select {
    padding: 8px;
  }
  .language-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  #contact-form {
    margin: 20px auto 70px auto;
  }
  #contact-form .join-form-container {
    width: 92%;
    max-height: 22rem;
    margin: 40px 30px 8rem 22px;
  }

  /* MEMBER */
  .news-page-img-carousel-wrapper .news-page-img-carousel-text,
  .works-page-img-carousel-wrapper .works-page-img-carousel-text {
    padding: 0 15px;
  }
  .works-page-img-carousel-title h4 {
    font-size: 17px;
  }
  .works-page-img-carousel-title p {
    font-size: 12px;
  }
  .c-btn {
    font-size: 10px;
    padding: 10px 15px;
  }
  .metrics-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.3rem;
    align-items: center;
    justify-content: space-between;
  }

  /* MODAL'S MEMBER */
  .news-content .news-content-inner {
    padding: 0 15px;
  }
  .text-title h4 {
    font-size: 1.3rem;
  }
  .news-text-txt {
    margin-top: 10px;
    max-height: 10.13rem;
    overflow: auto;
    font-size: 14px;
  }
  #section7 .news-text-txt {
    max-height: 13.13rem;
  }
  .metrics-container img {
    height: 2.7rem;
  }
  .text-title .news-more-subtitle {
    font-size: 0.8rem;
  }
  .text-title .news-more-subtitle {
    padding: 0;
  }
  .member-footer {
    margin-top: 0.8rem;
  }
  .name-flag-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    padding-top: 2rem;
  }
  .text-title h4 {
    padding: 0 0 5px 0;
  }
  #section7 .text-title h4 {
    padding: 2rem 0 5px 0;
  }
  .member-badge {
    font-size: 9px;
  }

  /* CONTACT */
  .cgv-content {
    padding: 0 1.5rem 1rem 1.5rem;
    max-height: 36.62rem;
    margin: 0 0 30px 0;
  }
  .panel-right .mfw-content .section-heading {
    font-size: 1.8rem;
    padding: 0 0 0.8rem 22px;
  }
  .cgv-content .text-spacer {
    padding: 1.5rem 1.5rem;
    bottom: -233%;
  }
  .image-content-responsive-large .mfw-bg {
    height: 100vh;
  }
  #section8 .mfw-content-wrapper .mfw-bg,
  #section8 .mfw-content-wrapper {
    height: 30vh;
  }
  .contact-container {
    height: 70vh;
  }

  /* Modal contact */
  #section8 .mfw-content-inner.m-scrollable-text {
    margin: 33rem 0 0 0;
  }

  /* PANEL */
  .panel-left {
    width: 100%;
    height: 30vh;
    left: 0;
    top: -100%;
  }
  #section7 .panel-right,
  #section6 .panel-right {
    width: 100%;
    height: 70vh;
    right: 0;
    top: 100%;
  }
  .panel-left.open {
    top: 0;
  }
  #section7 .panel-right.open,
  #section6 .panel-right.open {
    top: 30vh;
  }
  .news-content {
    height: 100%;
    padding: 1rem;
    box-sizing: border-box;
    overflow-y: auto;
  }
  .panel-left,
  #section7 .panel-right,
  #section6 .panel-right {
    z-index: 999;
  }
  #section7 .mfw-content-wrapper .mfw-bg,
  #section7 .mfw-content-wrapper,
  #section6 .mfw-content-wrapper .mfw-bg,
  #section6 .mfw-content-wrapper {
    height: 30vh;
  }
  .name-flag-container .social-icon-flag {
    margin: -7px 0 0 15px;
  }
}

/* ==========================================
/* Mobile (écrans moyennes - mode paysage) */
/* ========================================*/
@media only screen and (max-height: 430px) and (orientation: landscape) {
  /* Section 00 */
  .click-to-unmute {
    top: 65%;
  }
  .navigation-icon-wrapper {
    top: 1.2rem;
    right: 2.2rem;
  }
  .section-01-content-title {
    font-size: 3.5rem;
  }
  .section-01-content-subtitle {
    font-size: 0.8rem;
  }
  .sound-control {
    bottom: 1.8rem;
  }
  .social-icons {
    display: flex;
    bottom: 1.8rem;
    justify-content: center;
    align-items: center;
  }

  /* Section 01 */
  #section1 .col-sm-12 {
    width: 50vw;
    height: 100vh;
  }
  .about-txt {
    max-height: 14rem;
    font-size: 1rem;
    margin: 0 1rem;
  }
  .section-heading,
  .section-heading-dark {
    padding: 0 0 0.5rem 1rem;
  }
  .navigation-menu-img {
    width: 50%;
  }
  .navigation-menu-txt {
    width: 50%;
    left: 50%;
  }

  /* Section 02 */
  #section2 .col-sm-12 {
    width: 50vw;
    height: 50vh;
  }
  .services-txt {
    max-height: 7rem;
    font-size: 1rem;
    margin: 0 1rem;
  }
  .services-text-container .services-txt {
    max-height: 4.38rem;
  }
  .formula-section {
    display: flex;
    margin: 0 0 15px 1rem;
  }

  /* Section 03 */
  #section3 .col-sm-12 {
    width: 50vw;
    height: 100vh;
  }

  /* Section 04 & 05 */
  #section4 .col-sm-12,
  #section5 .col-sm-12,
  #section8 .col-sm-12 {
    width: 50vw;
    height: 100vh;
  }
  .mfw-content .section-heading,
  .mfm-content .section-heading,
  .mfw-content .section-heading-dark,
  .mfm-content .section-heading-dark {
    font-size: 2rem;
  }
  .mfw-txt,
  .mfm-txt {
    max-height: 17rem;
    font-size: 1rem;
    margin: 0 1rem;
  }
  .join-form-container {
    width: 22rem;
    height: 95vh;
    overflow: auto;
  }
  .form-row.three-col .location-group {
    display: flex;
    gap: 15px;
    width: 100%;
  }
  .join-form input,
  .join-form select,
  .join-form textarea {
    padding: 8px;
    font-size: 1rem;
  }
  .language-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .languages,
  .photo-upload {
    padding: 12px;
    font-size: 1rem;
  }
  .photo-upload label span {
    font-size: 1rem;
  }
  .join-form textarea {
    min-height: 100px;
  }
  .join-form button[type="submit"] {
    padding: 14px;
    font-size: 1rem;
  }
  .member-footer {
    margin-top: 0.5rem;
  }
  .metrics-container {
    gap: 1.5rem;
  }
  .metrics-container img {
    height: 2.5rem;
  }
  .member-badge {
    font-size: 15px;
  }
  .social-icon-flag img {
    width: 1.8rem;
  }
  .c-btn span {
    font-size: 16px;
  }
  .text-title h4 {
    font-size: 1.5rem;
  }
  .text-title .news-more-subtitle {
    font-size: 15px;
  }
  .news-text-txt {
    margin-top: 10px;
    max-height: 5rem;
    font-size: 1rem;
  }
  .section-title-vertical span {
    font-size: 24px;
  }
  #contact-form .join-form-container {
    width: 22rem;
    height: 95vh;
    overflow: auto;
    padding: 15px 15px 110px 15px;
  }
  #contact-form .join-form-container h1 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 400;
  }
  #contact-form .join-form-container .join-form textarea {
    height: 180px;
  }
  .brand-info {
    font-size: 1rem;
  }
  .services-content-inner h3,
  .about-content-inner h3,
  .mfw-content-inner h3,
  .mfm-content-inner h3 {
    font-size: 21px;
  }
  .cgv-content {
    max-height: 16rem;
    padding: 1rem 3rem;
    margin: 0 50px 15px 0;
  }

  .article-title {
    font-size: 1.4rem;
  }

  .article-text {
    font-size: 1.1rem;
    line-height: 1.7;
  }

  .panel-right .mfw-content .section-heading {
    font-size: 2rem;
    padding: 0 0 0 50px;
  }

  .cgv-content .text-spacer {
    padding: 1rem 3rem;
  }

  .c-btn.inverse-dark {
    padding: 10px 28px;
    font-size: 13px;
  }
  .height-correction {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: -70px;
  }
  .name-flag-container {
    display: flex;
    align-items: baseline;
    justify-content: start;
    gap: 10px;
  }
  #section7 .news-text-txt {
    margin-top: 10px;
    max-height: 8rem;
    font-size: 1rem;
  }
}

/* ===================================
/* Tablettes (écrans moyens) - 600px à 1024px  */
/* =================================== */
@media only screen and (min-width: 431px) and (max-width: 1024px) and (orientation: portrait) {
  /* slick */
  .slick-about:hover .slick-prev,
  .slick-services:hover .slick-prev,
  .slick-hiw:hover .slick-prev,
  .slick-mfm:hover .slick-prev,
  .slick-mfw:hover .slick-prev,
  .slick-activities:hover .slick-prev,
  .slick-fullscreen-slideshow-zoom-fade:hover .slick-prev {
    left: -50px;
  }

  .slick-about:hover .slick-next,
  .slick-services:hover .slick-next,
  .slick-hiw:hover .slick-next,
  .slick-mfm:hover .slick-next,
  .slick-mfw:hover .slick-next,
  .slick-activities:hover .slick-next,
  .slick-fullscreen-slideshow-zoom-fade:hover .slick-next {
    right: -50px;
  }

  .slick-prev:before,
  .slick-next:before {
    width: 40%;
  }

  /* HERO */
  .navigation-icon-wrapper {
    position: fixed;
    width: 2.5rem;
    height: 1.8rem;
    top: 1.5rem;
    right: 1.5rem;
  }

  .section-01-content-title {
    font-size: 4rem;
  }

  .section-01-content-subtitle {
    font-size: 0.7rem;
  }

  .click-to-unmute {
    top: 65%;
    font-size: 12px;
  }

  .navigation-icon .line {
    width: 1.8rem;
    height: 2px;
    margin: 6px auto;
  }

  .navigation-icon.active .line {
    width: 1.8rem;
    height: 2px;
    margin: 10px auto;
  }

  .social-icon,
  .sound-toggle {
    font-size: 1.3rem;
  }

  .navigation-menu-img {
    width: 30%;
  }

  .navigation-menu-txt {
    width: 70%;
    left: 30%;
  }

  nav.navigation-menu .login-link a {
    font-size: 12px;
  }

  /* ABOUT */
  .hiw-bg,
  .about-bg {
    position: relative;
    overflow: hidden;
    width: 100vw;
  }

  .services-txt,
  .about-txt {
    margin: 0;
    max-height: 30.5rem;
    overflow: auto;
  }

  .about-content-inner .section-heading,
  .about-content-inner .section-heading-dark {
    padding: 0 0 1rem 0;
  }

  .section-heading,
  .section-heading-dark {
    padding: 0 0 1rem 2rem;
  }

  .section-title-vertical {
    z-index: -1 !important;
    display: none;
    visibility: hidden;
  }

  .mfw-content-wrapper,
  .mfm-content-wrapper,
  .about-content-wrapper {
    position: relative;
    height: 55vh;
  }

  /* MFM&MFW */
  .mfw-txt,
  .mfm-txt,
  .services-txt {
    padding: 0 15px 0 30px;
  }
  .mobile-reverse {
    display: flex;
    flex-direction: column;
  }
  .mobile-reverse .image-col {
    order: -1;
  }
  .mobile-reverse .text-col {
    order: 1;
  }
  .services-container {
    height: 55vh;
  }
  .services-content {
    /* margin: 2rem 0 0 0; */
    padding: 0 30px 0 0;
  }
  .services-content-wrapper {
    height: 55vh;
  }
  .about-bg-wrapper,
  .services-bg-wrapper {
    height: 45vh;
  }
  .services-bg {
    height: 45vh;
  }
  .services-txt,
  .services-txt-dark {
    margin: 0;
  }
  .formula-section {
    margin: 0 30px 15px 30px;
  }
  .services-text-container .services-txt {
    padding: 0 15px 0 30px;
    max-height: 26rem;
  }
  .image-content-responsive {
    height: 45vh;
  }
  .hiw-content-wrapper {
    height: 50vh;
  }
  .mfw-bg,
  .mfm-bg,
  .about-bg {
    height: 45vh;
  }
  .hiw-bg {
    height: 50vh;
  }
  .mfw-txt,
  .mfm-txt {
    margin: 0;
    max-height: 30.3rem;
  }
  .mfw-content,
  .mfm-content {
    padding: 0 30px 0 0;
  }
  .mfw-content .section-heading,
  .mfm-content .section-heading,
  .mfw-content .section-heading-dark,
  .mfm-content .section-heading-dark {
    font-size: 1.5rem;
  }

  /* FORM */
  .join-form-container {
    font-family: "Oswald", sans-serif;
    width: 38.75rem;
    padding: 0 15px 0 0;
    margin: 100px 30px 8rem 22px;
    border-radius: 8px;
    max-height: 32.5rem;
    overflow: auto;
  }
  .form-row.three-col {
    flex-direction: column;
  }
  .form-row.three-col .location-group {
    /* flex-direction: column; */
    width: 100%;
  }
  .form-row.three-col .location-group input,
  .form-row.three-col select {
    width: 100%;
  }
  .form-row.three-col .location-group input:first-child,
  .form-row.three-col .location-group input:last-child {
    flex: 1;
    width: 100%;
  }
  .form-row select {
    padding: 8px;
  }
  .language-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  #contact-form {
    margin: 20px auto 70px auto;
  }
  #contact-form .join-form-container {
    width: 84%;
    max-height: 32rem;
    margin: 40px 30px 8rem 4rem;
  }

  /* MEMBER */
  .news-page-img-carousel-wrapper .news-page-img-carousel-text,
  .works-page-img-carousel-wrapper .works-page-img-carousel-text {
    padding: 0 15px;
  }
  .works-page-img-carousel-title h4 {
    font-size: 17px;
  }
  .works-page-img-carousel-title p {
    font-size: 12px;
  }
  .c-btn {
    font-size: 10px;
    padding: 10px 15px;
  }
  .metrics-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.3rem;
    align-items: center;
    justify-content: space-between;
  }

  /* MODAL'S MEMBER */
  .news-content .news-content-inner {
    padding: 0 15px;
  }
  .text-title h4 {
    font-size: 1.3rem;
  }
  .news-text-txt {
    margin-top: 10px;
    max-height: 20.13rem;
    overflow: auto;
    font-size: 14px;
  }
  #section7 .news-text-txt {
    max-height: 24.13rem;
  }
  .metrics-container img {
    height: 2.7rem;
  }
  .text-title .news-more-subtitle {
    font-size: 0.8rem;
  }
  .text-title .news-more-subtitle {
    padding: 0;
  }
  .member-footer {
    margin-top: 0.8rem;
  }
  .name-flag-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    padding-top: 2rem;
  }
  .text-title h4 {
    padding: 0 0 5px 0;
  }
  #section7 .text-title h4 {
    padding: 2rem 0 5px 0;
  }
  .member-badge {
    font-size: 9px;
  }

  /* CONTACT */
  .cgv-content {
    padding: 0 1.5rem 1rem 1.5rem;
    max-height: 56.62rem;
    margin: 0 0 30px 0;
  }
  .panel-right .mfw-content .section-heading {
    font-size: 1.8rem;
    padding: 0 0 0.8rem 22px;
  }
  .cgv-content .text-spacer {
    padding: 1.5rem 1.5rem;
    bottom: -120%;
  }
  .image-content-responsive-large .mfw-bg {
    height: 100vh;
  }
  #section8 .mfw-content-wrapper .mfw-bg,
  #section8 .mfw-content-wrapper {
    height: 45vh;
  }
  .contact-container {
    height: 55vh;
  }

  /* Modal contact */
  #section8 .mfw-content-inner.m-scrollable-text {
    margin: 35rem 0 0 0;
  }

  /* PANEL */
  .panel-left {
    width: 100%;
    height: 45vh;
    left: 0;
    top: -100%;
  }
  #section7 .panel-right,
  #section6 .panel-right {
    width: 100%;
    height: 55vh;
    right: 0;
    top: 100%;
  }
  .panel-left.open {
    top: 0;
  }
  #section7 .panel-right.open,
  #section6 .panel-right.open {
    top: 45vh;
  }
  .news-content {
    height: 100%;
    padding: 1rem;
    box-sizing: border-box;
    overflow-y: auto;
  }
  .panel-left,
  #section7 .panel-right,
  #section6 .panel-right {
    z-index: 999;
  }
  #section7 .mfw-content-wrapper .mfw-bg,
  #section7 .mfw-content-wrapper,
  #section6 .mfw-content-wrapper .mfw-bg,
  #section6 .mfw-content-wrapper {
    height: 45vh;
  }
  .name-flag-container .social-icon-flag {
    margin: -7px 0 0 15px;
  }

  /* ACTIVITY */
}

/* ===================================
/* Laptop 15.6" - 1366 x 768           */
/* =================================== */
@media only screen and (min-width: 1025px) and (max-width: 1366px) {
  .section-01-content-title {
    font-size: 8rem;
  }
  .about-txt {
    max-height: 30.6rem;
  }
  .services-txt {
    max-height: 13.37rem;
  }
  .services-text-container .services-txt {
    max-height: 11.38rem;
  }
  .mfw-txt,
  .mfm-txt {
    max-height: 31rem;
  }
  .join-form-container {
    width: 34.75rem;
  }
  .join-form input,
  .join-form select,
  .join-form textarea {
    padding: 6px;
    font-size: 12px;
  }
  .languages,
  .photo-upload {
    padding: 6px;
    font-size: 12px;
  }
  .join-form textarea {
    min-height: 70px;
  }
  .join-form button[type="submit"] {
    padding: 10px;
    font-size: 14px;
  }
  .member-footer {
    margin-top: 1.75rem;
  }
  .metrics-container {
    gap: 1rem;
  }
  .metrics-container img {
    height: 2.7rem;
  }
  .news-text-txt {
    margin-top: 20px;
    max-height: 18.13rem;
  }
  /* .cgv-content {
    max-height: 28.62rem;
  } */
  .cgv-content {
    max-height: 28rem;
    padding: 0.75rem 1.5rem;
    margin: 0 20px 40px 0;
  }

  .article-title {
    font-size: 1.1rem;
  }

  .article-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .panel-right .mfw-content .section-heading {
    font-size: 1.8rem;
    padding: 0 0 1rem 30px;
  }

  .cgv-content .text-spacer {
    padding: 3rem 1.5rem;
  }

  .c-btn.inverse-dark {
    padding: 12px 20px;
    font-size: 11px;
  }
}

/* ===================================
/* Full HD - 1920 x 1080               */
/* =================================== */
@media only screen and (min-width: 1920px) {
  .section-01-content-title {
    font-size: 10rem;
  }
  .about-txt {
    max-height: 44rem;
    font-size: 1rem;
  }
  .services-txt {
    max-height: 20rem;
    font-size: 1rem;
  }
  .services-text-container .services-txt {
    max-height: 17rem;
  }
  .mfw-txt,
  .mfm-txt {
    max-height: 45rem;
    font-size: 1rem;
  }
  .join-form-container {
    width: 44rem;
  }
  .join-form input,
  .join-form select,
  .join-form textarea {
    padding: 8px;
    font-size: 1rem;
  }
  .languages,
  .photo-upload {
    padding: 12px;
    font-size: 1rem;
  }
  .photo-upload label span {
    font-size: 1rem;
  }
  .join-form textarea {
    min-height: 100px;
  }
  .join-form button[type="submit"] {
    padding: 14px;
    font-size: 1rem;
  }
  .member-footer {
    margin-top: 2rem;
  }
  .metrics-container {
    gap: 1.5rem;
  }
  .metrics-container img {
    height: 4rem;
  }
  .member-badge {
    font-size: 15px;
  }
  .social-icon-flag img {
    width: 1.8rem;
  }
  .c-btn span {
    font-size: 18px;
  }
  .news-text-txt {
    margin-top: 25px;
    max-height: 34rem;
    font-size: 1rem;
  }
  .section-title-vertical span {
    font-size: 24px;
  }
  #contact-form .join-form-container h1 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 400;
  }
  #contact-form .join-form-container .join-form textarea {
    height: 180px;
  }
  .brand-info {
    font-size: 1rem;
  }
  .services-content-inner h3,
  .about-content-inner h3,
  .mfw-content-inner h3,
  .mfm-content-inner h3 {
    font-size: 21px;
  }
  /* .cgv-content {
    max-height: 40rem;
  }
  .cgv-content .text-spacer {
    padding: 7rem 2.5rem;
  }
  .cgv-article {
    margin-bottom: 20px;
  }
  .article-text {
    font-size: 1.2rem;
  } */
  .cgv-content {
    max-height: 35rem;
    padding: 1.5rem 3rem;
    margin: 0 50px 0 0;
  }

  .article-title {
    font-size: 1.4rem;
  }

  .article-text {
    font-size: 1.1rem;
    line-height: 1.7;
  }

  .panel-right .mfw-content .section-heading {
    font-size: 2.6rem;
    padding: 0 0 1.5rem 50px;
  }

  .cgv-content .text-spacer {
    padding: 6rem 3rem;
  }

  .c-btn.inverse-dark {
    padding: 17px 28px;
    font-size: 13px;
  }
}

/* ===================================
/* 4K Ultra HD - 3840 x 2160           */
/* =================================== */
@media only screen and (min-width: 3840px) {
  .section-heading,
  .section-heading-dark {
    padding: 0 0 1.25rem 8.3rem;
  }
  .mfw-txt,
  .mfm-txt,
  .about-txt {
    margin: 0 8.3rem;
    max-height: 70rem;
    font-size: 1.2rem;
  }
  .services-txt,
  .services-txt-dark {
    margin: 0 8.3rem;
  }
  .services-txt {
    max-height: 45rem;
    font-size: 1.2rem;
  }
  .services-text-container .services-txt {
    max-height: 38rem;
  }
  .formula-section {
    margin: 0 0 15px 8.3rem;
  }
  .news-text-txt {
    font-size: 1.2rem;
  }
  .metrics-container img {
    height: 4rem;
  }

  /* Form */
  .join-form-container h1 {
    font-size: 4.2rem;
    margin-bottom: 2rem;
  }
  .join-form-container {
    width: 78rem;
  }
  .join-form .form-row {
    gap: 20px;
    margin-bottom: 20px;
  }
  .form-row.three-col {
    gap: 20px;
    margin-bottom: 20px;
  }
  .join-form input,
  .join-form select,
  .join-form textarea {
    padding: 20px;
    font-size: 1.2rem;
    border: 2px solid #d0d0d0;
    border-radius: 8px;
  }
  .languages,
  .photo-upload {
    padding: 28px;
    font-size: 1.2rem;
  }
  .languages {
    margin: 20px 0;
  }
  .photo-upload label span {
    font-size: 1.2rem;
  }
  input[type="checkbox"] {
    /* Double-sized Checkboxes */
    transform: scale(2);
    margin: 10px;
  }
  .join-form textarea {
    min-height: 15rem;
  }
  .join-form button[type="submit"] {
    padding: 25px;
    font-size: 1.5rem;
    margin-top: 1rem;
    border-radius: 15px;
  }
  #contact-form .form-row select,
  .form-row select {
    flex: 1 1 calc(33.333% - 15px);
    padding: 8px;
    border: 2px solid #d0d0d0;
    border-radius: 15px;
    padding-right: 30px;
    background-color: #fff;
    appearance: none;
    /* Crée une flèche personnalisée plus grande */
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 24px;
  }
  .form-row select option {
    font-family: "Oswald", sans-serif !important;
    font-weight: 300;
    font-size: 10px;
    padding: 10px;
  }
  .form-row select:hover {
    border-color: #888;
  }
  .form-row select:focus {
    border-color: #555;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }
  .cgv-content {
    max-height: 100rem;
  }
  .cgv-content .text-spacer {
    left: 45%;
  }
  .article-text {
    font-size: 1.2rem;
    line-height: 1.8;
  }
  /* .cgv-content .text-spacer {
    padding: 22rem 18.5rem;
  } */

  /* =================Taille normal pour 4K======================== */
  /* .cgv-content {
    max-height: 85rem;
    padding: 3rem 6rem;
    margin: 0 100px 140px 0;
  }

  .article-title {
    font-size: 2.8rem;
  }

  .article-text {
    font-size: 2.2rem;
    line-height: 1.8;
  }

  .panel-right .mfw-content .section-heading {
    font-size: 5.2rem;
    padding: 0 0 3rem 100px;
  }

  .cgv-content .text-spacer {
    padding: 12rem 6rem;
  }

  .c-btn.inverse-dark {
    padding: 34px 56px;
    font-size: 26px;
    letter-spacing: 0.3em;
  }

  .c-btn.inverse-dark span {
    font-size: 1.5rem;
  }

  .contact-more-1.panel-right,
  .contact-more-2.panel-right,
  .contact-more-3.panel-right {
    --sb-size: 3px;
  }

  .cgv-content {
    --sb-size: 2px;
  } */
  /* ======================================================== */
  /* Slick */
  #section5 .slick-prev:before,
  #section5 .slick-next:before,
  #section4 .slick-prev:before,
  #section4 .slick-next:before {
    color: #fff;
    background: #111;
  }
}
