﻿@charset "utf-8";

/* =========================================================
   FOOTER APPCDATA
========================================================= */

.appc-footer-container,
.appc-footer-bottom-container {
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.appc-footer {
    background: #1e293b;
    color: #fff;
}

/* =========================================================
   CONTAINER
========================================================= */

.appc-footer-container {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    padding: 70px 30px;

    display: grid;

    grid-template-columns:
        1fr 1fr 1fr;

    gap: 65px;
}


/* =========================================================
   COLONNE
========================================================= */

.appc-footer-column {
    min-width: 0;
}


/* =========================================================
   LABEL
========================================================= */

.appc-footer-label {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 14px;

    color: #ef783b;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.appc-footer-label::before {
    content: "";

    width: 27px;
    height: 2px;

    background: #ef783b;
}


/* =========================================================
   TITRES
========================================================= */

.appc-footer-column h3 {
    margin: 0 0 22px;

    color: #fff;

    font-size: 25px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -.5px;
}


/* =========================================================
   TELEPHONE
========================================================= */

.appc-footer-phone {
    display: inline-block;

    margin-bottom: 20px;

    text-decoration: underline;

    color: #fff;

    font-size: 21px;

    line-height: 1.2;

    font-weight: 700;

    transition: color .25s ease;
}


.appc-footer-phone:hover {
    color: #ef783b;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.appc-footer-description {
    max-width: 310px;

    margin: -5px 0 22px;

    color:
        rgba(255,255,255,.58);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   LIENS
========================================================= */

.appc-footer-links {
    display: flex;

    flex-direction: column;
}


.appc-footer-links a {
    display: flex;

    align-items: center;

    justify-content: space-between;

    max-width: 310px;

    padding: 12px 0;

    border-top:
        1px solid
        rgba(255,255,255,.10);

    color:
        rgba(255,255,255,.62);

    font-size: 14px;

    text-decoration: underline;

    transition:
        color .25s ease,
        padding-left .25s ease;
}


.appc-footer-links a:last-child {
    border-bottom:
        1px solid
        rgba(255,255,255,.10);
}


.appc-footer-links a span {
    color: #ef783b;

    font-size: 18px;

    transition:transform .25s ease;

  text-decoration: underline #fff;
}


.appc-footer-links a:hover {
    color: #fff;

    padding-left: 5px;
}


.appc-footer-links a:hover span {
    transform:
        translateX(4px);
}


/* =========================================================
   PARTENARIAT
========================================================= */

.appc-footer-partner {
    padding-left: 30px;

    border-left:
        1px solid
        rgba(255,255,255,.10);
}


/* =========================================================
   BOUTON
========================================================= */

.appc-footer-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    padding:
        13px 18px;

    background: #ef783b;

    color: #fff;

    font-size: 12px;

    font-weight: 800;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.appc-footer-button span {
    font-size: 16px;
}


.appc-footer-button:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(239,120,59,.20);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.appc-footer-bottom {
    border-top:
        1px solid
        rgba(255,255,255,.08);
}


.appc-footer-bottom-container {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    padding:20px 30px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color:
        rgba(255,255,255,.32);

    font-size: 10px;

    line-height: 1.5;
}

.appc-footer-bottom-container a {
      text-decoration: underline;

    color: rgba(255, 255, 255, .32);
  }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .appc-footer-container {
        grid-template-columns:
            1fr 1fr;

        gap: 50px;
    }


    .appc-footer-partner {
        grid-column: 1 / -1;

        padding-left: 0;

        padding-top: 35px;

        border-left: none;

        border-top:
            1px solid
            rgba(255,255,255,.10);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .appc-footer-container {
        grid-template-columns: 1fr;

        gap: 45px;

        padding:
            55px 20px;
    }


    .appc-footer-column h3 {
        font-size: 23px;
    }


    .appc-footer-phone {
        font-size: 21px;
    }


    .appc-footer-partner {
        grid-column: auto;

        padding-top: 40px;

        border-top:
            1px solid
            rgba(255,255,255,.10);
    }


    .appc-footer-button {
        width: 100%;
    }


    .appc-footer-bottom-container {
        flex-direction: column;

        padding:
            18px 20px;
    }

}