@font-face{
    font-family: fuentedescargada1;
    src: url("Montserrat-Regular.ttf");
}
@font-face{
    font-family: fuentedescargada2;
    src: url("Lora-Regular.ttf");
}
html{
    font-family: fuentedescargada1;
}
body{
    margin: 0px auto;
    padding: 0px auto;
    color: #e0e4cc;
    font-size: 1.2em;
    line-height: 1.6;
    overflow-x: hidden;
}
header{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    box-shadow: 5px 10px 80px green;
}
*:before, *:after{
    box-sizing: border-box;
}
label .menu{
    position: absolute;
    right: -100px;
    top: -100px;
    z-index: 100;
    width: 200px;
    height: 200px;
    background: #543a2b;
    border-radius: 50% 50% 50% 50%;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    box-shadow: 0 0 0 0 #ba8468, 0 0 0 0 #ba8468;
    cursor: pointer;
}
label .hamburger{
    position: absolute;
    top: 135px;
    left: 50px;
    width: 30px;
    height: 2px;
    background: white;
    display: block;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
label .hamburger:after, label .hamburger:before{
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: white;
}
label .hamburger:before{
    top: -10px;
}
label .hamburger:after{
    bottom: -10px;
}
label input{
    display: none;
}
label input:checked + .menu{
    box-shadow: 0 0 0 20vw #543a2b, 0 0 0 65vh #543a2b;
    border-radius: 0px 0px 0px 150px;
}
label input:checked + .menu .hamburger{
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); 
}
label input:checked + .menu .hamburger:after{
    -webkit-transform: rotate(90deg);
     transform: rotate(90deg);
    bottom: 0; 
}
label input:checked + .menu .hamburger:before{
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 0;
}
label input:checked + .menu + ul{
    opacity: 1;
}
label ul{
    z-index: 200;
    position: absolute;
    top: 30%;
    left: 85%;
    color: #543a2b;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: .25s 0s ease-in-out;
    transition: .25s 0s ease-in-out;
    list-style-type: none;
}
label a{
    margin-bottom: 1em;
    display: block;
    color: #f38630;
    text-decoration: none;  
}
label a:hover{
    color: white;
    border-bottom: 2px solid white;
}
#contenedor{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
#contenedor-superior-inferior{
    width: 94%;
    height: auto;
}
#contenedor-superior{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #ba8468;
    padding: 30px;
    column-gap: 150px;
    row-gap: 100px;
    border-radius: 60px 60px 0px 0px;
    box-shadow: 0px 20px 130px #ba8468;
}
#contenedor-inferior{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #ba8468;
    padding: 30px;
    column-gap: 150px;
    row-gap: 100px;
    border-radius: 0px 0px 60px 60px;
}
.logotipo-seta{
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #667f46;
    border-radius: 360px;
    background-color: white;
}
.logotipo-seta img{
    width: 180px;
    height: auto;  
}
.imagen-seta{
    border: 10px solid #8cdd26;
    border-radius: 360px;
    background-color: #fcd68b;
}
.separador{
    width: 100%;
    height: 30px;
}
footer{
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    font-size: 1.5em;
    border-radius: 60px 60px 0px 0px;
    position: relative;
    bottom: 0px;
}