* {
    margin: 0;
    padding: 0;
    font-family: helvetica;
}
/*cuperpo*/

body {
    background: #7a89ad;
    font-family: "Josefin Sans", sans-serif;
}
/* contenedor del Logo*/

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}
/* Referente al logo*/

.bajo-menu {
    width: 100%;
    height: 100px;
}
.logo-cabecera {
    position: relative;
    margin-top: 10px;
    width: 50px;
    height: 50px;
    left: 200px;
}
.logo span {
    font-weight: 300;
}
/* Cabecera*/

header {
    background: #ffffff;
    color: #77A37A;
    padding-bottom: 10px;
    position: relative;
    max-width: 1300px;
    width: 100%;
}
header::after {
    content: '';
    clear: both;
    display: block;
}
/* Barra navegador */

.barra {
    background: #ffffff;
    padding: 30px;
}
.site-nav {
    top: 1px;
    position: absolute;
    left: 130px;
    background: #7a89ad;
    clip-path: circle(0px at top right);
    transition: clip-path ease-in-out 700ms;
    z-index: 1000;
}
.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 {
    color: #ffffff;
    font-size: 14px;
    font-family: "Josefin Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    display: block;
    padding: 0.5em 3em;
    /*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;
    top: 0px;
    height: 100px;
    width: 100%;
}
/* Icono del menu izquierdo*/

.menu-toggle {
    background: #7a89ad;
    padding: 1em;
    position: absolute;
    top: 0.5em;
    left: 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: 210px;
    overflow: hidden;
}
/* Formato escritorio****************************************************/

/************************************************************************/

@media (min-width: 700px) {
    .menu-toggle {
        display: none;
    }
    header {
        top: 15px;
        opacity: 1;
        width: 100%;
        left: 300px;
    }
    .site-nav {
        position: absolute;
        background: transparent;
        float: left;
        top: 20px;
        margin-left: 300px;
        clip-path: initial;
    }
    .site-nav li {
        display: inline-block;
        border: none;
    }
    .site-nav a {
        margin-left: 1em;
        color: #7B8BAF;
        font-size: 17px;
        font-family: "PT Sans", sans-serif;
        font-style: normal;
        display: block;
        padding: 1em 3em;
        /*text-transform: uppercase;*/
        text-decoration: none;
        text-align: center;
    }
    .site-nav--icon::before {
        display: none;
    }
    .site-nav a:hover .site-nav a:focus {
        background: transparent;
    }
    .imag-fondo {
        position: relative;
        left: 300px;
        top: 0px;
        max-width: 1300px;
        width: 100%;
        height: 400px;
    }
    .logo-cabecera {
        position: relative;
        margin-top: 15px;
        width: 150px;
        height: 150px;
        left: 50px;
    }
    .contenido {
        position: relative;
        top: 0px;
    }
    .nologo {
        transition: all 0.5s;
    }
    .logo-pie {
        position: relative;
        width: 100px;
        float: left;
        margin-left: 430px;
        top: 10px;
    }
}