/*
 Theme Name:     Divi Child
 Theme URI:      https://www.elegantthemes.com/gallery/divi/
 Description:    Divi Child Theme
 Author:         Elegant Themes
 Author URI:     https://www.elegantthemes.com
 Template:       Divi
 Version:        1.0.0
*/


/* =Theme customization starts here
------------------------------------------------------- */


/* =Theme customization starts here
------------------------------------------------------- */


@media (max-width: 991px) {
  .inverse {
      display: flex;
      flex-direction: column-reverse;
  }
}

@media (min-width: 1024px) {
  .center-text-image {
      display: flex;
      align-items: center;
  }
}

/* =========================================================
   FLNETT HEADER — CLEAN RESET
========================================================= */

.fln-header,
.fln-header *,
.fln-nav-slot,
.fln-nav-slot * {
    box-sizing: border-box;
}


/* =========================================================
   COLORS
========================================================= */

.fln-header,
.fln-navbar {
    --fln-orange: #d55f28;
    --fln-orange-hover: #bb4e1e;
    --fln-dark: #090806;
    --fln-dark-2: #18130f;
    --fln-dark-3: #28231f;
}


/* =========================================================
   CONTAINER
========================================================= */

.fln-container {
    width: calc(100% - 60px);
    max-width: 1280px;

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.fln-header {
    position: relative;

    width: 100%;

    z-index: 10;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(255,255,255,.06),
            transparent 35%
        ),
        linear-gradient(
            100deg,
            #090806 0%,
            #18130f 55%,
            #28231f 100%
        );

    color: #fff;
}


.fln-topbar {
    height: 54px;

    border-bottom: 1px solid rgba(255,255,255,.12);
}


.fln-topbar-inner {
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   SOCIALS
========================================================= */

.fln-socials {
    display: flex;
    align-items: center;

    gap: 22px;
}


.fln-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 14px;

    text-decoration: none;

    transition:
        color .2s ease,
        transform .2s ease;
}


.fln-socials a:hover {
    color: var(--fln-orange);

    transform: translateY(-1px);
}


/* =========================================================
   TOP CONTACT
========================================================= */

.fln-contact {
    display: flex;
    align-items: center;

    gap: 30px;
}


.fln-contact-item {
    display: flex;
    align-items: center;

    gap: 9px;

    color: rgba(255,255,255,.88);

    font-size: 14px;
    font-weight: 400;

    text-decoration: none;
}


.fln-contact-item i {
    color: var(--fln-orange);
}


a.fln-contact-item:hover {
    color: #fff;
}


/* =========================================================
   NAVBAR SLOT

   The slot ALWAYS keeps the navbar height.
   This prevents the page from jumping when navbar becomes fixed.
========================================================= */

.fln-nav-slot {
    position: relative;

    width: 100%;
    height: 85px;

    z-index: 99990;
}


/* =========================================================
   NAVBAR
========================================================= */

.fln-navbar {
    position: relative;

    top: auto;
    left: auto;

    width: 100%;
    height: 85px;

    z-index: 99990;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(255,255,255,.05),
            transparent 35%
        ),
        linear-gradient(
            100deg,
            #090806 0%,
            #18130f 55%,
            #28231f 100%
        );

    border-bottom: 1px solid rgba(255,255,255,.08);
}


/* =========================================================
   FIXED STATE
========================================================= */

.fln-navbar.fln-fixed {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    width: 100%;

    z-index: 999999999;

    box-shadow:
        0 10px 35px rgba(0,0,0,.28);
}


/* =========================================================
   NAVBAR INNER
========================================================= */

.fln-navbar-inner {
    height: 85px;

    display: flex;
    align-items: center;

    position: relative;
}


/* =========================================================
   LOGO
========================================================= */

.fln-logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    margin-right: auto;

    text-decoration: none;
}


.fln-logo img {
    display: block;

    width: auto;
    height: auto;

    max-width: 185px;
    max-height: 62px;

    object-fit: contain;
}


/* =========================================================
   DESKTOP MENU
========================================================= */

.fln-menu {
    display: flex;
    align-items: center;

    gap: 34px;

    margin-left: 45px;
    margin-right: 35px;
}


.fln-menu a {
    position: relative;

    display: flex;
    align-items: center;

    height: 85px;

    color: #fff;

    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;

    white-space: nowrap;

    text-decoration: none;

    transition: color .2s ease;
}


.fln-menu a:hover {
    color: var(--fln-orange);
}


/* =========================================================
   MENU UNDERLINE
========================================================= */

.fln-menu a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 19px;

    width: 0;
    height: 2px;

    background: var(--fln-orange);

    transition: width .25s ease;
}


.fln-menu a:hover::after {
    width: 100%;
}


/* =========================================================
   CTA
========================================================= */

.fln-cta {
    min-height: 47px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    padding: 0 23px;

    background: var(--fln-orange);
    color: #fff;

    border: 1px solid var(--fln-orange);
    border-radius: 6px;

    font-size: 14px;
    font-weight: 500;

    line-height: 1;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}


.fln-cta:hover {
    background: var(--fln-orange-hover);

    border-color: var(--fln-orange-hover);

    color: #fff;

    transform: translateY(-1px);
}


/* =========================================================
   HAMBURGER
========================================================= */

.fln-burger {
    display: none;

    width: 44px;
    height: 44px;

    flex-shrink: 0;

    padding: 0;

    border: 0;
    border-radius: 6px;

    background: var(--fln-orange);

    cursor: pointer;

    position: relative;

    z-index: 1002;
}


.fln-burger span {
    position: absolute;

    left: 12px;

    width: 20px;
    height: 2px;

    background: #fff;

    border-radius: 20px;

    transition:
        top .25s ease,
        transform .25s ease,
        opacity .2s ease;
}


.fln-burger span:nth-child(1) {
    top: 14px;
}


.fln-burger span:nth-child(2) {
    top: 21px;
}


.fln-burger span:nth-child(3) {
    top: 28px;
}


/* =========================================================
   BURGER OPEN
========================================================= */

.fln-burger.fln-open span:nth-child(1) {
    top: 21px;

    transform: rotate(45deg);
}


.fln-burger.fln-open span:nth-child(2) {
    opacity: 0;
}


.fln-burger.fln-open span:nth-child(3) {
    top: 21px;

    transform: rotate(-45deg);
}


/* =========================================================
   MEDIUM DESKTOP
========================================================= */

@media (max-width: 1150px) {

    .fln-container {
        width: calc(100% - 40px);
    }


    .fln-menu {
        gap: 20px;

        margin-left: 25px;
        margin-right: 25px;
    }


    .fln-menu a {
        font-size: 13px;
    }


    .fln-cta {
        padding-left: 16px;
        padding-right: 16px;

        font-size: 13px;
    }

}


/* =========================================================
   MOBILE + TABLET
========================================================= */

@media (max-width: 980px) {

    /* ------------------------------
       TOPBAR
    ------------------------------ */

    .fln-header {
        display: none;
    }


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

    .fln-nav-slot {
        height: 72px;
    }


    .fln-navbar {
        height: 72px;
    }


    .fln-navbar-inner {
        height: 72px;
    }


    /* ------------------------------
       CONTAINER
    ------------------------------ */

    .fln-container {
        width: calc(100% - 32px);
    }


    /* ------------------------------
       LOGO
    ------------------------------ */

    .fln-logo {
        margin-right: auto;

        position: relative;

        z-index: 1001;
    }


    .fln-logo img {
        max-width: 150px;
        max-height: 50px;
    }


    /* ------------------------------
       HIDE DESKTOP CTA
    ------------------------------ */

    .fln-cta {
        display: none;
    }


    /* ------------------------------
       BURGER
    ------------------------------ */

    .fln-burger {
        display: block;
    }


    /* ------------------------------
       MOBILE MENU
    ------------------------------ */

    .fln-menu {
        position: absolute;

        top: 72px;
        left: 0;

        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        margin: 0;

        padding: 8px 16px 18px;

        background:
            linear-gradient(
                100deg,
                #090806 0%,
                #18130f 55%,
                #28231f 100%
            );

        border-top: 1px solid rgba(255,255,255,.08);

        box-shadow:
            0 22px 35px rgba(0,0,0,.30);

        opacity: 0;
        visibility: hidden;

        pointer-events: none;

        transform: translateY(-8px);

        transition:
            opacity .22s ease,
            visibility .22s ease,
            transform .22s ease;

        z-index: 1000;
    }


    .fln-menu.fln-menu-open {
        opacity: 1;
        visibility: visible;

        pointer-events: auto;

        transform: translateY(0);
    }


    /* ------------------------------
       MOBILE LINKS
    ------------------------------ */

    .fln-menu a {
        display: flex;
        align-items: center;

        width: 100%;
        height: auto;

        padding: 15px 4px;

        color: #fff;

        font-size: 15px;
        font-weight: 400;

        border-bottom: 1px solid rgba(255,255,255,.09);

        white-space: normal;
    }


    .fln-menu a:last-child {
        border-bottom: 0;
    }


    .fln-menu a::after {
        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .fln-container {
        width: calc(100% - 24px);
    }


    .fln-logo img {
        max-width: 135px;
        max-height: 46px;
    }


    .fln-burger {
        width: 42px;
        height: 42px;
    }


    .fln-burger span {
        left: 11px;
    }


    .fln-menu {
        padding-left: 12px;
        padding-right: 12px;
    }

}
/* =========================================================
   FLNETT — DESKTOP ALIGNMENT FIX
========================================================= */

@media (min-width: 981px) {

    .fln-nav-slot,
    .fln-navbar {
        height: 86px;
    }

    .fln-navbar-inner {
        height: 86px;

        display: grid !important;

        /* logo | menu | button */
        grid-template-columns: 190px 1fr auto;

        align-items: center;

        column-gap: 35px;
    }


    /* LOGO */

    .fln-logo {
        width: 190px;

        display: flex;
        align-items: center;
        justify-content: flex-start;

        margin: 0 !important;
    }

    .fln-logo img {
        width: auto;
        height: auto;

        max-width: 145px;
        max-height: 65px;

        display: block;
    }


    /* MENU */

    .fln-menu {
        display: flex !important;

        align-items: center;
        justify-content: flex-end;

        gap: 34px;

        margin: 0 !important;
        padding: 0 !important;

        position: static !important;

        width: auto !important;

        opacity: 1 !important;
        visibility: visible !important;

        pointer-events: auto !important;

        transform: none !important;

        background: transparent !important;

        box-shadow: none !important;
        border: 0 !important;
    }


    .fln-menu a {
        height: 86px;

        display: inline-flex;
        align-items: center;

        padding: 0 !important;

        color: #fff;

        font-size: 15px;
        font-weight: 400;

        white-space: nowrap;

        border: 0 !important;
    }


    /* UNDERLINE */

    .fln-menu a::after {
        display: block;

        bottom: 22px;
    }


    /* CTA */

    .fln-cta {
        display: inline-flex !important;

        min-width: 178px;
        min-height: 48px;

        padding: 0 22px;

        align-items: center;
        justify-content: center;

        margin: 0 !important;

        background: #d55f28;
        color: #fff;

        border: 0;
        border-radius: 7px;

        font-size: 14px;
        font-weight: 500;

        white-space: nowrap;

        flex-shrink: 0;
    }


    .fln-cta:hover {
        background: #bd4f1e;
        color: #fff;
    }


    /* NO BURGER ON DESKTOP */

    .fln-burger {
        display: none !important;
    }

}


/* =========================================================
   TABLET DESKTOP
========================================================= */

@media (min-width: 981px) and (max-width: 1200px) {

    .fln-container {
        width: calc(100% - 40px);
    }

    .fln-navbar-inner {
        grid-template-columns: 155px 1fr auto;

        column-gap: 20px;
    }

    .fln-logo {
        width: 155px;
    }

    .fln-logo img {
        max-width: 125px;
    }

    .fln-menu {
        gap: 20px;
    }

    .fln-menu a {
        font-size: 13px;
    }

    .fln-cta {
        min-width: 150px;

        padding: 0 16px;

        font-size: 13px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 980px) {

    /* COMPLETELY REMOVE CTA */

    .fln-cta {
        display: none !important;
    }


    /* TOPBAR OFF */

    .fln-header,
    .fln-topbar {
        display: none !important;
    }


    /* NAVBAR */

    .fln-nav-slot,
    .fln-navbar,
    .fln-navbar-inner {
        height: 72px !important;
        min-height: 72px !important;
    }


    .fln-navbar-inner {
        display: flex !important;

        align-items: center;
        justify-content: space-between;
    }


    /* LOGO */

    .fln-logo {
        margin: 0 auto 0 0 !important;

        width: auto !important;
    }

    .fln-logo img {
        max-width: 140px;
        max-height: 50px;
    }


    /* BURGER */

    .fln-burger {
        display: block !important;

        margin: 0 !important;

        flex: 0 0 44px;
    }


    /* MOBILE MENU */

    .fln-menu {
        position: absolute !important;

        top: 72px !important;
        left: 0 !important;
        right: 0 !important;

        width: 100% !important;

        margin: 0 !important;

        padding: 10px 16px 18px !important;

        display: flex !important;
        flex-direction: column !important;

        gap: 0 !important;

        background: #12100e !important;

        opacity: 0 !important;
        visibility: hidden !important;

        pointer-events: none !important;

        transform: translateY(-8px) !important;

        box-shadow: 0 20px 30px rgba(0,0,0,.25) !important;

        z-index: 999999 !important;
    }


    .fln-menu.fln-menu-open {
        opacity: 1 !important;
        visibility: visible !important;

        pointer-events: auto !important;

        transform: translateY(0) !important;
    }


    .fln-menu a {
        width: 100% !important;
        height: auto !important;

        display: block !important;

        padding: 15px 5px !important;

        font-size: 15px;

        border-bottom: 1px solid rgba(255,255,255,.09) !important;
    }


    .fln-menu a::after {
        display: none !important;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .fln-container {
        width: calc(100% - 26px);
    }

    .fln-logo img {
        max-width: 130px;
    }

}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .flnett-container {
        width: calc(100% - 40px);
    }


    .flnett-menu {
        gap: 24px;

        margin-left: 30px;
        margin-right: 25px;
    }


    .flnett-menu a {
        font-size: 14px;
    }


    .flnett-cta {
        padding: 0 17px;

        font-size: 14px;
    }


    .flnett-logo img {
        max-width: 170px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .flnett-topbar {
        display: none;
    }


    .flnett-navbar,
    .flnett-navbar-inner {
        min-height: 75px;
    }


    .flnett-menu {
        display: none;
    }


    .flnett-cta {
        display: none;
    }


    .flnett-mobile-toggle {
        display: flex;
    }


    .flnett-logo img {
        max-width: 160px;
        max-height: 58px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .flnett-container {
        width: calc(100% - 30px);
    }


    .flnett-navbar,
    .flnett-navbar-inner {
        min-height: 70px;
    }


    .flnett-logo img {
        max-width: 135px;
        max-height: 52px;
    }


    .flnett-mobile-toggle {
        width: 42px;
        height: 42px;

        font-size: 18px;
    }
}

.ewd-map-section {
    width: 100%;
    padding: 70px 20px;
    background: #f7f7f7;
}

.ewd-map-header {
    max-width: 750px;
    margin: 0 auto 35px;
    text-align: center;
}

.ewd-map-header > span {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #777;
}

.ewd-map-header h2 {
    margin: 0 0 15px;
    font-size: 38px;
    line-height: 1.2;
    color: #222;
}

.ewd-map-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}


/* MAP */

#ewd-map {
    width: 100%;
    max-width: 1200px;
    height: 550px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    z-index: 1;
}


/* CUSTOM MARKER */

.ewd-custom-marker {
    background: transparent;
    border: 0;
}

.ewd-marker-dot {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ewd-marker-dot::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
}

.ewd-marker-dot span {
    position: relative;
    width: 18px;
    height: 18px;
    background: #111;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}


/* POPUP */

.ewd-map-popup {
    min-width: 140px;
    padding: 5px;
    text-align: center;
}

.ewd-map-popup strong {
    display: block;
    margin-bottom: 4px;
    font-size: 17px;
    color: #111;
}

.ewd-map-popup span {
    font-size: 13px;
    color: #777;
}

.leaflet-popup-content-wrapper {
    border-radius: 10px;
}


/* TABLET */

@media (max-width: 980px) {

    .ewd-map-section {
        padding: 50px 20px;
    }

    .ewd-map-header h2 {
        font-size: 32px;
    }

    #ewd-map {
        height: 480px;
    }
}


/* MOBILE */

@media (max-width: 767px) {

    .ewd-map-section {
        padding: 40px 15px;
    }

    .ewd-map-header {
        margin-bottom: 25px;
    }

    .ewd-map-header h2 {
        font-size: 27px;
    }

    .ewd-map-header p {
        font-size: 15px;
    }

    #ewd-map {
        height: 420px;
        border-radius: 12px;
    }
}
/* ==========================================
   FLNETT - SERVICES CARDS
   Orange : #D55F28
   Gris   : #3D3D3D
========================================== */

.flnett-services-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:1px;
    width:100%;
    border:1px solid rgba(61,61,61,.14);
    background:rgba(61,61,61,.14);
}


/* =========================
   NORMAL CARDS
========================= */

.flnett-service-card{
    min-width:0;
    padding:34px 30px 30px;
    background:#fff;
    transition:
        background .25s ease,
        transform .25s ease;
}

.flnett-service-card:hover{
    background:#f7f3f0;
}

.flnett-service-num{
    display:block;
    color:#D55F28;
    font-family:inherit;
    font-size:12.5px;
    font-weight:600;
    line-height:1.4;
    letter-spacing:.05em;
}

.flnett-service-card h3{
    margin:14px 0 0;
    padding:0;
    color:#3D3D3D;
    font-family:inherit;
    font-size:22px;
    font-weight:700;
    line-height:1.15;
}

.flnett-service-card p{
    margin:12px 0 0;
    padding:0;
    color:#3D3D3D;
    font-family:inherit;
    font-size:14.5px;
    font-weight:400;
    line-height:1.65;
    opacity:.8;
}


/* =========================
   DIAGNOSTIC CARD
========================= */

.flnett-service-card--diagnostic{
    display:flex;
    flex-direction:column;
    justify-content:center;
    background:#D55F28;
    color:#fff;
}

.flnett-service-card--diagnostic:hover{
    background:#D55F28;
}

.flnett-service-card--diagnostic .flnett-service-num{
    color:#fff;
}

.flnett-service-card--diagnostic h3{
    color:#fff;
}

.flnett-service-card--diagnostic p{
    color:#fff;
    opacity:.9;
}


/* =========================
   WHITE BUTTON
========================= */

.flnett-diagnostic-btn{
    display:inline-block;
    width:fit-content;
    margin-top:22px;
    padding:12px 20px;
    background:#fff;
    border:2px solid #fff;
    color:#D55F28 !important;
    font-family:inherit;
    font-size:14px;
    font-weight:700;
    line-height:1.2;
    text-decoration:none !important;
    transition:
        background .2s ease,
        color .2s ease;
}

.flnett-diagnostic-btn:hover{
    background:transparent;
    color:#fff !important;
}


/* =========================
   TABLET
========================= */

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

    .flnett-services-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
    }

}


/* =========================
   MOBILE
========================= */

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

    .flnett-services-grid{
        grid-template-columns:1fr;
    }

    .flnett-service-card{
        padding:28px 24px;
    }

    .flnett-service-card h3{
        font-size:21px;
    }

    .flnett-service-card p{
        font-size:14.5px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

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

    .flnett-service-card{
        padding:24px 20px;
    }

    .flnett-service-card h3{
        font-size:20px;
    }

    .flnett-diagnostic-btn{
        width:100%;
        text-align:center;
    }

}

/* =========================================================
   FLNETT — NOUVELLE CONSTRUCTION
   #D55F28 / #3D3D3D
   Optimisé Divi
========================================================= */

.flnett-construction,
.flnett-construction *,
.flnett-construction *::before,
.flnett-construction *::after{
    box-sizing:border-box;
}

.flnett-construction{
    width:100%;
}

.flnett-construction h1,
.flnett-construction h2,
.flnett-construction p{
    font-family:inherit;
}

.flnett-section-num{
    display:block;
    margin-bottom:18px;
    color:#D55F28;
    font-size:12px;
    font-weight:700;
    line-height:1.3;
    letter-spacing:.11em;
    text-transform:uppercase;
}


/* =========================================================
   HERO
========================================================= */

.flnett-build-hero{
    display:grid;
    grid-template-columns:46% 54%;
    width:100%;
    min-height:600px;
}

.flnett-build-hero__content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:70px 7% 70px 0;
}

.flnett-build-hero h1{
    margin:0 0 28px;
    padding:0;
    color:#3D3D3D;
    font-size:clamp(44px,5.5vw,76px);
    font-weight:700;
    line-height:.98;
}

.flnett-build-hero p{
    margin:0;
    padding:0;
    color:#3D3D3D;
    font-size:17px;
    line-height:1.75;
}

.flnett-build-hero__image{
    position:relative;
    min-height:600px;
    overflow:hidden;
}

.flnett-build-hero__image img{
    width:100%;
    height:100%;
    position:absolute;
    inset:0;
    object-fit:cover;
}

.flnett-image-tag{
    position:absolute;
    right:0;
    bottom:0;
    padding:14px 25px;
    background:#D55F28;
    color:#fff;
    font-size:13px;
    font-weight:700;
    letter-spacing:.1em;
    text-transform:uppercase;
}


/* =========================================================
   ALTERNATING IMAGE / TEXT SECTIONS
========================================================= */

.flnett-build-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    width:100%;
    min-height:520px;
    margin-top:30px;
    border:1px solid rgba(61,61,61,.13);
}

.flnett-build-photo{
    min-height:520px;
    overflow:hidden;
}

.flnett-build-photo img{
    display:block;
    width:100%;
    height:100%;
    min-height:520px;
    object-fit:cover;
    transition:transform .6s ease;
}

.flnett-build-section:hover .flnett-build-photo img{
    transform:scale(1.025);
}

.flnett-build-text{
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:70px 8%;
    background:#fff;
}

.flnett-build-text h2{
    margin:0 0 23px;
    padding:0;
    color:#3D3D3D;
    font-size:clamp(30px,3vw,46px);
    font-weight:700;
    line-height:1.08;
}

.flnett-build-text p{
    margin:0;
    padding:0;
    color:#3D3D3D;
    font-size:16px;
    line-height:1.75;
}

.flnett-build-line{
    width:55px;
    height:4px;
    margin-top:30px;
    background:#D55F28;
}


/* Alternating layout */

.flnett-build-section--reverse .flnett-build-photo{
    order:2;
}

.flnett-build-section--reverse .flnett-build-text{
    order:1;
}


/* =========================================================
   WHY — DARK FEATURE SECTION
========================================================= */

.flnett-build-feature{
    display:grid;
    grid-template-columns:38% 62%;
    width:100%;
    margin-top:30px;
    background:#3D3D3D;
}

.flnett-build-feature__image{
    position:relative;
    min-height:540px;
    overflow:hidden;
}

.flnett-build-feature__image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(61,61,61,0) 55%,
        #3D3D3D 100%
    );
}

.flnett-build-feature__image img{
    width:100%;
    height:100%;
    position:absolute;
    inset:0;
    object-fit:cover;
}

.flnett-build-feature__content{
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:75px 8%;
}

.flnett-build-feature__content::before{
    content:"";
    position:absolute;
    top:0;
    left:8%;
    width:75px;
    height:6px;
    background:#D55F28;
}

.flnett-build-feature h2{
    margin:0 0 25px;
    padding:0;
    color:#fff;
    font-size:clamp(32px,4vw,52px);
    font-weight:700;
    line-height:1.08;
}

.flnett-build-feature p{
    margin:0;
    padding:0;
    color:#fff;
    font-size:16px;
    line-height:1.8;
    opacity:.85;
}


/* =========================================================
   COLLABORATION — LARGE IMAGE
========================================================= */

.flnett-build-collab{
    position:relative;
    width:100%;
    min-height:650px;
    margin-top:30px;
    overflow:hidden;
}

.flnett-build-collab__bg{
    position:absolute;
    inset:0;
}

.flnett-build-collab__bg::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.63) 0%,
        rgba(0,0,0,.38) 48%,
        rgba(0,0,0,.08) 100%
    );
}

.flnett-build-collab__bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.flnett-build-collab__box{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    justify-content:center;
    width:55%;
    min-height:650px;
    padding:75px 7%;
}

.flnett-build-collab h2{
    margin:0 0 25px;
    padding:0;
    color:#fff;
    font-size:clamp(32px,4vw,53px);
    font-weight:700;
    line-height:1.08;
}

.flnett-build-collab p{
    margin:0;
    padding:0;
    color:#fff;
    font-size:16px;
    line-height:1.8;
}


/* =========================================================
   ZONES
========================================================= */

.flnett-build-zones{
    display:grid;
    grid-template-columns:43% 57%;
    width:100%;
    margin-top:30px;
    border-top:1px solid rgba(61,61,61,.15);
    border-bottom:1px solid rgba(61,61,61,.15);
}

.flnett-build-zones__heading{
    padding:65px 8% 65px 0;
    border-right:1px solid rgba(61,61,61,.15);
}

.flnett-build-zones__content{
    padding:65px 0 65px 8%;
}

.flnett-build-zones h2{
    margin:0;
    padding:0;
    color:#3D3D3D;
    font-size:clamp(29px,3.4vw,46px);
    font-weight:700;
    line-height:1.1;
}

.flnett-build-zones p{
    margin:0;
    padding:0;
    color:#3D3D3D;
    font-size:16px;
    line-height:1.75;
}

.flnett-zone-list{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:28px;
}

.flnett-zone-list span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:9px 15px;
    border:1px solid #D55F28;
    color:#D55F28;
    font-size:13px;
    font-weight:700;
}


/* =========================================================
   CTA
========================================================= */

.flnett-build-cta{
    display:grid;
    grid-template-columns:100px 1fr auto;
    align-items:center;
    width:100%;
    margin-top:30px;
    background:#D55F28;
}

.flnett-build-cta__number{
    display:flex;
    align-items:center;
    justify-content:center;
    align-self:stretch;
    border-right:1px solid rgba(255,255,255,.25);
    color:#fff;
    font-size:31px;
    font-weight:700;
}

.flnett-build-cta__content{
    padding:55px 50px;
}

.flnett-build-cta .flnett-section-num{
    color:#fff;
    opacity:.7;
}

.flnett-build-cta h2{
    margin:0 0 15px;
    padding:0;
    color:#fff;
    font-size:clamp(30px,3.3vw,46px);
    font-weight:700;
    line-height:1.08;
}

.flnett-build-cta p{
    margin:0;
    padding:0;
    color:#fff;
    font-size:15.5px;
    line-height:1.75;
}

.flnett-build-cta__button{
    padding:40px 50px 40px 20px;
}

.flnett-build-cta__button a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 25px;
    background:#fff;
    border:2px solid #fff;
    color:#D55F28 !important;
    font-size:14px;
    font-weight:700;
    line-height:1.2;
    text-decoration:none !important;
    white-space:nowrap;
    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.flnett-build-cta__button a:hover{
    background:transparent;
    color:#fff !important;
    transform:translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

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

    .flnett-build-hero{
        grid-template-columns:1fr 1fr;
        min-height:520px;
    }

    .flnett-build-hero__content{
        padding:55px 7% 55px 0;
    }

    .flnett-build-hero__image{
        min-height:520px;
    }

    .flnett-build-section{
        min-height:450px;
    }

    .flnett-build-photo,
    .flnett-build-photo img{
        min-height:450px;
    }

    .flnett-build-text{
        padding:50px 7%;
    }

    .flnett-build-feature{
        grid-template-columns:42% 58%;
    }

    .flnett-build-feature__content{
        padding:55px 7%;
    }

    .flnett-build-collab__box{
        width:70%;
    }

    .flnett-build-zones{
        grid-template-columns:1fr 1fr;
    }

    .flnett-build-cta{
        grid-template-columns:80px 1fr;
    }

    .flnett-build-cta__button{
        grid-column:2;
        padding:0 40px 40px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

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

    /* HERO */

    .flnett-build-hero{
        display:flex;
        flex-direction:column;
        min-height:0;
    }

    .flnett-build-hero__content{
        order:2;
        padding:35px 0 15px;
    }

    .flnett-build-hero__image{
        order:1;
        min-height:380px;
    }

    .flnett-build-hero h1{
        font-size:40px;
    }


    /* IMAGE / TEXT */

    .flnett-build-section,
    .flnett-build-section--reverse{
        display:flex;
        flex-direction:column;
        min-height:0;
    }

    .flnett-build-section .flnett-build-photo,
    .flnett-build-section--reverse .flnett-build-photo{
        order:1;
    }

    .flnett-build-section .flnett-build-text,
    .flnett-build-section--reverse .flnett-build-text{
        order:2;
    }

    .flnett-build-photo,
    .flnett-build-photo img{
        min-height:340px;
    }

    .flnett-build-text{
        padding:36px 25px 40px;
    }


    /* DARK FEATURE */

    .flnett-build-feature{
        display:block;
    }

    .flnett-build-feature__image{
        min-height:340px;
    }

    .flnett-build-feature__image::after{
        background:linear-gradient(
            0deg,
            #3D3D3D 0%,
            rgba(61,61,61,0) 50%
        );
    }

    .flnett-build-feature__content{
        padding:38px 25px 45px;
    }

    .flnett-build-feature__content::before{
        left:25px;
    }


    /* COLLAB */

    .flnett-build-collab{
        min-height:600px;
    }

    .flnett-build-collab__bg::after{
        background:rgba(0,0,0,.58);
    }

    .flnett-build-collab__box{
        width:100%;
        min-height:600px;
        padding:50px 25px;
    }


    /* ZONES */

    .flnett-build-zones{
        grid-template-columns:1fr;
    }

    .flnett-build-zones__heading{
        padding:40px 24px 30px;
        border-right:0;
        border-bottom:1px solid rgba(61,61,61,.15);
    }

    .flnett-build-zones__content{
        padding:30px 24px 40px;
    }


    /* CTA */

    .flnett-build-cta{
        display:block;
    }

    .flnett-build-cta__number{
        justify-content:flex-start;
        padding:25px 25px 0;
        border-right:0;
        font-size:22px;
    }

    .flnett-build-cta__content{
        padding:20px 25px 25px;
    }

    .flnett-build-cta__button{
        padding:0 25px 35px;
    }

    .flnett-build-cta__button a{
        width:100%;
        white-space:normal;
        text-align:center;
    }

}

/* ============================================================
   GALERIE MASONRY — FLNETT
   Homepage + Full Gallery Page
   Namespace : .mg-
   ============================================================ */

.mg{
  --mg-accent:#c7a56a;
  --mg-dark:#151515;
  --mg-row:clamp(26px,3.1vw,46px);
  --mg-gap:clamp(8px,.9vw,16px);

  width:100%;
  margin:0;
  padding:0;
  overflow:hidden;
  background:var(--mg-bg);
}

.mg,
.mg *{
  box-sizing:border-box;
}


/* ============================================================
   BASE GRID — HOMEPAGE
   ============================================================ */

.mg-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-template-rows:repeat(20,var(--mg-row));
  gap:var(--mg-gap);

  width:100%;
  margin:0;
  padding:0;
}


/* ============================================================
   ITEMS
   ============================================================ */

.mg-item{
  position:relative;
  display:block;

  overflow:hidden;

  background:#e9e9e9;

  text-decoration:none;
  color:inherit;
}

.mg-item:focus-visible{
  outline:2px solid var(--mg-accent);
  outline-offset:-4px;
}


/* ============================================================
   IMAGES
   ============================================================ */

.mg-img{
  display:block;

  width:100%;
  height:100%;

  object-fit:cover;

  filter:saturate(.95);

  transition:
    transform .8s cubic-bezier(.22,1,.36,1),
    filter .5s ease;
}

.mg-item:hover .mg-img{
  transform:scale(1.06);
  filter:saturate(1.05);
}


/* ============================================================
   HOVER OVERLAY
   ============================================================ */

.mg-veil{
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.42) 0%,
      rgba(0,0,0,.12) 45%,
      rgba(0,0,0,0) 75%
    );

  opacity:0;

  transition:opacity .4s ease;

  pointer-events:none;
}

.mg-item:hover .mg-veil{
  opacity:1;
}


/* ============================================================
   CAPTIONS — DISABLED
   ============================================================ */

.mg-cap{
  display:none !important;
}


/* ============================================================
   NUMBERS
   ============================================================ */

.mg-num{
  position:absolute;

  top:0;
  right:0;

  z-index:3;

  display:flex;
  align-items:center;
  justify-content:center;

  min-width:45px;
  height:38px;

  padding:0 12px;

  color:#ffffff;
  background:rgba(0,0,0,.55);

  font-size:11px;
  font-weight:600;
  letter-spacing:.12em;

  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);

  opacity:0;
  transform:translateY(-100%);

  transition:
    opacity .4s ease,
    transform .45s cubic-bezier(.22,1,.36,1);

  pointer-events:none;
}

.mg-item:hover .mg-num{
  opacity:1;
  transform:translateY(0);
}


/* ============================================================
   HOMEPAGE — 6 IMAGES
   ============================================================ */

.mg:not(.mg-full) .mg-i1{
  grid-column:1;
  grid-row:1 / span 8;
}

.mg:not(.mg-full) .mg-i2{
  grid-column:1;
  grid-row:9 / span 12;
}

.mg:not(.mg-full) .mg-i3{
  grid-column:2;
  grid-row:1 / span 11;
}

.mg:not(.mg-full) .mg-i4{
  grid-column:2;
  grid-row:12 / span 9;
}

.mg:not(.mg-full) .mg-i5{
  grid-column:3;
  grid-row:1 / span 8;
}

.mg:not(.mg-full) .mg-i6{
  grid-column:3;
  grid-row:9 / span 12;
}


/* ============================================================
   FULL GALLERY PAGE — 14 IMAGES
   Wrapper must be:
   <div class="mg mg-full">
   ============================================================ */

.mg.mg-full .mg-grid{
  grid-template-rows:repeat(48,var(--mg-row));
}


/* COLUMN 1 */

.mg.mg-full .mg-i1{
  grid-column:1;
  grid-row:1 / span 8;
}

.mg.mg-full .mg-i2{
  grid-column:1;
  grid-row:9 / span 12;
}

.mg.mg-full .mg-i3{
  grid-column:1;
  grid-row:21 / span 9;
}

.mg.mg-full .mg-i4{
  grid-column:1;
  grid-row:30 / span 11;
}

.mg.mg-full .mg-i5{
  grid-column:1;
  grid-row:41 / span 8;
}


/* COLUMN 2 */

.mg.mg-full .mg-i6{
  grid-column:2;
  grid-row:1 / span 11;
}

.mg.mg-full .mg-i7{
  grid-column:2;
  grid-row:12 / span 8;
}

.mg.mg-full .mg-i8{
  grid-column:2;
  grid-row:20 / span 12;
}

.mg.mg-full .mg-i9{
  grid-column:2;
  grid-row:32 / span 9;
}

.mg.mg-full .mg-i10{
  grid-column:2;
  grid-row:41 / span 8;
}


/* COLUMN 3 */

.mg.mg-full .mg-i11{
  grid-column:3;
  grid-row:1 / span 8;
}

.mg.mg-full .mg-i12{
  grid-column:3;
  grid-row:9 / span 12;
}

.mg.mg-full .mg-i13{
  grid-column:3;
  grid-row:21 / span 11;
}

.mg.mg-full .mg-i14{
  grid-column:3;
  grid-row:32 / span 17;
}


/* ============================================================
   LIGHTBOX
   ============================================================ */

.mg-lb{
  position:fixed;
  inset:0;

  z-index:999999;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:clamp(20px,4vw,60px);

  background:rgba(10,10,10,.95);

  opacity:0;
  visibility:hidden;
  pointer-events:none;

  transition:
    opacity .3s ease,
    visibility .3s ease;
}

.mg-lb:target{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}


/* Lightbox image */

.mg-lb img{
  position:relative;
  z-index:1;

  display:block;

  max-width:90vw;
  max-height:88vh;

  width:auto;
  height:auto;

  object-fit:contain;

  box-shadow:
    0 30px 80px rgba(0,0,0,.45);

  transform:scale(.96);

  transition:
    transform .4s cubic-bezier(.22,1,.36,1);
}

.mg-lb:target img{
  transform:scale(1);
}


/* Background click area */

.mg-lb-shut{
  position:absolute;
  inset:0;

  z-index:0;

  cursor:zoom-out;
}


/* ============================================================
   LIGHTBOX BUTTONS
   ============================================================ */

.mg-lb-x,
.mg-lb-nav{
  position:absolute;

  z-index:4;

  display:flex;
  align-items:center;
  justify-content:center;

  width:48px;
  height:48px;

  border:1px solid rgba(255,255,255,.28);
  border-radius:50%;

  background:rgba(255,255,255,.10);
  color:#ffffff;

  text-decoration:none;

  font-family:Arial,sans-serif;
  font-size:26px;
  font-weight:300;
  line-height:1;

  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);

  transition:
    background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.mg-lb-x:hover,
.mg-lb-nav:hover{
  background:rgba(255,255,255,.20);
  border-color:rgba(255,255,255,.55);
}


/* CLOSE */

.mg-lb-x{
  top:25px;
  right:25px;
}


/* PREVIOUS */

.mg-lb-prev{
  left:25px;
  top:50%;

  transform:translateY(-50%);
}

.mg-lb-prev:hover{
  transform:
    translateY(-50%)
    scale(1.08);
}


/* NEXT */

.mg-lb-next{
  right:25px;
  top:50%;

  transform:translateY(-50%);
}

.mg-lb-next:hover{
  transform:
    translateY(-50%)
    scale(1.08);
}


/* ============================================================
   TABLET — HOMEPAGE
   ============================================================ */

@media(max-width:980px){

  .mg:not(.mg-full) .mg-grid{
    grid-template-columns:repeat(2,1fr);
    grid-template-rows:repeat(30,var(--mg-row));
  }

  .mg:not(.mg-full) .mg-i1{
    grid-column:1;
    grid-row:1 / span 9;
  }

  .mg:not(.mg-full) .mg-i3{
    grid-column:1;
    grid-row:10 / span 12;
  }

  .mg:not(.mg-full) .mg-i5{
    grid-column:1;
    grid-row:22 / span 9;
  }

  .mg:not(.mg-full) .mg-i2{
    grid-column:2;
    grid-row:1 / span 12;
  }

  .mg:not(.mg-full) .mg-i4{
    grid-column:2;
    grid-row:13 / span 9;
  }

  .mg:not(.mg-full) .mg-i6{
    grid-column:2;
    grid-row:22 / span 9;
  }

}


/* ============================================================
   TABLET — FULL GALLERY
   ============================================================ */

@media(max-width:980px){

  .mg.mg-full .mg-grid{
    grid-template-columns:repeat(2,1fr);
    grid-template-rows:none;
  }

  .mg.mg-full .mg-item{
    grid-column:auto !important;
    grid-row:auto !important;

    min-height:320px;
  }

  .mg.mg-full .mg-i2,
  .mg.mg-full .mg-i5,
  .mg.mg-full .mg-i8,
  .mg.mg-full .mg-i11,
  .mg.mg-full .mg-i14{
    min-height:430px;
  }

}


/* ============================================================
   TOUCH / TABLET NUMBER
   ============================================================ */

@media(max-width:980px){

  .mg-num{
    opacity:1;
    transform:none;
  }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media(max-width:600px){

  .mg{
    --mg-gap:8px;
  }

  .mg-grid{
    grid-template-columns:1fr !important;
    grid-template-rows:none !important;

    gap:8px;
  }

  .mg-item{
    grid-column:1 !important;
    grid-row:auto !important;
  }


  /* --------------------------------
     HOMEPAGE MOBILE
  -------------------------------- */

  .mg:not(.mg-full) .mg-i1,
  .mg:not(.mg-full) .mg-i3,
  .mg:not(.mg-full) .mg-i5{
    aspect-ratio:4 / 3;
  }

  .mg:not(.mg-full) .mg-i2,
  .mg:not(.mg-full) .mg-i4,
  .mg:not(.mg-full) .mg-i6{
    aspect-ratio:4 / 5;
  }


  /* --------------------------------
     FULL GALLERY MOBILE
  -------------------------------- */

  .mg.mg-full .mg-item{
    min-height:0;
    aspect-ratio:4 / 3;
  }

  .mg.mg-full .mg-i2,
  .mg.mg-full .mg-i5,
  .mg.mg-full .mg-i8,
  .mg.mg-full .mg-i11,
  .mg.mg-full .mg-i14{
    aspect-ratio:4 / 5;
  }


  /* Images */

  .mg-img{
    width:100%;
    height:100%;
    object-fit:cover;
  }


  /* Numbers */

  .mg-num{
    opacity:1;
    transform:none;
  }


  /* Lightbox */

  .mg-lb{
    padding:60px 12px 25px;
  }

  .mg-lb img{
    max-width:100%;
    max-height:80vh;
  }

  .mg-lb-x{
    top:12px;
    right:12px;

    width:42px;
    height:42px;

    font-size:23px;
  }

  .mg-lb-nav{
    width:42px;
    height:42px;

    background:rgba(0,0,0,.45);
  }

  .mg-lb-prev{
    left:8px;
  }

  .mg-lb-next{
    right:8px;
  }

}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media(prefers-reduced-motion:reduce){

  .mg-img,
  .mg-num,
  .mg-lb,
  .mg-lb img,
  .mg-lb-nav,
  .mg-lb-x{
    transition:none !important;
  }

}
::selection{
  background:#d55f28;
  color:#ffffff;
}

::-moz-selection{
  background:#d55f28;
  color:#ffffff;
}

/* ============================================================
   FLNETT FOOTER — CLEAN / SEPARATED FROM HEADER
   Accent: #d55f28
   Namespace: .fln-footer-
============================================================ */

.fln-footer,
.fln-footer *{
  box-sizing:border-box;
}

.fln-footer{
  --fln-footer-bg:#3D3D3D;
  --fln-footer-accent:#d55f28;
  --fln-footer-ink:#ffffff;
  --fln-footer-muted:rgba(255,255,255,.72);
  --fln-footer-line:rgba(255,255,255,.18);

  width:100%;
  margin:0;
  padding:clamp(26px,3.4vw,52px) clamp(20px,5vw,72px) clamp(16px,2vw,28px);
  overflow:hidden;
  background:var(--fln-footer-bg);
  color:var(--fln-footer-ink);
  font-family:inherit;
}

/* =========================
   GRAND CTA
========================= */

.fln-footer-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:clamp(16px,3vw,48px);
  margin:0 0 clamp(18px,2.2vw,30px);
  color:#fff !important;
  text-decoration:none !important;
}

.fln-footer .fln-footer-cta h2{
  flex:1 1 auto;
  margin:0;
  padding:0;
  color:#fff !important;
  font-family:inherit;
  font-size:clamp(38px,8.5vw,118px) !important;
  font-weight:700;
  line-height:.92;
  letter-spacing:-.035em;
  text-transform:uppercase;
}

.fln-footer-cta h2 span{
  display:block;
}

/* =========================
   CERCLE FLÈCHE
========================= */

.fln-footer-circle{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  width:clamp(56px,8vw,116px);
  height:clamp(56px,8vw,116px);
  border-radius:50%;
  background:var(--fln-footer-accent);
  transition:transform .35s ease, background .35s ease;
}

.fln-footer-cta:hover .fln-footer-circle{
  transform:scale(1.07);
  background:#fff;
}

.fln-footer-circle svg{
  width:42%;
  height:42%;
}

.fln-footer-circle svg path{
  stroke:#fff;
  transition:stroke .3s ease;
}

.fln-footer-cta:hover .fln-footer-circle svg path{
  stroke:var(--fln-footer-accent);
}

/* =========================
   DIVIDER
========================= */

.fln-footer-divider{
  margin:0 0 clamp(20px,2.2vw,30px);
  border:0;
  border-top:1px solid var(--fln-footer-line);
}

/* =========================
   BOTTOM
========================= */

.fln-footer-bottom{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:24px 40px;
}

/* =========================
   BRAND
========================= */

.fln-footer-brand{
  flex:1 1 520px;
}

.fln-footer-name{
  margin:0 0 11px;
  color:var(--fln-footer-accent);
  font-size:13px;
  font-weight:700;
  line-height:1.4;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.fln-footer-tagline{
  max-width:30ch;
  margin:0;
  color:#fff;
  font-size:clamp(20px,2.4vw,30px);
  font-weight:700;
  line-height:1.12;
  letter-spacing:-.01em;
}

.fln-footer-zone{
  display:block;
  max-width:55ch;
  margin:12px 0 0;
  color:var(--fln-footer-muted);
  font-size:13px;
  line-height:1.65;
}

/* =========================
   RIGHT
========================= */

.fln-footer-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:18px;
  margin-left:auto;
}

/* =========================
   NAVIGATION
========================= */

.fln-footer-links{
  display:flex;
  justify-content:flex-end;
  flex-wrap:wrap;
  gap:10px clamp(14px,1.7vw,26px);
  max-width:760px;
}

.fln-footer .fln-footer-links a{
  position:relative;
  color:#fff !important;
  font-size:12px;
  font-weight:700;
  line-height:1.4;
  letter-spacing:.08em;
  text-decoration:none !important;
  text-transform:uppercase;
  transition:color .25s ease;
}

.fln-footer .fln-footer-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:100%;
  height:1px;
  background:var(--fln-footer-accent);
  transform:scaleX(0);
  transform-origin:right;
  transition:transform .3s ease;
}

.fln-footer .fln-footer-links a:hover{
  color:var(--fln-footer-accent) !important;
}

.fln-footer .fln-footer-links a:hover::after{
  transform:scaleX(1);
  transform-origin:left;
}

/* =========================
   CONTACT / DEVIS BUTTON
========================= */

.fln-footer-contact-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 24px;
  border:1px solid var(--fln-footer-accent);
  border-radius:0;
  background:var(--fln-footer-accent);
  color:#fff !important;
  font-size:12px;
  font-weight:700;
  line-height:1;
  letter-spacing:.1em;
  text-decoration:none !important;
  text-transform:uppercase;
  transition:background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

.fln-footer-contact-btn:hover{
  border-color:#fff;
  background:#fff;
  color:var(--fln-footer-accent) !important;
  transform:translateY(-2px);
}

/* =========================
   COPYRIGHT
========================= */

.fln-footer-copyright{
  width:100%;
  margin:0;
  padding-top:6px;
  color:var(--fln-footer-muted);
  font-size:12px;
  line-height:1.6;
  letter-spacing:.03em;
  text-align:right;
}

.fln-footer .fln-footer-copyright a{
  color:#fff !important;
  text-decoration:none;
  transition:color .2s ease;
}

.fln-footer .fln-footer-copyright a:hover{
  color:var(--fln-footer-accent) !important;
}

/* =========================
   TABLET
========================= */

@media (max-width:1024px){
  .fln-footer-bottom{
    gap:32px;
  }

  .fln-footer .fln-footer-cta h2{
    font-size:clamp(36px,7vw,72px) !important;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width:640px){
  .fln-footer{
    padding:28px 20px 20px;
  }

  .fln-footer-cta{
    margin-bottom:18px;
  }

  .fln-footer .fln-footer-cta h2{
    font-size:32px !important;
    line-height:1;
  }

  .fln-footer-circle{
    display:none;
  }

  .fln-footer-divider{
    margin-bottom:20px;
  }

  .fln-footer-bottom{
    flex-direction:column;
    align-items:flex-start;
    gap:22px;
  }

  .fln-footer-brand{
    width:100%;
    flex:0 0 auto;
  }

  .fln-footer-name{
    margin-bottom:9px;
    font-size:11px;
  }

  .fln-footer-tagline{
    max-width:100%;
    font-size:21px;
  }

  .fln-footer-zone{
    max-width:100%;
    font-size:12px;
  }

  .fln-footer-right{
    width:100%;
    align-items:flex-start;
    margin-left:0;
  }

  .fln-footer-links{
    width:100%;
    justify-content:flex-start;
    gap:14px 22px;
  }

  .fln-footer .fln-footer-links a{
    font-size:11px;
  }

  .fln-footer-contact-btn{
    width:100%;
  }

  .fln-footer-copyright{
    padding-top:4px;
    font-size:11px;
    text-align:left;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width:360px){
  .fln-footer{
    padding-left:16px;
    padding-right:16px;
  }

  .fln-footer .fln-footer-cta h2{
    font-size:27px !important;
  }

  .fln-footer-links{
    gap:12px 18px;
  }
}
