/*  STYLESHEET FOR: footer

Index:
+ VARIABLES
+ FOOTER
  - Background specification
  - Header specification
  - Underline style
  - Text specification
  - Link specification
  - Link menu specification
  - Map specification
  - Rights section
+ ANIMATIONS
*/

/* ######################## VARIABLES ######################## */
:root{
    --base-color1: #cdd751; 
    --base-color2: #929497;
    --base-color3: #1e56a2;
    --dark-text: #222222;
    --light-text: #f5f5f5;
    --light-bg: #eeeeee;
    --dark-bg: #0a1b2c;

    --font-base: 'Libre Franklin', sans-serif;
}

/* ######################## FOOTER ######################## */
/* Background specification */ 
.footer {
    background: #1f1f1f;
    height: auto;
    padding: 0.5rem 2rem 0 2rem;
}

/* Header specification */
.footer h4{
    margin-top: 1rem;
    color: #E0E1DD;
    animation: scroll 5s linear forwards;
}

/* Underline style */
.footer hr.highlight{
    border: 2px solid var(--base-color1);
    border-radius: 2px;
    page-break-after: auto;
    width:50%
}

/* Text specification */
.icon-info p{
    font-size: 13px;
    color: var(--light-bg);
    text-align: justify;
}

/* Link specification */ 
.footer .nav a{
    color: var(--light-bg);
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}
.footer .nav a:hover{
    color: var(--base-color1) !important;
    transition: all 0.5s ease-in-out;
}

/* Link menu specification */
.footer .nav .nav-link {
    color: #E0E1DD !important;
    text-decoration: none;
    padding: 5px 0;
    font-size: small;
    animation: appear 5s forwards;
    transition: all 0.5s ease-in-out;
}
.footer .nav .nav-link:hover{
    color: var(--base-color1) !important;
    transition: all 0.5s ease-in-out;
}

/* Map specification */
.footer iframe{
    border: 0px;
    width: 60%;
}

/* Logo partner */
#sappartner img{
    margin: 1.2rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    background-size: contain;
}

#sappartner .container-fluid{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 1rem;
}


/* Rights section */
.section-rights{
    padding: 0 0 0 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #fff;
    background-color: #0d0d0d;
    font-size: small;
}

/* ######################## ANIMATIONS ######################## */
@keyframes scroll {
    0% {
        transform: translateX(-20%); 
      }
      100% {
        left: 100px; 
      }
}

@keyframes appear {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
