* {
    -webkit-user-drag: none;
}

html
{
    /* Prevent element highlighting on click or touch*/
  -webkit-tap-highlight-color:transparent;
}

/* MAIN FAQ NAVBAR */
.main-navbar-faq {
    width: 100%;
    height: 60px;

    display: flex;
    align-items: center;

    padding: 5px;
    
    position: fixed;
    z-index: 10;

    color: var(--white-font-color);
    background-color: var(--main-navbar-background-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); 

    font-size: 18px;
}
.main-navbar-faq .logo-section img {
    width: 40px;
    height: 100%;

    filter: brightness(1.20);
}
.main-heading a.main-heading_link-item {
    color: var(--white-font-color);
    display: flex;
}

a.main-heading_link-item h1, a.main-heading_link-item h2 {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
}
a.main-heading_link-item h1 {
    margin-right: 5px;
}

/* BURGER MENU */
.burger-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    background-color: rgba(0, 0, 0, .7);
    width: 100%;

    display: none;
}
.burger-background-wrapper.active {
    display: block;
}

.burger-sidebar {
    position: absolute;
    top: 0;
    right: 0;

    width: 100%;
    max-width: 375px;
    background-color: #000;
    z-index: 30;

    display: none;
}
.burger-sidebar.active {
    display: block;
}

.sidebar-image {
    width: 100%;
    height: 270px;
}

.sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-content {
    padding: 0 20px;
}
.sidebar-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    text-transform: uppercase;
    color: var(--span-font-color);
    border-bottom: var(--border);

    font-family: 'Geologica', sans-serif;
}

.sidebar-item a {
    padding: 25px 0;
    color: var(--white-font-color);
    width: 100%;
}

.sidebar-item img.navbar-image {
    margin-right: 7px;
}

button.hamburger-button {
    width: 35px;
    height: 35px;
    border: none;
    outline: none;
    background-color: transparent;

    position: fixed;
    right: 10px;
    top: 10px;
    z-index: 1000;

    padding: 0 4px;

    cursor: pointer;
}

.hamburger {
    position: relative;
    height: 100%;
}

.hamburger-line {
    background-color: #fff;
    display: block;
    height: 3px;
    border-radius: 5px;
    width: 100%;
}

.hamburger-line:nth-child(1), .line:nth-child(1) {
    position: absolute;
    top: 6px;
}

.hamburger-line:nth-child(2), .line:nth-child(2) {
    position: absolute;
    top: 16px;
}

.hamburger-line:nth-child(3), .line:nth-child(3) {
    position: absolute;
    top: 26px;
}

button.hamburger-button.active .hamburger-line:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
    top: 50%;
    left: 50%;
}

button.hamburger-button.active .hamburger-line:nth-child(2) {
    transform: rotate(-45deg);
}

button.hamburger-button.active .hamburger-line:nth-child(3) {
    width: 0;
}

/* HEADER-WRAPPER */
.header-container {
    width: 100%;
    border-bottom: var(--border);
    background-color: var(--white-font-color);
}
.header-container .blank_plug {
    height: 60px;
    width: 100%;
    background-color: black;
}
.header-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    text-align: center;

    width: 100%;
    height: 50px;
    margin: 0 auto;
}

.navbar-section {
    height: inherit;
    align-items: center;
}
.navbar-section a.navbar-link {
    border-bottom: 5px solid transparent;
}

.navbar-section.active a.navbar-link {
    border-bottom-color: var(--category);
    color: var(--category);
}

.navbar-section:hover a.navbar-link {
    color: var(--black-font-color);
}

a.navbar-link {
    height: 100%;
    text-transform: uppercase;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 10px;

    font-size: 12px;
    color: var(--inactive-link-color);

    position: relative;

    white-space: nowrap;
}
.navbar-link-block {
    display: flex;
    align-items: center;
}

img.navbar-image {
    width: 35px;
    object-fit: fill;

    margin-left: auto;
}

h3.navbar-header {
    font-size: 12px;
    margin-left: 5px;
}

/* MEDIA QUERIES */
@media (hover: hover) {
    button.hamburger-button:hover {
        background-color: var(--hover-color);
    }
}

@media screen and (max-width: 500px) {
    a.main-heading_link-item {
        width: 200px;
    }
}

@media screen and (max-width: 926px) {
    .hamburger-button {
        display: block;
    }
    .header-wrapper {
        max-width: 900px;
    }
}

@media screen and (min-width: 927px) {
    .hamburger-button {
        display: none;
    }
}

@media screen and (min-width: 1180px) {
    .header-wrapper {
        max-width: 1320px;
    }
}

@media screen and (max-height: 624px) and (orientation: landscape) {
    .burger-sidebar.active {
        overflow-y: scroll;
    }

    .burger-sidebar.active div.sidebar-content
    {
        width: 100%;
    }
}