@font-face {
    font-family: 'Maven Pro';
    font-style: normal;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/mavenpro/v32/7Au9p_AqnyWWAxW2Wk3GwmQIAFg.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

.header__inner a.icon {
    display: none;
}

.header {
    background-color: #585858;
    opacity: 0.9;
    /* height: 100%; */
    -webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    -moz-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}

.header__a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 17px;
    display: block;
    position: relative;
    padding-bottom: 7px;
    opacity: 2.0;
    font-weight: 500;
}

.header__a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2.5px;
    left: 50%;
    position: absolute;
    background: #fff;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

.header__a:hover:after {
    width: 100%;
    left: 0;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__right {
    display: flex;
    align-items: center;
}

.header__button {

    color: black;
    padding: 10px 20px;
    margin: 10px;
    border: none;
    background-color: transparent;
    font-family: 'Maven Pro';

    margin: 0;
}

.vl {
    height: 35px;
    width: 1.1px;
    padding: 0;
    margin: 0;
    background-color: #FFF;
    display: inline-block;
}



@media (min-width: 150px) and (max-width: 1052px) {

    
    .header__inner {
        display: inline;
        overflow: hidden;
        position: relative;
    }

    .header__right {
        display: none;
    }

    .header__left{
        display: flex;
        align-items: center;
    }

    .header__button:nth-child(1){
        margin-top: 25px;
    }

    .vl {
        background-color: #585858;
        display: block;
        height: 0px;
    }

    .header__inner a.icon {
        font-size: 28px;
        font-weight: 200;
        padding: 14px 16px;
        border-radius: 6px;
        display: block;
        position: absolute;
        right: 0;
        top: 0;
    }



    .header__inner a{
        color: white;
        padding-left: 0;
        text-decoration: none;
        font-size: 17px;
        display: block;
      }
      

    /* .header__inner a:hover{
        background-color: #FFFFFF;
    } */

    .header__button{
        width: 100%;
        text-align: left;
        padding-left: 0;
    }


    


}