* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Segoe';
    src: url(../fonts/seguiemj.ttf);
}

@font-face {
    font-family: "Sifonn";
    src: url(../fonts/SIFONN_PRO.otf);
}

body {
    background-color: #32353d;
}

.main-header {
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #26282D;
    padding: 0 0.4rem;
}

.main-logo img {
    width: auto;
    height: 8vh;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    margin-left: -100%;
    transition: all 0.2s linear;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100;
}

.main-nav.show {
    margin-left: 0;
}

.nav-links {
    background-color: #32353d;
    display: flex;
    flex-direction: column;
    width: 70%;
    height: 100%;
    align-items: center;
    justify-content: flex-start;
    font-family: "Segoe";
}

.link-item {
    margin-top: 2rem;
    color: #fcd031;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    font-family: "Segoe";
    font-size: 3vh;
}

.link-item::after {
    position: absolute;
    content: "";
    background-color: #fcd031;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 3px;
    transition: 0.3s ease all;
}

.link-item:hover::after {
    width: 100%;
}

.button-menu {
    z-index: 200;
    width: 40px;
    height: 40px;
    border: none;
    display: flex;
    background: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.button-menu span {
    width: 37px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #fcd031;
    border-radius: 3px;
    transform-origin: 4px 0px;
    transition: all 0.2s linear;
}

.button-menu.close span {
    opacity: 1;
    transform: rotate(45deg) translate(0px, 0px);
    background: #fcd031;
}

.button-menu.close span:nth-child(2) {
    transform: rotate(-45deg) translate(-8px, 5px);
}

.button-menu.close span:nth-child(3) {
    display: none;
}


/* -------------- footer --------- */

.pie {
    width: 100%;
    height: 13vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #26282D;
}

.caja {
    display: flex;
    flex-direction: row;
    margin: 0vh 2vw 0vh 2vw;
}

.caja img {
    height: 5vh;
    width: auto;
}

.copy {
    margin: 0vh 2vw 0vh 2vw;
    display: flex;
    justify-content: space-between;
}

.copy p {
    color: #fff;
    text-decoration: none;
    font-family: "Segoe";
    font-size: 10px;
}

.copy a {
    color: white;
    font-size: 1vh;
}

a:-webkit-any-link {
    cursor: pointer;
    text-decoration: none;
}


/* -----------------cokies------------------- */

.aviso-cookies {
    display: none;
    background: #fff;
    padding: 20px;
    width: calc(100% - 40px);
    max-width: 300px;
    line-height: 150%;
    border-radius: 10px;
    position: fixed;
    bottom: 20px;
    left: 10px;
    z-index: 100;
    padding-top: 60px;
    box-shadow: 0px 2px 20px 10px rgba(222, 222, 222, .25);
    text-align: center;
}

.aviso-cookies.activo {
    display: block;
}

.aviso-cookies .galleta {
    max-width: 100px;
    position: absolute;
    top: -50px;
    left: calc(50% - 50px);
}

.aviso-cookies .titulo,
.aviso-cookies .parrafo {
    margin-bottom: 15px;
}

.aviso-cookies .boton {
    width: 100%;
    background: #595959;
    border: none;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    padding: 15px 20px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease all;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
}

.aviso-cookies .boton:hover {
    background: #000;
}

.aviso-cookies .enlace {
    color: #4DBFFF;
    text-decoration: none;
    font-size: 14px;
}

.aviso-cookies .enlace:hover {
    text-decoration: underline;
}

.fondo-aviso-cookies {
    display: none;
    background: rgba(0, 0, 0, .20);
    position: fixed;
    z-index: 99;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

.fondo-aviso-cookies.activo {
    display: block;
}




/* -----------------cokies------------------- */

@media screen and (min-width: 768px) {
    .conterrores{
        width: 80%;
       margin: 0 0 0 0;
    }
    .button-menu {
        display: none;
    }
    .main-nav {
        position: static;
        margin-left: 0;
        flex-basis: 70%;
        height: 100%;
    }
    .nav-links {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
        background: #26272c;
    }
    .link-item {
        display: inline-block;
        margin-top: 0;
        margin-right: 2rem;
    }
    .caja img {
        height: 7vh;
        width: auto;
        padding: 5px;
    }
}

@media screen and (max-width: 740px) {
    .pie {
        width: 100%;
        height: 13vh;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background-color: #26282D;
    }
    .caja {
        display: flex;
        flex-direction: row;
        margin: 0vh 2vw 0vh 2vw;
    }
    .caja img {
        height: 5vh;
        width: auto;
        margin: 1vw;
    }
    .copy {
        margin: 0vh 2vw 0vh 2vw;
        display: flex;
        justify-content: space-between;
    }
    .copy p {
        color: #fff;
        text-decoration: none;
        font-family: "Segoe";
        font-size: 10px;
    }
    .copy a {
        color: white;
        font-size: 1vh;
    }
    a:-webkit-any-link {
        cursor: pointer;
        text-decoration: none;
    }
}