/* Common for navbars elements */
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.button {
    height: 50px;
    padding: 13px 30px 12px 30px;
    border-radius: 186px;
    border: 2px solid #00D95F;
    gap: 15px;
}


.navbar-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;


}

.head {
    width: 25px;
    height: 25px;
    vertical-align: middle;
    image-rendering: -moz-pixelated; /* Firefox */
    -ms-interpolation-mode: nearest-neighbor;  /* IE */
    image-rendering: pixelated; /* Стандартное свойство */
}

.profile {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

/* Navbar blocks */
#navbar-left {
    gap: 49px;
}

#navbar-right {
    gap: 25px;
}

/* Desktop Navbar */

#navbar-desktop {
    height: 50px;
    margin-top: 30px;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}


/* Hamburger */
.hamburger {
    display: none;
    font-size: 20px;
    font-weight: 800;
    color: white;
}

/* Mobile Navbar */
#navbar-mobile {
    display: none;
}

#mobile-logo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;

    height: 50px;
    margin-top: 30px;
}

#navbar-mobile-items {
    margin-top: 50px;

    width: 100%;
    text-align: center;
    height: 90vh;

    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: start;

    gap: 40px
}

#navbar-mobile-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

/* Adaptivity */
@media screen and (max-width: 1200px) {
    .hamburger {
        display: flex;
        cursor: pointer;
    }

    .hamburger #closeHam {
        display: none;
    }

    .navbar-section {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        right: 0;
        top: 58px;
        background-color: black;
        width: 100%;
        height: calc(100vh - 58px);
        padding-top: 60px;
        gap: 10vh;
    }
}