/********** Template CSS **********/
:root {
    --primary: #93B336;
    --primary-dark: #5F8F00;
    --light: #F3F6F8;
    --dark: #2C3E50;
    --slate: #566573;
    --orange: #E69500;
    --orange-dark: #B87700;
}

/*** LECOBAT — en-tête et bandeaux clairs (validé : pas de fond sombre sur la page) ***/
.navbar:not(.sticky-top) .navbar-nav .nav-link,
.navbar:not(.sticky-top) .navbar-brand h1 {
    color: var(--dark) !important;
}

/* Fond de page : blanc pur sur les deux bords (pas de gris hérité de Bootstrap) */
body {
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* Fond "pleine largeur" : le bloc casse la contrainte de largeur du container
   Bootstrap parent pour que son fond colore toute la largeur de l'ecran,
   d'un bord a l'autre, quelle que soit la taille de l'ecran. */
.full-bleed {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Fond gris clair : s'applique a TOUTE section portant la classe .hero-light,
   pour obtenir l'alternance blanc / gris clair d'une section a l'autre.
   Specificite ".container-xxl.hero-light" (2 classes) volontaire : plus haute
   que la regle ".hero-header{background:url(...)}" plus bas dans ce fichier,
   pour etre sure de l'emporter quel que soit l'ordre des regles. */
.container-xxl.hero-light {
    background: #e9ebe7;
}

/* Bouton "Espace client" : fond orange fonce, texte gras, orange plus vif au survol */
.btn-espace-client {
    background: var(--orange-dark);
    color: #FFFFFF;
    border: none;
    font-weight: 700;
}

.btn-espace-client:hover,
.btn-espace-client:focus {
    background: var(--orange);
    color: #FFFFFF;
}

/* Bouton CTA principal ("Decouvrir nos tarifs") : fond bleu marine sombre,
   texte gras, s'assombrit encore au survol. */
.btn-cta-dark {
    background: var(--dark);
    border: 2px solid var(--dark);
    color: #FFFFFF;
    font-weight: 700;
}

.btn-cta-dark:hover,
.btn-cta-dark:focus {
    background: #1B2833;
    border-color: #1B2833;
    color: #FFFFFF;
}

/* Pied de page : degrade sombre + motif "vagues" de la meme famille de
   couleur, texte tres clair pour un bon contraste, pleine largeur.

   IMPORTANT : le fond est pose sur .footer-modern lui-meme (le bloc
   .full-bleed, garanti 100vw d'un bord a l'autre de l'ecran) et NON sur
   #footer/.footer a l'interieur. Le fichier reel inclus (Tarifs/footer.php)
   m'est inconnu : s'il contient son propre <div class="container"> autour
   du contenu, poser le fond sur #footer/.footer aurait pu limiter le
   degrade a la largeur de ce container au lieu des deux extremites de la
   page. En posant le fond sur le parent .full-bleed - dont la largeur
   100vw ne depend d'aucun balisage interne - le degrade et les vagues
   couvrent TOUJOURS toute la largeur de l'ecran, quelle que soit la
   structure reelle de footer.php. #footer/.footer sont rendus transparents
   pour laisser apparaitre ce fond. */
.footer-modern {
    background-color: #1E2A38 !important;
    /* Ordre important : la 1ere valeur est le calque du DESSUS. Le SVG
       (transparent entre les vagues) doit donc passer avant le degrade
       opaque, sinon le degrade le recouvre entierement. */
    background-image: url('../img/footer-pattern.svg'), linear-gradient(135deg, #1E2A38 0%, #2C3E50 100%) !important;
    background-repeat: no-repeat, no-repeat !important;
    background-position: center, center !important;
    background-size: 100% 100%, cover !important;
}

.footer-modern #footer,
.footer-modern .footer {
    background: transparent !important;
}

.footer-modern #footer,
.footer-modern .footer,
.footer-modern #footer *,
.footer-modern .footer * {
    color: #F2F5F7 !important;
}

.footer-modern #footer a,
.footer-modern .footer a {
    color: #F2F5F7 !important;
    opacity: .9;
}

.footer-modern #footer a:hover,
.footer-modern .footer a:hover {
    color: var(--primary) !important;
    opacity: 1;
}

/*** Pied de page — restyle "Cartes sur dégradé" (23/08/2026, suite)
     Réorganise le contenu réel (SARL BET LECOBAT / plan du site / contact)
     en 3 cartes lisibles sur le fond dégradé + motif "vagues" déjà en place
     ci-dessus (.footer-modern), avec un bandeau d'appel au-dessus. La
     couleur du texte et le survol des liens restent pilotés par les règles
     génériques ".footer-modern #footer *" ci-dessus ; seules les pastilles
     (.ftr-pill) ont besoin d'un survol dédié (texte blanc sur fond vert au
     lieu de texte vert sur fond vert, cf. règle .ftr-pill:hover plus bas). ***/
section#footer {
    padding: 0 0 26px;
}

.ftr-cta-wrap {
    background: rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 22px 0;
    margin-bottom: 8px;
}

.ftr-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
}

.ftr-cta-row h3 {
    margin: 0 0 4px;
    font-size: 1.2rem;
}

.ftr-cta-row p {
    margin: 0;
    opacity: .78;
    font-size: .92rem;
}

.ftr-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ftr-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .92rem;
    transition: .2s;
}

.ftr-pill i {
    color: var(--primary);
}

.footer-modern .ftr-pill:hover,
.footer-modern .ftr-pill:hover i {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF !important;
}

.ftr-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
    padding: 30px 0 26px;
}

.ftr-card h4 {
    font-size: 1rem;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ftr-ic {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(147, 179, 54, .18);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
}

.ftr-card p {
    opacity: .8;
    font-size: .92rem;
    line-height: 1.7;
    margin: 0 0 18px;
}

.ftr-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ftr-card ul li {
    margin-bottom: 10px;
}

.ftr-address {
    opacity: .82;
    font-size: .92rem;
    line-height: 1.6;
}

.ftr-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.ftr-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 8px 12px;
    font-size: .78rem;
}

.ftr-badge i {
    color: var(--primary);
}

.ftr-seal {
    text-align: center;
    padding: 6px 0 18px;
}

.ftr-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
    opacity: .82;
}

@media (max-width: 900px) {
    .ftr-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}

/*** Illustration héro : image dans un cercle + thermomètre ***/
.hero-illustration {
    position: relative;
    display: inline-block;
}

.hero-illustration-circle {
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: #EAF3DC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    padding:20px;
    text-align:center ! important;
}

.hero-illustration-circle img {
    width: 76%;
    height: auto;
}

.hero-thermo {
    position: absolute;
    left: 56px;
    bottom: 111px;
    width: 30px;
    height: auto;
}

@media (max-width: 575.98px) {
    .hero-illustration-circle {
        width: 280px;
        height: 280px;
    }
    .hero-thermo {
        left: 36px;
        bottom: 74px;
        width: 20px;
    }
}

/*** Bannière promo (dynamique, PHP) ***/
.promo-banner {
    display: inline-block;
    max-width: 720px;
    background: #EAF3DC;
    border: 1px dashed var(--primary);
    border-radius: 50px;
    padding: 14px 30px;
}

.promo-banner p {
    margin: 0;
    color: var(--dark);
    font-weight: 500;
}

.promo-banner .amount {
    color: var(--orange);
    font-weight: 800;
    font-size: 1.1em;
}

.promo-banner a {
    color: var(--primary-dark);
    font-weight: 700;
    text-decoration: underline;
}

/*** FAQ (accordéon Bootstrap, réutilisé pour les questions fréquentes RE2020) ***
     Restyle "cartes" demandé par l'utilisateur le 23/08/2026 (suite) : remplace
     les lignes séparées par un simple trait gris (design d'origine) par des
     cartes arrondies individuelles, cohérentes avec le langage visuel déjà
     validé ailleurs sur le site (info-item / arg-card de tarifs.php) — carte
     blanche, bordure fine, question active mise en valeur (fond teinté + carte
     surélevée), bouton +/- transformé en pastille ronde animée. Classe
     partagée : ce fichier est chargé par index.php ET tarifs.php, donc les 2
     FAQ du site en bénéficient automatiquement sans dupliquer la règle. */
.lecobat-faq .accordion-item {
    border: 1px solid #ECEFEA;
    border-radius: 16px;
    margin-bottom: 14px;
    background: #FFFFFF;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s, transform .25s;
}

.lecobat-faq .accordion-item:last-child {
    margin-bottom: 0;
}

.lecobat-faq .accordion-item:hover {
    border-color: #D8DED2;
}

/* Carte surélevée quand sa question est ouverte (navigateurs supportant :has(),
   large majorité en 2026 ; sans :has(), le bouton change quand meme de couleur
   et de fond via la regle .accordion-button:not(.collapsed) ci-dessous, donc
   l'etat ouvert reste toujours visible meme en repli gracieux). */
.lecobat-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: transparent;
    box-shadow: 0 12px 28px rgba(44, 62, 80, .09);
}

.lecobat-faq .accordion-button {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: .98rem;
    color: var(--dark);
    background: none;
    box-shadow: none;
    padding: 20px 60px 20px 22px;
    position: relative;
}

.lecobat-faq .accordion-button:not(.collapsed) {
    color: var(--primary-dark);
    background: rgba(147, 179, 54, .06);
    box-shadow: none;
}

.lecobat-faq .accordion-button::after {
    content: "+";
    background: rgba(147, 179, 54, .12);
    color: var(--primary-dark);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform .3s, background-color .3s, color .3s;
}

.lecobat-faq .accordion-button:not(.collapsed)::after {
    content: "+";
    background: var(--primary-dark);
    color: #FFFFFF;
    transform: translateY(-50%) rotate(135deg);
}

.lecobat-faq .accordion-body {
    padding: 0 22px 22px;
    color: var(--slate);
    font-size: .9rem;
    line-height: 1.65;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/* Bug corrige : .btn-lg-square (plus bas dans la feuille de style) mettait
   "display:flex" sur ce meme bouton avec la meme specificite CSS, ce qui
   l'affichait en permanence (rond vert flottant en bas a droite) au lieu
   de rester cache tant qu'on n'a pas scrolle. Regle plus specifique pour
   garantir qu'il reste cache par defaut. */
.back-to-top.btn-lg-square {
    display: none;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    position: relative;
    margin-left: 16px;
    padding: 35px 0;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    outline: none;
    transition: .5s;
}

.navbar .nav-item.dropdown > .nav-link.dropdown-toggle {
    white-space: nowrap;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #FFFFFF;
}

.sticky-top.navbar .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.sticky-top.navbar .navbar-nav .nav-link:hover,
.sticky-top.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar .navbar-brand img {
    max-height: 45px;
}

/* ===== Menu mobile moderne (panneau coulissant plein ecran) ===== */
@media (max-width: 1199.98px) {
    /* Icone hamburger animee (se transforme en croix a l'ouverture) */
    .navbar-toggler {
        border: none;
        padding: 6px;
        z-index: 1051;
        position: relative;
    }

    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }

    .navbar-toggler-icon-custom {
        display: inline-flex;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 18px;
    }

    .navbar-toggler-icon-custom span {
        display: block;
        height: 2px;
        width: 100%;
        background: var(--dark);
        border-radius: 2px;
        transform-origin: center;
        transition: transform .3s ease, opacity .3s ease;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Fond assombri derriere le panneau, affiche via la classe portee sur
       <body> par le petit script en bas de page (evenements Bootstrap) */
    body.mobile-nav-open {
        overflow: hidden;
    }

    body.mobile-nav-open::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 32, .55);
        z-index: 1049;
        animation: lecobat-fade-in .3s ease;
    }

    @keyframes lecobat-fade-in {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    /* Panneau du menu : coulisse depuis la droite, plein ecran en hauteur */
    .sticky-top.navbar {
        position: relative;
        background: #FFFFFF;
    }

    .navbar .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: 82%;
        max-width: 360px;
        height: 100vh;
        margin-top: 0;
        padding: 110px 32px 40px;
        background: #FFFFFF;
        border-top: none;
        box-shadow: -12px 0 40px rgba(15, 23, 32, .18);
        transform: translateX(100%);
        transition: transform .35s ease;
        z-index: 1050;
        overflow-y: auto;
    }

    .navbar .navbar-collapse.show {
        transform: translateX(0);
    }

    .navbar-nav {
        width: 100%;
    }

    .navbar .navbar-nav .nav-link,
    .sticky-top.navbar .navbar-nav .nav-link {
        padding: 16px 0;
        margin-left: 0;
        font-size: 18px;
        border-bottom: 1px solid #EDEFF1;
        color: var(--dark);
    }

    .navbar .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: var(--primary);
    }

    .navbar .navbar-nav .dropdown-menu {
        position: static;
        border: none;
        box-shadow: none;
        padding: 0 0 8px 16px;
        background: none;
    }

    .navbar .navbar-collapse .btn-espace-client {
        display: block;
        width: 100%;
        margin: 24px 0 0 !important;
        text-align: center;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .navbar .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .2);
        z-index: 999;
    }
    
    .sticky-top.navbar {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 4px;
        bottom: 8px;
        left: 0;
        background: var(--primary);
        opacity: 0;
        transition: .5s;
    }

    .sticky-top.navbar .navbar-nav .nav-link::before {
        background: var(--primary);
    }

    .navbar .navbar-nav .nav-link:hover::before,
    .navbar .navbar-nav .nav-link.active::before {
        bottom: -2px;
        left: 0;
        opacity: 1;
    }

    .navbar .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 12rem 0 9rem 0;
    background: url(../img/shape-bottom.png) center bottom no-repeat;
}

.page-header {
    margin-bottom: 6rem;
    padding: 12rem 0 6rem 0;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }

    .page-header {
        padding: 6rem 0;
    }
}

/* Corrige (23/08/2026) : ce separateur "/" du fil d'Ariane etait en blanc
   translucide (rgba(256,256,255,.5) - hérité du template BizConsult
   d'origine, prévu pour un .page-header avec photo sombre en fond). Sur
   Lecobat, .page-header est toujours combiné à .hero-light (fond gris
   TRES clair, jamais de photo sombre) : un séparateur blanc translucide y
   est quasi invisible ("grisé"/délavé). Repasse en teinte sombre
   translucide, cohérente avec le texte du fil d'Ariane (.text-dark) posé
   juste à côté. S'applique à toute future page utilisant .page-header
   (tarifs.php et les suivantes), pas seulement à celle-ci. */
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(44, 62, 80, .35);
}

.page-header .breadcrumb-item a {
    color: rgba(44, 62, 80, .65);
    text-decoration: none;
    transition: color .3s;
}

.page-header .breadcrumb-item a:hover {
    color: var(--primary-dark);
}

.page-header .breadcrumb-item.active {
    color: var(--dark);
    font-weight: 600;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    box-shadow: none;
    border-color: var(--primary);
}

.service-item .service-icon,
.service-item .service-btn {
    margin: -1px 0 0 -1px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 5px 0;
    transition: .5s;
}

.service-item .service-btn {
    margin: -1px -1px 0 0;
    border-radius: 0 5px;
    opacity: 0;
}

.service-item:hover .service-btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transform: scale(.85);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: none;
    border-color: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-item img {
    width: 50px;
    height: 50px;
}

.testimonial-carousel .owl-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 30px;
    text-align: center;
    transition: .5s;
    z-index: 1;
}

.team-item::before,
.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 40%;
    top: 0;
    left: 0;
    border-radius: 5px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: -1;
}

.team-item::after {
    top: auto;
    bottom: 0;
}

.team-item:hover::before,
.team-item:hover::after {
    background: var(--primary);
}

.team-item h5,
.team-item p {
    transition: .5s;
}

.team-item:hover h5,
.team-item:hover p {
    color: #FFFFFF;
}

.team-item img {
    padding: 15px;
    border: 1px solid var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}