/*cuperpo*/

body {
    background: #ffffff;
    font-family: "Shadows Into Light Two", cursive;
    ;
}
/* contenedor del Logo*/

.container {
    width: 95%;
    max-width: 1300px;
    margin-left: 20px;
}
/* Referente al logo*/

.logo-cabecera {
    float: left;
    left: 20;
    font-size: 1rem;
    margin: 10px;
    width: 300px;
    height: 60px;
    text-transform: uppercase;
    font-weight: 700;
}
.logo span {
    font-weight: 300;
}
/* Cabecera*/

header {
    background: #FFFFFF;
    color: #5c5c5c;
    padding: auto;
    width: 100%;
    z-index: 900;
}
header::after {
    content: '';
    clear: both;
    display: block;
}
/* Barra navegador */

.barra {
    background: #FFFFFF;
    border-bottom: 1px solid #9B9CA1;
    padding: 10px;
}
.site-nav {
    top: 100%;
    right: 0;
    position: relative;
    margin-right: 50px;
    background: #ffffff;
    clip-path: circle(0px at top right);
    transition: clip-path ease-in-out 700ms;
}
.site-nav-open {
    clip-path: circle(150% at top right);
}
.site-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.site-nav li {
    border-bottom: 1px solid #575766;
}
.site-nav li:last-child {
    border-bottom: none;
}
.site-nav a {
    font-family: "Shadows Into Light Two", cursive;
    color: #5c5c5c;
    font-size: 23px;
    font-style: normal;
    font-weight: 100px;
    line-height: 35px;
    display: block;
    padding: 1em 4em;
    /*text-transform: uppercase;*/
    text-decoration: none;
    text-align: center;
}
.site-nav a:hover, .site-nav a:focus {
    /*background: #e4b363;
    color:#464655;*/
}
.site-nav--icon {
    display: inline-block;
    text-align: center;
    font-size: 1px;
    margin-right: 1em;
    width: 1.1em;
    color: white;
}
.fondo {
    width: 100%;
}
.imag-fondo {
    position: relative;
    margin: 50;
    width: 100%;
}
/* Icono del menu izquierdo*/

.menu-toggle {
    background: #e38409;
    padding: 1em;
    position: absolute;
    top: 2em;
    right: 0.5em;
}
.menu-open .hamburger {
    transform: rotate(45deg);
}
.menu-open .hamburger::before {
    opacity: 0;
}
.menu-open .hamburger::after {
    transform: translateY(-3px) rotate(-90deg);
}
.hamburger, .hamburger::before, .hamburger::after {
    content: '';
    display: block;
    background: #ffffff;
    height: 3px;
    width: 1.75em;
    border-radius: 3px;
}
.hamburger::before {
    transform: translateY(-6px);
}
.hamburger::after {
    transform: translateY(3px);
}
footer {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.site-pie {
    background: #ffffff;
}
.logo-pie {
    position: relative;
    width: 60px;
    margin-left: 500px;
    overflow: hidden;
}
/* Formato escritorio*/

@media (min-width: 700px) {
    .menu-toggle {
        display: none;
    }
    .site-nav {
        height: auto;
        position: relative;
        background: transparent;
        float: right;
        margin-top: 30px;
        margin-right: 20px;
        clip-path: initial;
    }
    .site-nav li {
        display: inline-block;
        border: none;
    }
    .site-nav a {
        padding: 0;
        margin-left: 3em;
    }
    .site-nav--icon::before {
        display: none;
    }
    .site-nav a:hover .site-nav a:focus {
        background: transparent;
    }
    .imag-fondo {
        position: relative;
        margin: 0;
        width: 100%;
        height: 500px;
    }
    .logo-pie {
        overflow: hidden;
        position: relative;
        width: 100px;
        right: 60px;
    }
}