.header {
    width: 100%;
    position: relative;
}

.top-head-img {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 0;
}

.formob {
    display: none;
}

.btm-head-img {
    width: 100%;
    position: absolute;
    bottom: 0;
    font-size: 0;
}

.top-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.comp-logo {
    width: 169px;
    height: 99px;
    display: table;
    margin: 20px auto;
}

.nav {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5);
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-list_item {
    display: inline-block;
    padding: 15px 12px;
    font-size: 20px;
    font-weight: 700;
    color: #454545;
    text-transform: uppercase;
    position: relative;
}

.nav-list_item_anchr {
    position: relative;
    display: inline-block;
    color: #454545;
    transition: color 0.3s ease-in-out;
}

.nav-list_item_anchr:hover, .nav-active {
    color: #ff9413;
    transition: color 0.3s ease-in-out;
}

.sub-nav>.nav-list_item_anchr::before {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    margin-left: -3px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #3f464c;
}

.sub-nav-list {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 5px 0 10px 0;
    border-radius: 0 0 6px 6px;
    margin-top: 10px;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.sub-nav-list_item {
    display: block;
    padding: 10px 20px;
    text-align: left;
}

.sub-nav:hover>.nav-list_item_anchr {
    color: #ff9413;
}

.nav-list_item:hover.sub-nav::before {
    border-top: 5px solid #ff9413;
}

.nav-list_item:hover .sub-nav-list {
    margin-top: 0px;
    opacity: 1;
    pointer-events: all;
    transition: all 0.3s ease-in-out;
}

.toggle-nav {
    display: none;
}