@font-face {
    font-family: 'Noah';
    src: url('../fonts/Noah-Regular.woff') format('woff2'),
        url('../fonts/Noah-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Noah';
    src: url('../fonts/Noah-Bold.woff') format('woff2'),
        url('../fonts/Noah-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Dirtyline';
    src: url('../fonts/Dirtyline.woff2') format('woff2'),
        url('../fonts/Dirtyline.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
    --noir: #101010;
    --blanc: #FCFCFC;
    --gris: #464646;
    --rose: #FF66F0;
    --blanc07: rgba(252, 252, 252, 0.7);
}

html,
body {
    margin: 0 0;
    padding: 0 0;
}

body {
    /* max-width: 1440px; */
    height: 100vh;
    padding: 24px;
    cursor: none;
    font-family: 'Noah';
    font-weight: 400;
    background-color: var(--noir);
    color: var(--blanc);
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
    padding: 0;
}

a {
    transition: 0.2s ease;
    cursor: none;
    text-decoration: none;
    color: var(--blanc);
}

a:hover {
    color: var(--rose);
}

@media screen and (max-width: 980px) {
    body {
        padding: 16px;
    }
}

@media screen and (max-width: 475px) {
    body {
        padding: 0;
    }
}


/* ------------------------------------------------- */
/* ---------------- CADRE / CURSOR ----------------- */
/* ------------------------------------------------- */

/* ----------- CADRE ------------- */

[class^="cadre-line"] {
    position: fixed;
    z-index: 99999;
    background-color: var(--noir);
}

.cadre-line-1,
.cadre-line-2 {
    top: 0;
    left: 0;
    height: 22px;
    width: 100%;
}

.cadre-line-2 {
    top: unset;
    bottom: 0;
}

.cadre-line-3,
.cadre-line-4 {
    top: 0;
    left: 0;
    height: 100%;
    width: 22px;
}

.cadre-line-4 {
    left: unset;
    right: 0;
}

[class^="cadre-border-"] {
    position: fixed;
    z-index: 9999;
    background-color: var(--gris);
}

.cadre-border-1,
.cadre-border-2 {
    top: 22px;
    left: 0;
    height: 2px;
    width: 100%;
}

.cadre-border-2 {
    top: unset;
    bottom: 22px;
}

.cadre-border-3,
.cadre-border-4 {
    left: 22px;
    height: 100%;
    width: 2px;
}

.cadre-border-4 {
    left: unset;
    right: 22px;
}

@media screen and (max-width: 980px) {

    .cadre-line-1,
    .cadre-line-2 {
        height: 14px;
    }

    .cadre-line-3,
    .cadre-line-4 {
        width: 14px;
    }

    .cadre-border-1 {
        top: 14px;
    }

    .cadre-border-2 {
        bottom: 14px;
    }

    .cadre-border-3 {
        left: 14px;
    }

    .cadre-border-4 {
        right: 14px;
    }

}

@media screen and (max-width: 475px) {

    [class^="cadre-line"],
    [class^="cadre-border"] {
        display: none;
    }
}

/* ----------- CURSOR ------------- */

.cursor {
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    pointer-events: none;
    transition: none;
    opacity: 0;
}

.cursor-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-color: var(--rose);
    font-weight: 700;
    color: transparent;
}

.cursor-icon::before {
    content: "Click";
}

.cursor-icon-hover {
    height: 56px;
    width: 56px;
    background-color: var(--blanc);
    color: var(--noir);
}

.cursor-icon-top::before {
    content: "Back";
}

.cursor.rjs_cursor_visible {
    opacity: 1;
}

.cursor.rjs_cursor_hidden {
    opacity: 0;
}

/* ------------------------------------------------- */
/* --------------------- NAV ----------------------- */
/* ------------------------------------------------- */

nav {
    display: flex;
    justify-content: space-between;
    position: fixed;
    z-index: 9999;
    width: 100%;
    top: 0;
    left: 0;
    padding: 48px;
}

.logo {
    display: block;
    width: 75px;
}

.logo-img {
    width: 100%;
    height: 100%;
}

.nav-menu {
    transition: 0.2s ease;
    font-family: 'Dirtyline';
    color: var(--blanc);
}

.nav-menu:hover,
.nav-menu-open:hover {
    color: var(--rose);
}

.nav-open {
    position: fixed;
    overflow: hidden;
    z-index: 999;
    width: 100%;
    height: 100vh;
    right: -100%;
    top: 0;
    padding: 5px;
    transition: 0.7s ease;
    background-color: var(--noir);
}

.nav-open-active {
    right: 0;
}

.nav-menu-open {
    position: absolute;
    top: 48px;
    right: 48px;
    padding: 0;
    transition: 0.2s ease;
    font-family: 'Dirtyline';
}

.menu-content {
    display: flex;
    justify-content: space-between;
    max-width: 1080px;
    height: 100%;
    margin: 0 180px;
    padding: 100px 0;
}

.nav-link-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    font-size: 100px;
    font-family: 'Dirtyline';
}

.nav-link-item a {
    margin-left: 32px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background-color: var(--blanc);
}

.nav-social {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

h4 {
    margin-bottom: 16px;
    text-align: right;
    font-family: 'Dirtyline';
    font-size: 32px;
}

.nav-social a {
    text-transform: uppercase;
    font-size: 16px;
}

.nav-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 64px;
}

.nav-contact img {
    margin-right: 16px;
}

.nav-network a {
    margin-left: 16px;
}

@media screen and (max-width: 1200px) {
    .menu-content {
        margin: 0 80px;
    }

    .nav-link-item {
        font-size: 80px;
    }
}

@media screen and (max-width: 980px) {
    nav {
        padding: 32px;
    }

    .logo {
        width: 56px;
    }

    .nav-menu-open {
        top: 32px;
        right: 32px;
    }

    .menu-content {
        flex-direction: column;
        justify-content: flex-start;
        padding: 48px 0;
    }

    .nav-link-item {
        margin-bottom: 32px;
        font-size: 64px;
    }

    .nav-contact,
    .nav-social {
        align-items: flex-start;
    }

    .nav-contact {
        margin-bottom: 32px;
    }

    h4 {
        text-align: left;
        font-size: 24px;
    }

    .nav-network a {
        margin-left: 0;
        margin-right: 16px;
    }
}

@media screen and (max-width: 650px) {
    .menu-content {
        margin: 0 32px;
    }

    .nav-link-item {
        font-size: 48px;
    }
}

@media screen and (max-width: 475px) {
    .logo {
        width: 40px;
    }

    nav {
        padding: 24px;
    }

    .nav-menu-open {
        top: 24px;
        right: 24px;
    }

    .nav-link-item {
        margin-bottom: 24px;
        font-size: 32px;
    }

    .nav-social {
        margin-top: 16px;
    }

    .nav-network-link {
        display: flex;
        flex-direction: column;
    }

    .nav-network a {
        margin-right: 0;
        margin-bottom: 16px;
    }
}

/* ------------------------------------------------- */
/* -------------------- HEADER --------------------- */
/* ------------------------------------------------- */

header {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.header-bg {
    position: absolute !important;
    z-index: -1;
    overflow: hidden;
    top: -80%;
    left: -10%;
    width: 120%;
    height: 240%;
    animation: rotate 10s ease alternate infinite;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
        transform-origin: center;
    }

    100% {
        transform: rotate(360deg);
        transform-origin: center;

    }
}

.header-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 100px 0 0 0;
}

.pink-letter {
    text-transform: uppercase;
    color: var(--rose);
}

.big-letter {
    text-transform: uppercase;
}

header .dot {
    background-color: var(--noir);
}

h1 {
    font-size: 160px;
    font-family: 'Dirtyline';
}

h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

.header-detail {
    display: flex;
    align-items: center;
}

.mission {
    width: 400px;
}

.mission-title {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.mission-title p {
    margin-left: 16px;
}

.mission-list {
    margin-left: 24px;
    margin-top: 16px;
    font-size: 20px;
    line-height: 130%;
}

.header-img {
    height: 380px;
}

@media screen and (max-width: 1200px) {
    .header-content {
        padding: 120px 80px 0 80px;
    }

    h1 {
        font-size: 120px;
    }

    .header-img {
        height: 300px;
    }

    .mission {
        width: 450px;
    }

    .header-bg {
        left: -30%;
        width: 160%;
    }
}

@media screen and (max-width: 980px) {
    .header-content {
        padding: 100px 80px 0 80px;
    }

    h1 {
        font-size: 64px;
        text-align: center;
    }

    h2 {
        margin-top: 24px;
        font-size: 24px;
        text-align: center;
    }

    .header-detail {
        flex-direction: column;
    }

    .header-img {
        width: 100%;
        height: unset;
    }

    .mission {
        margin-bottom: 40px;
        text-align: center;
    }

    .mission-title {
        justify-content: center;
    }

    .mission-list {
        margin-left: 0;
    }

    .header-bg {
        left: -70%;
        top: -30%;
        width: 240%;
        height: 160%;
    }
}

@media screen and (max-width: 650px) {
    h1 {
        font-size: 48px;
        text-align: center;
    }


}

@media screen and (max-width: 475px) {

    h1 {
        font-size: 40px;
    }

    .header-content {
        padding: 100px 24px 0 24px;
    }
    h2 {
        margin-top: 8px;
        font-size: 16px;
    }

    .mission-title,
    .mission-list {
        font-size: 16px;
    }

    .header-bg {
        left: -70%;
        top: -30%;
        width: 240%;
        height: 160%;
    }
}

/* ------------------------------------------------- */
/* ------------------- CONTEXTE -------------------- */
/* ------------------------------------------------- */

[class^="section"] {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    margin-top: 80px;
}

.section-contexte {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.title-section {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

h3 {
    margin-left: 16px;
    font-family: 'Dirtyline';
    font-size: 40px;
}

.contexte-content {
    width: 60%;
    line-height: 130%;
}

.problematique {
    margin: 40px 0 24px 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
}

.contexte-infos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 20%;
}

.infos-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

[class^='infos-item'] {
    width: 100%;
    padding: 16px 0 16px 0;
    border-bottom: solid 1px var(--blanc07);
}

.infos-item-1 {
    padding: 0 0 16px 0;
}

.infos-item-4 {
    padding: 16px 0 0 0;
    border-bottom: none;
}

.infos-title {
    margin-bottom: 8px;
    text-transform: uppercase;
    opacity: 0.7;
}

.infos-img img {
    width: 40px;
    margin-right: 16px;
}

.infos-img img:last-child {
    margin-right: 0;
}

/* -------------- QUERIES ------------- */

@media screen and (max-width: 1200px) {
    [class^="section"] {
        padding: 0 80px;
    }

    .contexte-content {
        width: 70%;
    }
}

@media screen and (max-width: 980px) {
    [class^='section'] {
        margin-top: 40px;
    }

    h3 {
        font-size: 32px;
    }

    .title-section {
        margin-bottom: 24px;
    }

    .section-contexte {
        flex-direction: column;
    }

    .contexte-content {
        width: 100%;
    }

    .contexte-infos,
    .infos-box {
        flex-direction: row;
        width: 100%;
    }

    .infos-box {
        width: fit-content;
    }

    [class^='infos-item'] {
        width: fit-content;
        margin-top: 40px;
        padding: 0 24px 0 24px;
        border-bottom: none;
        border-right: solid 1px var(--blanc07);
    }

    .infos-item-4 {
        padding: 0 0 0 24px;
        border-right: none;
    }

    .infos-item-1 {
        padding: 0 24px 0 0;
    }
}

@media screen and (max-width: 650px) {
    [class^="section"] {
        padding: 0 40px;
    }

    [class^='infos-item'] {
        padding: 0 16px 0 16px;
    }
}

@media screen and (max-width: 475px) {
    [class^="section"] {
        padding: 0 24px;
    }

    .contexte-infos {
        flex-direction: column;
        width: 100%;
    }

    .infos-box {
        justify-content: center;
        width: 100%;
    }

    [class^='infos-item'] {
        width: 40%;
        padding: 0;
        border-right: none;
    }

    .infos-img img {
        width: 32px;
        margin-right: 8px;
    }
}

/* ------------------------------------------------- */
/* ------------------- CONCEPT --------------------- */
/* ------------------------------------------------- */

.section-concept {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.section-concept p {
    width: 100%;
    text-align: left;
    font-size: 80px;
    font-family: 'Dirtyline';
}

.section-concept p:last-child {
    text-align: right;
}

@media screen and (max-width: 1200px) {
    .section-concept p {
        font-size: 64px;
    }
}

@media screen and (max-width: 980px) {
    .section-concept p {
        font-size: 40px;
    }
}

@media screen and (max-width: 475px) {
    .section-concept p {
        font-size: 32px;
    }
}

@media screen and (max-width: 350px) {
    .section-concept p {
        font-size: 24px;
    }
}

/* ------------------------------------------------- */
/* ------------------- MULTIPLE -------------------- */
/* ------------------------------------------------- */

.section-multiple {
    position: relative;
    overflow: hidden;
}

.section-multiple img {
    width: 100%;
}

/* ------------------------------------------------- */
/* ------------------ CONCEPTION ------------------- */
/* ------------------------------------------------- */

.conception-text{
    max-width: 600px;
}

.conception-img-box{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.conception-img{
    width: 100%;
}

@media screen and (max-width: 980px){
    .conception-img-box{
        margin-top: 32px;
    }
}

/* ------------------------------------------------- */
/* -------------------- IDENTITE ------------------- */
/* ------------------------------------------------- */

.identite-text {
    max-width: 600px;
    line-height: 130%;
}

.identite-content {
    margin-top: 40px;
}

.square {
    width: 300px;
    height: 300px;
    background-size: cover;
}

.rectangle {
    width: 500px;
    height: 300px;
    background-size: cover;
}

[class^='identite-row'] {
    display: flex;
    justify-content: flex-end;
}

.identite-row2 {
    justify-content: flex-start;
    margin-top: 40px;
}

[class^='identite-row']>div:last-child {
    margin-left: 40px;
}

.identite-box2 {
    margin-top: 80px;
}

/* -------------- COLOR FONT -------------- */

.identite-font {
    position: relative;
    overflow: hidden;
    background-color: var(--blanc);
}

.identite-color{
    position: relative;
}

.font-aa {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 80px;
    line-height: 100%;
    color: var(--noir);
}

.font-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
}

.font-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--noir);
}

.font-text {
    font-size: 16px;
    color: var(--noir);
}

.identite-color .lottie {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.identite-color .color-noise{
    position: absolute !important;
    z-index: 9999;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

/* --------- LOGO GRADIENT IMAGERY --------- */

.identite-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--gris);
}

.identite-logo img {
    max-width: 50%;
}

.identite-imagery {
    background-size: cover;
    background-repeat: no-repeat;
}

/* --------------- QUERIES ---------------- */


@media screen and (max-width: 1200px) {
    .square {
        width: 250px;
        height: 250px;
    }

    .rectangle {
        width: 400px;
        height: 250px;
    }
}

@media screen and (max-width: 980px) {
    .square {
        width: 200px;
        height: 200px;
    }

    .rectangle {
        width: 300px;
        height: 200px;
    }

    [class^='identite-row']>div:last-child {
        margin-left: 24px;
    }

    .identite-row2 {
        margin-top: 24px;
    }

    .identite-logo img {
        max-width: 80%;
    }

    .font-aa {
        font-size: 48px;
    }

    .font-title {
        font-size: 24px;
    }

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

    .font-content {
        left: 16px;
        bottom: 16px;
    }
}

@media screen and (max-width: 720px) {
    [class^='identite-row'] {
        flex-direction: column;
        align-items: center;
    }

    [class^='identite-row']>div:last-child {
        margin-left: 0;
        margin-top: 32px;
    }

    .identite-row2 {
        margin-top: 32px;
    }

    .square {
        width: 300px;
        height: 300px;
    }

    .rectangle {
        width: 300px;
        height: 300px;
    }
}

@media screen and (max-width: 475px) {
    .square {
        width: 280px;
        height: 280px;
    }

    .rectangle {
        width: 280px;
        height: 280px;
    }

    .font-text {
        font-size: 12px;
    }
}

/* ------------------------------------------------- */
/* -------------------- SLIDER --------------------- */
/* ------------------------------------------------- */

.section-slider {
    width: 100%;
    max-width: unset;
    margin: 0;
}

.scroll {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    margin-top: 80px;
}

.scroll-box {
    display: flex;
    align-items: center;
    margin: 0;
    animation: scroll 16s linear infinite;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.scroll-box p {
    margin: 0;
    text-transform: uppercase;
}

.scroll-box .dot {
    width: 8px;
    height: 8px;
    margin: 0 16px;
    background-color: var(--blanc);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media screen and (max-width: 1200px){
    .section-slider{
        padding: 0;
    }
}

@media screen and (max-width: 475px){
    .scroll-box .dot{
        margin: 0 8px;
    }
    .scroll-box{
        animation: scroll 20s linear infinite;
    }
}

/* ------------------------------------------------- */
/* ------------------- MAQUETTE -------------------- */
/* ------------------------------------------------- */

.maquette-text {
    max-width: 600px;
    line-height: 130%;
}

.maquette-desktop{
    width: 100%;
    margin: 0 auto;
    margin-top: 40px;
}

.maquette-desktop video{
    width: 100%;
}

.maquette-app{
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.app-1{
   bottom: 40px;
}

.app-2{
    transition-delay: 200ms;
}

.app-3{
    top: 40px;
    transition-delay: 400ms;
}

.maquette-app img, .maquette-app video{
    position: relative;
    width: 30%;
}

.figma{
    width: 100%;
    height: 600px;
    border: none;
}

#prototype-sidebar-panel{
    display: none;
}


@media screen and (max-width: 980px){
    .maquette-desktop{
        width: 100%;
    }
    .maquette-app img{
        width: 33%;
    }
    .figma{
        height: 400px;
    }
}

@media screen and (max-width: 650px){
    .maquette-app{
        flex-direction: column;
        align-items: center;
        margin-top: 24px;
    }
    .maquette-app img, .maquette-app video{
        width: 70%;
    }
    .app-1{
        bottom: 0;
    }
    .app-2{
        transition-delay: unset;
    }
    .app-3{
        top: 0;
        transition-delay: unset;
    }
}

@media screen and (max-width: 475px){
    .maquette-app img, .maquette-app video{
        width: 100%;
    }
    .figma{
        height: 300px;
    }
}

/* ------------------------------------------------- */
/* -------------------- STRAT ---------------------- */
/* ------------------------------------------------- */

.strat-text {
    max-width: 600px;
    line-height: 130%;
}

.strat-concept{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 80px;
}

.strat-concept-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.strat-concept-titre{
    margin-bottom: 16px;
    font-family: 'Dirtyline';
    font-size: 48px;
    text-align: center;
}

.strat-concept-text{
    max-width: 300px;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    line-height: 190%;
}

.strat-reseaux, .strat-insta-desktop, .strat-insta-mobile{
    width: 100%;
}

.strat-reseaux{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 24px 0;
}

.strat-img-duo{
    width: 48%;
}

.strat-insta-mobile{
    display: none;
}

@media screen and (max-width: 980px){
    .strat-concept{
        margin-top: 32px;
    }
    .strat-concept-titre{
        margin-bottom: 8px;
        font-size: 40px;
    }
    .strat-concept-box{
        margin-bottom: 24px;
    }
    .strat-reseaux{
        flex-direction: column;
        padding: 0;
    }
    .strat-reseaux img{
        padding-top: 32px;
    }
    .strat-img-duo{
        width: 100%;
    }
}

@media screen and (max-width: 475px){
    .strat-insta-mobile{
        display: block;
    }
    .strat-insta-desktop{
        display: none;
    }
}

/* ------------------------------------------------- */
/* --------------------- NEXT ---------------------- */
/* ------------------------------------------------- */

.section-next{
    position: relative;
    height: 400px;
    margin-bottom: 80px;
}

.next-container{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.next-bg{
    position: absolute !important;
    z-index: -1;
    left: -20%;
    top: -100%;
    width: 140%;
    height: 300%;
    overflow: hidden;
    animation: rotate 10s ease alternate infinite;
    background-size: cover;
    background-repeat: no-repeat;
}

.next-link{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.next-content-left{
    margin-left: 80px;
}

.next-content-right{
    margin-right: 80px;
}

.next-title{
    font-size: 80px;
    font-family: 'Dirtyline';
}

.next-next{
    margin-bottom: 16px;
    font-size: 32px;
    text-transform: uppercase;
}

.next-text{
    margin-top: 16px;
    font-size: 24px;
}

.next-link img{
    height: 400px
}

@media screen and (max-width: 1200px){
    .section-next, .next-link img{
        height: 350px;
    }
    .next-title{
        font-size: 48px;
    }    
}

@media screen and (max-width: 980px){
    .section-next, .next-link img{
        height: 300px;
    }
    .section-next{
        margin-bottom: 32px;
    }
    .next-content-left{
        margin-left: 32px;
    }
    .next-content-right{
        margin-right: 32px;
    }
    .next-title{
        font-size: 32px;
    }   
    .next-text, .next-next{
        font-size: 16px;
    }
}


@media screen and (max-width: 650px){
    .section-next{
        height: fit-content;
    }
    .next-link{
        flex-direction: column;
    }
    .next-content-left{
        margin-left: 0;
        margin-right: 0;
        margin-top: 32px;
    }
    .next-content-right{
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 32px;
    }
    .next-title, .next-text, .next-next{
        text-align: center;
    }
    .next-link img{
        height: unset;
        width: 100%;
    }
    .next-bg{
        left: -40%;
        top: -30%;
        width: 180%;
        height: 160%;
    }
}

/* ------------------------------------------------- */
/* -------------------- FOOTER --------------------- */
/* ------------------------------------------------- */

footer {
    width: 100%;
    border-top: solid 2px var(--gris);
    margin-bottom: 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 80px 0;
}

.footer-1 p {
    margin-bottom: 24px;
    font-family: 'Dirtyline';
    font-size: 64px;
    line-height: 130%;
}

.footer-1 img {
    width: 24px;
    margin-right: 24px;
}

.footer-1 a {
    display: flex;
    font-size: 40px;
    text-transform: uppercase;
}

.footer-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-transform: uppercase;
}

.footer-2 a {
    display: flex;
    align-items: center;
    font-size: 40px;
    font-weight: 700;
}

.footer-2 .dot {
    margin-right: 24px;
}

.footer-2 p {
    margin-top: 16px;
    text-align: right;
}

@media screen and (max-width: 1200px) {
    .footer-1 p {
        font-size: 56px;
    }

    .footer-content {
        padding: 40px 80px;
    }
}

@media screen and (max-width: 980px) {
    .footer-1 p {
        font-size: 32px;
    }

    .footer-2 a,
    .footer-1 a {
        font-size: 24px;
    }

    footer {
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 650px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        padding: 40px;
    }

    .footer-1,
    .footer-2 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-1 p {
        text-align: center;
    }

    .footer-2 {
        margin-top: 32px;
    }
}

@media screen and (max-width: 475px) {
    .footer-1 p {
        margin-bottom: 16px;
        font-size: 24px;
    }

    .footer-1 a {
        font-size: 16px;
    }

    .footer-1 img {
        margin-right: 8px;
    }

    footer {
        margin-bottom: 0;
    }

    .footer-content {
        padding: 24px;
    }

    .footer-2 {
        margin-top: 24px;
    }

    .footer-2 a {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .footer-2 p {
        margin-top: 0;
    }

    .footer-2 .dot {
        margin-right: 8px;
    }
}