:root{
    --color_one: rgba(50,50,50,1);
}

@font-face {
    font-family: 'PFA Regular';
    src: url(../fonts/PFAdamantSansPro-Regular.ttf);
}
body{
    margin: 0;
}

.header{
    margin: 0;
    padding: 0;
    height: 6rem;
    display: flex;
    align-items: center;
    position: sticky;
    z-index: 10;
    top: 0;
    background: white;
}
.header_container{
   /* width: 100%;*/
    width: 94%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 0 2.5rem 0 2.5rem;*/
    padding: 0 1.5rem 0 1.5rem;
    /*max-width: 1360px;*/
    max-width: 1310px;
    margin: auto;
}

.header_container--en,
.header_container--bars,
.header_container--logo{
    cursor: pointer;
}

.header_container--logo{
    width: 12rem;
    height: 8rem;
    position: relative;
    overflow: hidden;
}

.header_container--logo img{
    position: absolute;
    right: -28rem;
    top: -2rem;
    cursor: auto;
    z-index: -1;    
}

.header_container p{
    font-family: 'PFA Regular';
    font-size: 14px;
    color: var(--color_one);
    margin-top: 0;
    margin-bottom: 0;
}

/*=========================== MENU ====================*/
.body{
    /*height: 100vh;*/
    /*background: rgba(0,0,0,.2);*/
    overflow: hidden;
}

.header_menu{
    /*width: 30%;*/
    width: 27rem;
    height: 100vh;
    margin: 0;
    padding: 4rem 0 0 0;
    /*margin-top: 50rem;*/
    position: fixed;
    top: 0;
    right: -120%;
    background-color: white;
    display: block;
    z-index: 100;
    transition: .5s;
}

.header_menu--visible{
    right: 0%;
    transition: .8s;
}

.header_menu--cruz{
    position: absolute;
    right: 3rem;
    top: 2.8rem;
    cursor: pointer;
}

.header_menu--item{
    margin: 0 0 0 4rem;
    padding: 1.8rem;
    list-style: none;
}

.header_menu--item a{
    text-decoration: none;
    font-family: 'PFA Regular';
    font-size: 16px;
    color: var(--color_one);
    letter-spacing: 3px;
    position: relative;
}

.header_menu--item a::after{
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: black;
    bottom: -9px;
    left: 0;
    transition: .3s;
}

.header_menu--item a:hover::after{
    width: 100%;
    transition: .3s;
}

.header_menu--item i{
    font-size: 22px;
    cursor: pointer;
    color: var(--color_one);
}


@media (max-width: 490px){
    .header_container {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem 0 1rem;
    }
}

/*=========================== FIN MENU ====================*/