:root {
    /*header*/
    --text-header:#000000;
    --background-header:#ffffff;
    --background-folding:#ffffff;
    --button-header:#000;
    --listed-header:#000;
    --links-header:#000;
    --width-logo-header:auto;

    /*content*/
    --color-primario: #000000;  
    --color-secundario: #ffffff;
    --background-primario:#ffffff;
    --background-secundario:#f5f5f5;
    --text-content:#000000;
    --button-content:#000000;
    --listed-content:#000000;
    --links_constent:#000000;

    /*Footer*/
    --text-footer:#000000;
    --background-footer:#333;
    --button-footer:#000000;
    --listed-footer:#000000;
    --links-footer:#000000;
    --width-logo-footer:auto;
  }
header h1,h2,h3,h4,h5,h6{
    color: var(--text-header);
}
.cbp-af-header.header-transparent.cbp-af-header-shrink {
    background-color: var(--background-folding);
    box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.08);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    border-bottom: none;
}
header .cbp-af-header.header-transparent {
    background-color: var(--background-header);
}

header a{
    color:var(--text-header);
}
.navbar-expand-lg .navbar-collapse {
    color:var(--listed-header);
}
header .navbar-light .navbar-nav .nav-link{
    color: var(--links-header);
}
header .navbar-light .navbar-toggler{
    color:var( --button-header);
}
.navbar-brand img{
    width:var(--width-logo-header);
}

body {
    color:  var(--color-primario);
    background-color:  var(--background-primario);

}
body h1,h2,h3,h4,h5,h6{
    color:  var(--color-primario);
}
body p {
    color:  var( --text-content);
}
.btn.btn-brand{
    color: var( --button-content);
}
#footer{
    background-color: var(--background-footer);
}
#footer p{
    color: var(--text-footer);
}
#footer a {
    color: var(--links-footer);
}
#footer .svgimage {
    width: var(--width-logo-footer);
}