* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    position: sticky;
    top: 0;
    z-index: 5;
}



/* .wrapper{
    max-width: 1200px;
    margin: 0 auto;
} */

.header_menu_wrapper {
    display: flex;
    justify-content: space-between;
    background-color: #F95020;
    /* background-image: url(../assets/bg/headerBG.jpg); */
}

.header_menu {
    list-style-type: none;
    display: flex;
    flex-wrap: nowrap;
    /* height: 45px; */
}

.item_menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid transparent;
    color: white;
    font-size: 15px;
    padding: 5px;
    position: relative;
    text-decoration: none;
    user-select: none;
    z-index: 10;
}

.header_logo {
    max-width: 45px;
    cursor: pointer;
}

.item_menu:hover {
    border: 1px solid whitesmoke;
    background-color: #333;
    /* background-color: #5099FF; */
    transition: all 0.3s;
    opacity: 1;
}

.submenu_lvl_1 {
    color: white;
    display: none;
    z-index: 2;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    /* bottom: 0; */
}

.submenu_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    /* background-color: #5099FF; */
    position: relative;
    padding: 5px;
    border: .5px solid gray;
    width: 180px;
    text-decoration: none;
    color: white;
    z-index: 10;
}

.more::after {
    content: "+";
}

.submenu_item:hover {
    background-color: #F95020;
    /* background-color: #3566AA; */
    opacity: 1;
}

.submenu_lvl-2 {
    list-style-type: none;
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
    background-color: #F95020;
    /* background-color: #5099FF; */
    z-index: 10;
}

.submenu_item_lvl_2 {
    background-color: #333;
}

.item_menu:hover .submenu_lvl_1 {
    display: block;
    /* transition: all 0.6s; */
}

.submenu_item:hover .submenu_lvl-2 {
    display: block;
}

.has_sub::after {
    font-weight: 800;
    color: #F95020;
    content: "+";
}

.additionall_link {
    width: 150px;
    display: flex;
    justify-content: space-around;
}

.additionall_link a {
    display: flex;
    align-items: center;
}

.additionall_link a img {
    width: 45px;
    border-radius: 50%;
    cursor: pointer;
    /* box-sizing: border-box; */
}

.header_image {
    height: 300px;
    background-image: url('../assets/bg/header_collage.jpg');
    background-size: cover;
}


/* Mobile menu */

.mobileIconWrapper {
    display: none;
}

.icon {
    display: flex;
    width: 45px;
    height: 4px;
    border: 1px solid white;
    background-color: #F95020;
    /* background-color: #5099FF; */
}

.mobileMenu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0%;
    left: -100%;
    width: 65%;
    height: 100vh;
    background-color: #F95020;
    /* background-image: url(../assets/bg/headerBG.jpg); */
    transition: all 0.7s;
}

.mobileMenu a {
    color: white;
}

.mobileMenu a:hover {
    opacity: 1;
}

.firstLvlMobileMenu {
    display: flex;
    flex-direction: column;
    color: white;
    font-size: 20px;
}

.nonhide {
    left: 0%;
    transition: all 0.7s;
}

.mobileMenuItem {
    margin: 3px;
    /* border: 1px solid black; */
}

.mobileMenuItem:hover {
    color: blue;
}

.secondLvlMobileMenu {
    display: none;
}

.secondLvlMobileMenu a {
    margin: 5px 0;
}

.open {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}

@media screen and (max-width: 768px) {
    a {
        text-decoration: none;
    }
    .header_menu_wrapper {
        display: none;
    }
    .mobileIconWrapper {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        width: 45px;
        height: 45px;
        position: absolute;
        top: 10px;
        right: 2%;
    }
    .nonhide {
        overflow: scroll;
    }
}


.two-lines {
    display: block;
    line-height: 1.2em;
    max-height: 2.4em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }