:root {
    --colorprimary: RGBA(162, 128, 37, 1);
    --colorprimarytransparent: RGBA(130, 46, 22, 0.70);
    --colorsecundary: RGBA(0, 0, 0, 0.9);
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

body {
    margin-left: 65px;
    margin-top: 100px;
    transition: margin-left 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

h1 {
    text-align: center;
    text-transform: uppercase;
    padding: 20px;
    font-size: 2em;
}


/*Scroll Bar*/

::-webkit-scrollbar {
    width: 14px;
    height: 14px;
    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    background-color: #555;
    background-clip: padding-box;
    border: solid transparent;
    border-radius: 50px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--colorprimary);
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:active {
    background: #000;
    background-clip: padding-box;
}

::-webkit-scrollbar-track {
    background-clip: padding-box;
    border-width: 1px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#c7c7c7+0,c7c7c7+10,c7c7c7+90,c7c7c7+100&0+0,1+10,1+90,0+100 */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to top, rgba(199, 199, 199, 0) 0%, rgba(199, 199, 199, 1) 10%, rgba(199, 199, 199, 1) 90%, rgba(199, 199, 199, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00c7c7c7', endColorstr='#00c7c7c7', GradientType=1);
    /* IE6-9 */
}

::-webkit-scrollbar-corner {
    background-color: transparent;
    border-radius: 50px;
}


/* Buttons */

::-webkit-scrollbar-button:single-button {
    display: block;
    border-style: solid;
    height: 0.7em;
    width: 1em;
}


/* Up */

::-webkit-scrollbar-button:single-button:vertical:decrement {
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent #000 transparent;
}

::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
    border-color: transparent transparent #777777 transparent;
}


/* Down */

::-webkit-scrollbar-button:single-button:vertical:increment {
    border-width: 8px 8px 0 8px;
    border-color: #000 transparent transparent transparent;
}

::-webkit-scrollbar-button:single-button:vertical:increment:hover {
    border-color: #777 transparent transparent transparent;
}


/* Left */

::-webkit-scrollbar-button:single-button:horizontal:decrement {
    border-width: 8px 8px 8px 0;
    border-color: transparent #000 transparent transparent;
}

::-webkit-scrollbar-button:single-button:horizontal:decrement:hover {
    border-color: transparent #777777 transparent transparent;
}


/* Right */

::-webkit-scrollbar-button:single-button:horizontal:increment {
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent #000;
}

::-webkit-scrollbar-button:single-button:horizontal:increment:hover {
    border-color: transparent transparent transparent #777;
}


/*-----------------*/

header {
    width: 100%;
    height: 120px;
    background: var(--colorprimary);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 9;
}

.icon__menu {
    width: 50px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(10px);
    z-index: 2;
    cursor: pointer;
    font-size: 2.5em;
    padding-right: 20px;
    transition: all 0.8s ease;
    color: #fff;
    text-shadow: 2px 2px 2px #000;
}

.icon__menu::before {
    content: '\eb5f'; /* bx bx-menu */
    font-family: 'boxicons' !important;
    font-weight: normal;
}

.icon__menu.btncerrar::before {
    content: '\ec8d'; /* bx bx-x */
    font-family: 'boxicons' !important;
    font-weight: normal;
}

.menu__side {
    width: 65px;
    height: 100%;
    background: var(--colorsecundary);
    position: fixed;
    top: 0;
    left: 0;
    color: white;
    font-size: 18px;
    z-index: 300;
    overflow: hidden;
    overflow-y: scroll;
    transition: all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}


/*Ocultar scroll para chrome, safari y opera*/

.menu__side::-webkit-scrollbar {
    display: none;
}


/*Ocultar scroll para IE, Edge y Firefox*/

.menu__side {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tituloMenu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    text-transform: uppercase;
}

.name__page {
    display: flex;
    align-items: center;
    padding: 10px 10px;
}

.name__page img {
    height: 100px;
}

.options__menu {
    padding: 10px 20px;
    position: absolute;
    top: 100px;
}

.options__menu a {
    color: #ffffffb2;
    cursor: default;
    display: block;
    position: relative;
    transition: all 0.2s ease;
}

.options__menu a::before {
    content: '';
    transition: all 0.2s ease;
}

.options__menu a:hover {
    color: white;
}

.options__menu .option {
    padding: 20px 0;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: 1.5em;
}

.options__menu .option .icono {
    width: 30px;
    padding-right: 20px;
    font-size: 1.2em;
    font-family: 'boxicons' !important;
}

.options__menu .option h4 {
    font-weight: 300;
}

.options__menu a.selected {
    color: #fff;
}

.options__menu .selected:before {
    content: '';
    width: 3px;
    height: 80%;
    background: white;
    position: absolute;
    top: 10%;
    left: -20px;
}

.options__menu a:hover::before {
    content: '';
    width: 3px;
    height: 80%;
    background: var(--colorprimary);
    position: absolute;
    border-radius: 50px;
    top: 10%;
    left: -20px;
}


/*Clases para usar en JavaScript*/

.body_move {
    margin-left: 250px;
}

.menu__side_move {
    width: 250px;
}

footer {
    background-color: #28292d;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
    align-items: center;
}

footer section {
    width: 280px;
    color: #fff;
}

footer section img {
    width: 150px;
}

footer .section1 {
    font-size: 0.6em;
    padding: 10px;
}

footer .section1 p {
    line-height: 15px;
    margin-top: 10px;
}

footer .section2 h1 {
    color: #fff;
    font-size: 1.5em;
    text-align: center;
}

footer .section2 ul {
    margin-top: 10px;
    list-style: none;
    padding: 0;
    margin-left: 10px;
}

footer .section2 ul li {
    border-bottom: 1px solid #8a8a8b;
}

footer .section2 ul li a {
    line-height: 35px;
    color: #fff;
}

footer .section2 ul li::before {
    font-family: 'boxicons' !important;
    font-weight: normal;
    content: '\eb54'; /* bx bxs-square */
    font-size: 8px;
    padding-right: 8px;
    color: var(--colorprimario);
    vertical-align: middle;
}

footer .section2 li ul {
    display: none;
}

footer .section3 h1 {
    color: #fff;
    font-size: 1.5em;
    text-align: center;
}

footer .section3 .contenido {
    margin-top: 20px;
}

footer .section3 div {
    margin-top: 10px;
}

footer .section3 p {
    line-height: 25px;
}

footer .section3 p b {
    color: #fff;
    font-size: 1.1em;
}

footer .section3 div p:nth-child(2) {
    margin-left: 15px;
    font-size: 1em;
}

footer .section4 {
    width: 100%;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 10px;
}

footer .section4 img {
    width: 45px;
    margin-top: 10px;
    transition: all 0.2s ease;
}

footer .section4 img:nth-child(1) {
    width: auto;
}

footer .section4 img:hover {
    transform: scale(1.2);
}

.redessociales {
    position: fixed;
    bottom: 70px;
    left: 20px;
    visibility: hidden;
    opacity: 0;
    z-index: 100;
    transition: all 0.8s ease;
}

.redessociales.activo {
    visibility: visible;
    bottom: 80px;
    opacity: 1;
}

.botonredessociales {
    position: fixed;
    width: 50px;
    height: 50px;
    background-color: var(--colorprimario);
    border-radius: 50%;
    bottom: 20px;
    left: 20px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px #000;
    cursor: pointer;
}

.botonredessociales::after {
    content: '\ea53'; /* bx bx-plus */
    font-family: 'boxicons' !important;
    font-weight: normal;
    font-size: 30px;
    color: #fff;
    transition: all 0.5s ease;
}

.botonredessociales.activo::after {
    transform: rotate(135deg);
}

.redessociales .listaredes {
    background-color: var(--colorprimario);
    font-weight: bold;
    width: 100%;
    border: 4px solid #fff;
    border-radius: 20px;
    box-shadow: 2px 2px 10px #000;
}

.redessociales .listaredes p {
    display: inline-block;
    margin-left: 10px;
}

.redessociales .listaredes ul li {
    display: flex;
    list-style: none;
    padding: 10px;
}

.redessociales .listaredes ul li:not(:last-child) {
    border-bottom: 2px solid var(--colorsegundario);
}

.redessociales .listaredes ul li a {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 760px) {
    .body_move {
        margin-left: 0px;
    }
    .menu__side_move {
        width: 250px;
        left: -250px;
    }
    .menu__side {
        width: 250px;
    }
    body {
        margin-left: 250px;
        margin-top: 80px;
        transition: margin-left 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    }
    footer section {
        margin-top: 20px;
    }
}