body {
    flex-direction: column !important;
}

.titleline {
    padding: 0 100px;
    margin: 50px 0 10px 0;
    font-size: 3.5em;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

.header {
    position: sticky;
    top: 0;;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 100px;
    z-index: 9;
    backdrop-filter: blur(20px);
}

.header .menu {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
}

.header .logo {
    cursor: pointer;
    font-weight: 600;
}

.header .menu .menu-item {
    margin-left: 15px;
    cursor: pointer;
    color: #a0a0a0;
    text-align: center;
    transition: .3s;
}

.header .menu .menu-item::after {
    width: 0;
    content: "";
    position: relative;
    border-bottom: 1px solid #a0a0a0;
    display: block;
    transition: .3s;
}

.header .menu .menu-item:first-child {
    margin-left: 0;
}

.header .menu .menu-item:hover {
    user-select: none;
}

.header .menu .menu-item:hover::after {
    width: 100%;
}

.header .menu .menu-item.active {
    user-select: none;
    transform: translateY(-2px);
}

.header .menu .menu-item.active::after {
    width: 100%;
}

.searchbar form {
    margin: 0;
    display: flex;
}

.searchbar form input {
    background: rgba(255, 255, 255, .05);
    border: none;
    outline: none;
    color: #fff;
    padding: 8px;
    margin-left: 40px;
    border-radius: 3px 0 0 3px;
}

.search-sm {
    color: #a0a0a0;
    margin-left: 20px;
    cursor: pointer;
}

.searchbar form .icon {
    position: relative;
    padding: 0 10px;
    background: rgba(255, 255, 255, .1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #a0a0a0;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    transition: .3s;

}

.searchbar form .icon:hover {
    background: rgba(255, 255, 255, .12);
}