header {
    background-color: #252525;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    color: #fff;
}
header .menu {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    padding-left: 125px;
}
header .menu h2 {
    margin-right: 20px;
}
header .menu a {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 15px;
    text-decoration: none;
    color: #c4c4c4;
}
header .menu a:hover {
    border-bottom: 1px solid #fff;
}
header .menu .logo:hover {
    border-bottom: 0;
}
header .menu-2 {
    display: flex;
    align-items: center;
    border: 1px solid #797979;
    border-radius: 10px;
    background-color: #272727;
    padding: 5px;
    min-width: 220px;
    position: relative;
    outline: none;
}
.menu-2 form {
    display: flex;
    align-items: center;
    width: 100%;
}
header .menu-2 button {
    background-color: #fff0;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.menu-2 button i {
    color: #fff;
}
.menu-2 input[type="text"] {
    flex-grow: 1;
    background-color: #272727;
    border: none;
    color: #fff;
    padding: 5px 10px;
    outline: none;
}
#menumobile {
    display: none;
}
header .menu-2 i {
    color: dimgray;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 4px;
    padding-top: 4px;
    cursor: pointer;
}
.hidden-h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


@media screen and (max-width: 1366px) {
    header .menu {
        padding-left: 0;
    }
}



@media screen and (max-width: 1100px){
    header {
        display: block;
    }
    header h2 {
        padding-bottom: 20px;
    }
    header .menu {
        display: none;
        line-height: 40px;
        padding-left: 0;
    }
    .menu-2 {
        width: 100%;
        justify-content: space-between;
    }
    .menu-2 form {
        flex-grow: 1;
    }
    header .menu-2 i {
        text-align: center;
        margin: 0 auto;
        justify-content: center;
        font-size: 1.4rem;
    }
    .menu-2 input[type="text"] {
        width: 100%;
    }
    .menu-2 button {
        margin-left: 10px;
    }
    #menumobile {
        display: block;
    }
    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #252525;
        position: absolute;
        top: 150px;
        left: 0;
        z-index: 1000;
        text-align: center;
        padding: 10px 0;
    }
    .menu a {
        display: block;
        padding: 10px;
        color: #fff;
        text-decoration: none;
        border-bottom: 1px solid #3a3a3a;
    }
    .menu a:last-child {
        border-bottom: none;
    }
    header .logo {
        padding: 10px;
        text-align: center;
        display: block;
    }
}

@media screen and (max-width: 420px){
    header .menu {
        margin: 0 auto;
    }
    header .menu .logo {
        font-size: 12px;
    }
}
@media screen and (max-width: 280px){
    .menu-2{
        margin: 0 auto;
        width: 40%;
    }
    header .menu-2 i {
        text-align: center;
        margin: 0 auto;
        justify-content: center;
        font-size: 1rem;
    }
}

