/* NAVIGATION --------------------------------------------------------------------------------------*/

.nav {
    position: fixed;
    font-weight: 300;
    z-index: 9;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    min-width: 300px;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid #333333;
    background-color: #081530;
}

.nav-open {
    flex-direction: column;
    padding-bottom: 30px;
    align-items: flex-start;
    height: auto !important;
    background: rgba(0, 0, 0, 0.9) !important;
}

.nav-top {
    position: relative;
    width: 100%;
    height: 250px;
    display: -webkit-flex;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-image: radial-gradient(circle at 25% 120%, #00649d, #000a0f 40%);
    background-size: contain;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.nav-top .bse-logo {
    margin: 20px;
    font-size: larger;
}

.nav-top .bn-reg {
    margin: 20px;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
}

.nav-top .bn-reg .social {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.nav-top .bn-reg .social a {
    opacity: 0.5;
}

.nav-top .bn-reg .social a:hover {
    opacity: 1;
}


.nav-top .logo {
    height: 100%;
}

.nav-top .logo img {
    height: 100%;
}


.nav .menu {
    width: 100%;
    height: 40px;
    font-size: 13px;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    background: #01010D;
    gap: 20px;
}

.nav .menu .v-line {
    width: 2px;
    height: 15px;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.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;
    background: none;
}

.nav .menu-vertical .menu-sec {
    width: 100%;
    margin-bottom: 10px;
    padding-left: 10px;
}

.nav .menu-vertical .menu-sec a {
    display: block !important;
    text-align: center;
    font-weight: 400;
}

.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 .menu-sec {
    position: relative;
}

.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: white;
}

.nav a:active {
    text-decoration: none;
}

.nav .focus {
    /*pointer-events: none;
    cursor: default;*/
    color: white !important;
}

.nav .bn-lang {
    /*display: none;*/
    white-space: nowrap;
    color: #9d9d9d;
    font-weight: 600;
    margin: auto 0 auto 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: #f8bb2d;
    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 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: 1200px) {
    .nav-top {
        height: 150px !important;
    }
}

@media all and (max-width: 700px) {
    .nav-top .bse-logo {
        display: none;
    }
}

@media all and (max-width: 600px) {

    .nav-top .bn-reg {
        margin: 5px;
        gap: 0;
    }

    .nav-top {
        height: 80px !important;
        justify-content: start;
    }

    .nav .menu {
        display: none;
    }

    .nav .menu .v-line {
        display: none !important;
    }

    .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;
        padding: 24px 15px;
        width: 80px;
        height: 80px;
    }

    .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;
    }


}