/* NAVIGATION --------------------------------------------------------------------------------------*/

.nav {
    position: fixed;
    z-index: 9;
    width: 100%;
    height: 100px;
    /*background-image: linear-gradient(rgba(0, 0, 0, 0.9) 70%, rgba(0, 0, 0, 0));*/
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    /*align-items: center;*/
    color: white;
    min-width: 300px;
    /*-webkit-transition: 0.3s;
    transition: 0.3s;*/
}

.nav-light {
    box-shadow: 0 5px 10px rgba(2, 36, 46, 0.2);
}

.nav-open {
    flex-direction: column;
    padding-bottom: 30px;
    align-items: flex-start;
    height: auto !important;
    background: rgba(0, 0, 0, 0.9) !important;
}

.nav-light {
    background: white !important;
}

.nav .logo {
    display: -webkit-flex;
    display: flex;
    height: 100%;
}

.nav .logo img {
    height: 52px;
}

.nav .left-part {
    height: 52px;
    margin: 24px 0 24px 100px;
}

.nav .left-part .by-bse {
    margin-left: 32px;
}

.nav .menu {
    font-size: 15px;
    display: -webkit-flex;
    display: flex;
    justify-content: start;
    align-items: center;
    height: 100px;
    margin-right: 100px;
}

.nav .menu-vertical {
    font-size: 24px;
    display: -webkit-flex !important;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    width: 100% !important;
    height: 100%;
    margin: 50px 0 0 0 !important;
}

.nav .menu-vertical .menu-sec {
    width: 100%;
}

.nav .menu-vertical .menu-sec a {
    display: block !important;
}

.nav .menu-vertical .bn-lang {
    margin: 30px auto;
}

.nav .menu-vertical .bn-lang .bn-small {
    font-size: 20px !important;
    min-width: 80px;
    padding: 4px 10px;
    margin: 10px;
}

.nav a {
    white-space: nowrap;
    color: white;
}

.nav-light a {
    color: rgb(68, 68, 68);
}

.nav .menu-sec {
    position: relative;
    padding: 6px 0 6px 21px;
}

.nav .move-up {
    margin-top: 15px;
    pointer-events: all;
}

.nav .menu-sec-sub a {
    color: #383838;
    font-weight: 600;
    margin: 2px 0;
}

.nav .menu-sec-sub a:hover {
    color: black;
}

.nav a:link {
    text-decoration: none;
}

.nav a:visited {
    text-decoration: none;
}

.nav a:hover {
    text-decoration: none;
    color: #B1ECFF;
}

.nav-light a:hover {
    color: black;
}

.nav a:active {
    text-decoration: none;
}

.nav .focus {
    /*pointer-events: none;
    cursor: default;*/
    color: #B1ECFF !important;
}

.nav-light .focus {
    /*pointer-events: none;
    cursor: default;*/
    color: #35E94D !important;
}

.nav .bn-lang {
    white-space: nowrap;
    color: #B1ECFF;
    font-weight: 600;
    margin: 30px 0 30px 40px;
}

.nav .bn-lang a {
    margin: 0;
}

.main-ver-menu {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 16px;
    z-index: 5;
    color: white;
}

.main-ver-menu .item {
    height: 40px;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.main-ver-menu .item .line {
    width: 40px;
    height: 2px;
    background: white;
    transition: width 0.3s;
    transition-timing-function: ease-in-out;
}

.main-ver-menu .item .text {
    margin-left: 10px;
    display: none;
}

.main-ver-menu .active .line {
    height: 6px;
    background: #B1ECFF;
    width: 50px;
}

.main-ver-menu .active .text {
    display: block;
}

/* HAMBURGER */

.nav-open-close {
    display: none;
    position: fixed;
    padding: 34px 25px;
    width: 100px;
    height: 100px;
    right: 0;
    top: 0;
    /* background-color: rgba(255, 255, 255, 0.2); */
    color: white;
    cursor: pointer;
    z-index: 10;
}

.nav-hamburger {
    width: 50px;
    height: 33px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

.nav-hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 5px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.nav-hamburger-light span {
    background: black;
}

.nav-hamburger span:nth-child(1) {
    top: 0px;
}

.nav-hamburger span:nth-child(2), .nav-hamburger span:nth-child(3) {
    top: 15px;
}

.nav-hamburger span:nth-child(4) {
    top: 30px;
}

.nav-hamburger.open span:nth-child(1) {
    top: 15px;
    width: 0%;
    left: 50%;
}

.nav-hamburger.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav-hamburger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.nav-hamburger.open span:nth-child(4) {
    top: 15px;
    width: 0%;
    left: 50%;
}

@media all and (max-width: 1300px) {
    .nav .menu {
        margin-right: 50px;
    }
}

@media all and (max-width: 1100px) {
    .nav .menu {
        display: none;
    }
    .main-ver-menu .active .text {
        display: none;
    }
    .main-ver-menu .item .line {
        width: 10px;
    }
    .main-ver-menu .active .line {
        width: 20px;
    }
    .nav-open-close {
        display: block;
    }
    .nav .menu-sec-sub {
        position: relative;
        background: none;
        margin: 0;
    }
    .nav .menu-sec-sub a {
        color: white;
        text-transform: none;
        margin: 5px 0;
    }
    .nav .menu-sec-sub a:hover {
        color: #FFEA24;
    }
}

@media all and (max-width: 580px) {
    .nav {
        height: 80px;
    }
    .nav .logo img {
        height: 48px;
    }
    .nav .left-part {
        height: 48px;
        margin: 16px 0 16px 16px;
    }
    .nav-open-close {
        padding: 24px 15px;
        width: 80px;
        height: 80px;
    }
}

@media all and (max-width: 400px) {
    .nav .logo img {
        height: 36px;
    }
    .nav .left-part {
        height: 36px;
        margin: 22px 0 22px 22px;
    }
}