*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
height: 100%;
scroll-behavior: smooth;
overscroll-behavior: contain;
margin: 0;
padding: 0;
}
body {
font-family: "proxima-nova", sans-serif;
background-color: var(--color-bg);
color: var(--color-text);
line-height: 1.6;
overflow-x: hidden;
min-height: 100vh;
display: flex;
flex-direction: column;
}
main {
flex: 1;
width: 100%;
margin-top: 0;
padding-top: 0;
overflow-x: hidden;
} :root { --color-yellow: #ffef36;
--color-black: #020a0a;
--color-white: #fcffff; --color-bg: var(--color-white);
--color-text: var(--color-black);
--color-contrast: var(--color-yellow);
} h1,
h2,
h3,
h4,
h5,
h6,
p {
opacity: 0;
white-space: normal;
}
h1,
h2,
h3,
h4 {
font-family: "shuttleblock", sans-serif;
color: var(--color-contrast);
line-height: 1.2;
}
h1 {
font-size: 8rem;
font-weight: 700;
}
h2 {
font-size: 2.25rem;
font-weight: 600;
}
h3 {
font-size: 1.75rem;
font-weight: 500;
}
h4 {
font-size: 1.25rem;
}
p {
font-size: 1rem;
color: var(--color-text);
margin-bottom: 1rem;
}
h1 .word {
display: inline-block;
overflow: visible;
padding: 0 0.08em;
margin-right: 0.04em;
color: var(--color-white);
font-style: italic;
opacity: 0;
}
h1 .word {
opacity: 1;
}
[data-line] {
display: block;
opacity: 0;
transform: translateY(20px);
transition: opacity 0.2s, transform 0.2s;
}
.scroll-indicator {
opacity: 0;
transition: opacity 0.8s;
}
.scroll-indicator.visible {
opacity: 1;
} .text-center {
text-align: center;
}
.mt-2 {
margin-top: 2rem;
}
.mb-2 {
margin-bottom: 2rem;
} #site-footer {
background: var(--color-black);
color: var(--color-white);
width: 100%;
height: 65vh;
padding: 3rem 2rem 0 2rem;
font-family: "proxima-nova";
position: relative;
box-sizing: border-box;
padding-bottom: 120px; overflow: hidden;
}
.footer-infos {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 2.5rem;
font-size: 1rem;
text-align: left;
gap: 2rem;
}
.footer-col {
flex: 1 1 0;
min-width: 0;
max-width: 260px;
display: flex;
flex-direction: column;
}
.footer-col:nth-child(1),
.footer-col:nth-child(2) {
align-items: flex-start;
text-align: left;
}
.footer-col:nth-child(3),
.footer-col:nth-child(4) {
align-items: flex-end;
text-align: right;
}
.footer-col strong {
font-size: 0.95rem;
letter-spacing: 0.05em;
text-transform: uppercase;
color: var(--color-white);
margin-bottom: 0.5rem;
display: block;
}
.footer-col a {
color: var(--color-white);
text-decoration: none;
transition: color 0.2s;
font-size: 1rem;
}
.footer-col a:hover,
.footer-col a:focus {
color: var(--color-yellow);
outline: none;
}
.footer-separator {
border: none;
border-top: 1px solid var(--color-yellow);
margin: 0 0 2rem 0;
width: 100%;
}
.footer-bottom {
width: 100%;
position: absolute;
left: 0;
bottom: 0;
display: flex;
justify-content: center;
align-items: flex-end;
pointer-events: none; }
.footer-logo {
width: 100%;
height: 120px;
display: flex;
align-items: flex-end;
justify-content: center;
}
.footer-logo img {
width: 100%;
height: 100%;
object-fit: contain;
object-position: bottom;
display: block;
}
.footer-col .copyright {
margin-top: auto;
font-size: 0.9rem;
color: var(--color-white);
display: block;
}
.footer-socials {
display: none;
}
@media (max-width: 900px) {
.footer-infos {
flex-direction: column;
align-items: stretch;
gap: 1.5rem;
}
.footer-col {
max-width: 100%;
align-items: flex-start !important;
text-align: left !important;
}
}
@media (max-width: 430px) {
#site-footer {
padding: 2rem 1rem 0 1rem;
}
.footer-infos {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, auto);
gap: 1.5rem;
font-size: 0.95rem;
position: relative;
}
.footer-infos::after {
content: "";
position: absolute;
left: 0;
right: 0;
top: 50%;
height: 1px;
background-color: var(--color-yellow);
}
.footer-col {
max-width: none;
display: flex;
flex-direction: column;
}
.footer-col:nth-child(1) {
grid-column: 1;
grid-row: 1;
justify-self: start;
}
.footer-col:nth-child(2) {
grid-column: 2;
grid-row: 1;
justify-self: end;
align-items: flex-end;
}
.footer-col:nth-child(3) {
grid-column: 1;
grid-row: 2;
justify-self: start;
}
.footer-col:nth-child(4) {
grid-column: 2;
grid-row: 2;
justify-self: end;
align-items: flex-end;
}
.footer-col:nth-child(4) a,
.footer-col:nth-child(4) .copyright {
text-align: right;
width: 100%;
}
.footer-bottom {
min-height: 40px;
padding-bottom: 0;
display: flex;
flex-direction: column;
align-items: center;
gap: 1.5rem;
}
.footer-socials {
display: flex;
gap: 2rem;
margin-bottom: 1rem;
justify-content: center;
}
.footer-socials a {
color: var(--color-white);
font-size: 1.5rem;
transition: color 0.3s ease;
}
.footer-socials a:hover {
color: var(--color-yellow);
}
.footer-logo {
width: 100%;
height: 40px;
}
.footer-separator {
display: none;
}
}
.word {
display: inline-block;
overflow: visible;
padding: 0 0.08em;
margin-right: 0.04em;
} @keyframes menuClose {
0% {
transform: translateY(0);
opacity: 1;
}
100% {
transform: translateY(-100%);
opacity: 0;
}
} .TheNavigation-pill {
position: fixed;
top: 2rem !important;
right: 2rem;
left: auto;
transform: none;
background-color: var(--color-black);
border-radius: 50px;
padding: 1.5rem 4rem;
display: flex;
align-items: center;
gap: 4rem;
z-index: 999;
opacity: 0;
visibility: hidden;
transition: all 0.8s cubic-bezier(0.76, 0, 0.24, 1);
width: 96.5%;
justify-content: flex-start;
height: 60px;
}
.TheNavigation-pill.--isVisible {
opacity: 1;
visibility: visible;
width: 96.5%;
padding: 1.5rem 4rem;
gap: 4rem;
height: 60px;
}
.TheNavigation-pill.--isClosing {
opacity: 1;
visibility: visible;
width: 120px;
padding: 1rem;
height: 60px;
}
.TheNavigation-pill-logo {
position: absolute;
left: 4rem;
width: 120px;
height: 60px;
flex-shrink: 0;
opacity: 0;
transition: opacity 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
}
.TheNavigation-pill-logo img {
width: 100%;
height: 100%;
object-fit: contain;
}
.TheNavigation-pill.--isVisible .TheNavigation-pill-logo {
opacity: 1;
transition-delay: 0.3s;
}
.TheNavigation-pill.--isClosing .TheNavigation-pill-logo {
opacity: 0;
transition-delay: 0s;
}
.TheNavigation-pillList {
list-style: none;
padding: 0;
margin: 0;
display: flex;
gap: 4rem;
width: 100%;
justify-content: center;
opacity: 1;
transition: opacity 0.3s ease;
}
.TheNavigation-pill.--isClosing .TheNavigation-pillList {
opacity: 0;
}
.TheNavigation-pillItem {
opacity: 0;
transform: translateY(10px);
transition: all 0.3s ease;
}
.TheNavigation-pill.--isVisible .TheNavigation-pillItem {
opacity: 1;
transform: translateY(0);
}
.TheNavigation-pillLink {
color: var(--color-white);
text-decoration: none;
font-family: "shuttleblock", sans-serif;
font-size: 1.2rem;
transition: color 0.3s ease;
position: relative;
padding-bottom: 0.2rem;
}
.TheNavigation-pillLink::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background-color: var(--color-yellow);
transition: width 0.3s ease;
}
.TheNavigation-pillLink:hover {
color: var(--color-yellow);
}
.TheNavigation-pillLink:hover::after {
width: 100%;
}
.TheNavigation-pillLink.active {
color: var(--color-yellow);
}
.TheNavigation-pillLink.active::after {
width: 100%;
}
.TheNavigation {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background-color: var(--color-black);
z-index: 1000;
display: flex;
flex-direction: column;
opacity: 0;
visibility: hidden;
transform: translateY(100%);
transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
padding: 2rem;
}
.TheNavigation.--isOpen {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.TheNavigation.--isClosing {
opacity: 1;
visibility: visible;
animation: menuClose 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.TheNavigation-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--color-black);
z-index: -1;
}
.logo-nav {
margin: 2rem;
width: 220px;
height: auto;
}
.TheNavigation-top {
padding: 2rem;
margin: 4rem;
padding-left: 25%;
display: flex;
flex-direction: row;
gap: 2rem;
position: relative;
justify-content: space-between;
z-index: 2;
align-items: flex-start;
}
.TheNavigation-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 1rem;
position: relative;
z-index: 2;
}
.TheNavigation-item {
opacity: 0;
transform: translateY(20px);
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.TheNavigation.--isOpen .TheNavigation-item {
opacity: 1;
transform: translateY(0);
}
.TheNavigation-itemLink {
display: flex;
align-items: center;
gap: 1rem;
color: var(--color-white);
text-decoration: none;
font-family: "shuttleblock", sans-serif;
font-size: 2rem;
transition: color 0.3s ease;
position: relative;
z-index: 2;
padding-bottom: 0.2rem;
width: fit-content;
}
.TheNavigation-itemLink::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background-color: var(--color-yellow);
transition: width 0.3s ease;
}
.TheNavigation-itemLink:hover {
color: var(--color-yellow);
}
.TheNavigation-itemLink:hover::after {
width: 100%;
}
.TheNavigation-itemLink.active {
color: var(--color-yellow);
}
.TheNavigation-itemLink.active::after {
width: 100%;
}
.TheNavigation-itemArrow {
display: none;
}
.TheNavigation-infosContact {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
position: relative;
z-index: 2;
}
.InfosContact-text {
color: var(--color-white);
font-size: 0.9rem;
}
.InfosContact-text a {
color: var(--color-white);
text-decoration: none;
transition: color 0.3s ease;
}
.InfosContact-text a:hover {
color: var(--color-yellow);
}
.TheNavigation-bottom {
margin-top: auto;
padding: 2rem;
display: flex;
justify-content: space-between;
align-items: flex-end;
position: relative;
z-index: 2;
}
.TheNavigation-videoContainer {
width: 450px;
height: 250px;
position: relative;
overflow: hidden;
z-index: 2;
margin-left: 12rem;
}
.TheNavigation-video {
width: 100%;
height: 100%;
object-fit: cover;
}
.TheNavigation-baseline {
display: flex;
height: auto;
width: 1000px;
} .TheNavigationBurger {
position: fixed;
top: 2rem !important;
right: 2rem;
z-index: 1001;
cursor: pointer;
opacity: 0;
visibility: hidden;
transition: opacity 0.5s cubic-bezier(0.76, 0, 0.24, 1);
background: var(--color-black);
border: none;
padding: 1rem 1.5rem;
border-radius: 50px;
display: flex;
align-items: center;
justify-content: center;
gap: 0.8rem;
outline: none;
width: auto;
height: 60px;
pointer-events: none;
}
body:not(.at-top) .TheNavigationBurger {
opacity: 1;
visibility: visible;
pointer-events: auto;
transition-delay: 0.1s;
}
.TheNavigationBurger:hover,
.TheNavigationBurger:focus,
.TheNavigationBurger:active {
background: var(--color-black) !important;
outline: none;
box-shadow: none;
}
.TheNavigationBurger-content {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
position: relative;
width: 100%;
}
.TheNavigationBurger-label {
color: var(--color-white);
font-size: 1.1rem;
text-transform: uppercase;
font-family: "shuttleblock", sans-serif;
}
.TheNavigationBurger-circleWrap {
width: 40px;
height: 40px;
position: relative;
background-color: var(--color-yellow);
border-radius: 50%;
transition: all 0.6s cubic-bezier(0.76, 0, 0.24, 1);
transform: scale(0.3);
margin-left: 0;
display: flex;
align-items: center;
justify-content: center;
}
.TheNavigationBurger:hover .TheNavigationBurger-circleWrap {
transform: scale(1);
}
.TheNavigationBurger-lines {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 16px;
height: 10px;
display: flex;
flex-direction: column;
justify-content: space-between;
opacity: 0;
transition: opacity 0.3s ease;
z-index: 1;
}
.TheNavigationBurger:hover .TheNavigationBurger-lines {
opacity: 1;
}
.TheNavigationBurger-line {
width: 100%;
height: 2px;
background-color: var(--color-black);
transition: all 0.3s ease;
}
.TheNavigationBurger.--isOpen {
background: transparent !important;
border: none !important;
box-shadow: none !important;
}
.TheNavigationBurger.--isOpen .TheNavigationBurger-label,
.TheNavigationBurger.--isOpen .TheNavigationBurger-background,
.TheNavigationBurger.--isOpen
.TheNavigationBurger-content
> *:not(.TheNavigationBurger-circleWrap) {
display: none !important;
}
.TheNavigationBurger.--isOpen .TheNavigationBurger-circleWrap {
transform: scale(1.5) !important;
position: relative !important;
margin: 0 !important;
left: auto !important;
top: auto !important;
z-index: 2 !important;
display: flex !important;
align-items: center !important;
justify-content: center !important;
}
.TheNavigationBurger.--isOpen .TheNavigationBurger-lines {
opacity: 1 !important;
z-index: 3 !important;
}
.TheNavigationBurger.--isOpen .TheNavigationBurger-line:nth-child(1) {
transform: translateY(4px) rotate(45deg) !important;
}
.TheNavigationBurger.--isOpen .TheNavigationBurger-line:nth-child(2) {
transform: translateY(-4px) rotate(-45deg) !important;
}
.TheNavigation-socials {
display: none;
}
@media (max-width: 900px) {
.TheNavigationBurger {
top: 1.5rem !important;
}
.TheNavigationBurger-label {
font-size: 1rem;
}
.TheNavigationBurger-circleWrap {
width: 36px;
height: 36px;
}
}
@media (max-width: 430px) {
.TheNavigation-pill {
display: none;
}
.TheNavigationBurger {
top: 2rem !important;
}
.TheNavigationBurger-label {
font-size: 0.9rem;
}
.TheNavigationBurger-circleWrap {
width: 32px;
height: 32px;
}
body.at-top .TheNavigationBurger {
opacity: 1;
visibility: visible;
pointer-events: auto;
}
.TheNavigation {
padding: 1rem;
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 100dvh;
height: auto;
overflow-y: auto;
}
.TheNavigation-top {
padding: 1rem;
margin: 1.5rem 1rem;
padding-left: 0;
flex-direction: column;
gap: 2rem;
flex: 1;
}
.TheNavigation-list {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem 2rem; width: 100%;
}
.TheNavigation-itemLink {
font-size: 1.5rem;
}
.TheNavigation-videoContainer {
display: none;
width: 0;
height: 0;
margin: 0;
padding: 0;
}
.TheNavigation-bottom {
padding: 1rem;
flex-direction: column;
gap: 2rem;
margin-top: auto;
width: 100%;
}
.TheNavigation-baseline {
width: 100%;
}
.logo-nav {
margin: 1rem;
width: 160px;
}
.TheNavigation-socials {
display: flex;
gap: 2rem;
justify-content: center;
}
.TheNavigation-socials a {
color: var(--color-white);
font-size: 1.5rem;
transition: color 0.3s ease;
}
.TheNavigation-socials a:hover {
color: var(--color-yellow);
}
}
body.menu-open {
overflow: hidden;
}