.nav_top {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.nav_top .nav_left {
    margin-right: auto;
}

.nav_top .nav_left .nav_logo {
    height: auto;
    max-width: 200px;
    /* width: 70%; */
}

.nav_top .nav_right {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    text-align: center;
    justify-content: flex-end;
}

.nav_top .nav_right .nav_logo {
    height: 18px;
}

.nav_top .nav_right .link_br_dl a {
    font-size: 18px;
    padding: 0 15px;
    margin: auto;
}

.nav_top .nav_right .link_fb_yt a {
    font-size: 18px;
    padding: 0 15px;
    margin: auto;
}

.nav_top .nav_right .link_br_dl a,
.nav_top .nav_right .link_br_dl a:hover,
.nav_top .nav_right .link_br_dl a:link,
.nav_top .nav_right .link_br_dl a:visited,
.nav_top .nav_right .link_br_dl a:active {
    text-decoration: none;
    color: #73BE44;
}

.nav_top .nav_right .btn_lang {
    justify-content: center;
    border: none;
    text-transform: uppercase;
    color: black;
    background: none;
    font-size: 18px;
    padding: 0 15px;
}

.nav_top .nav_right .btn_lang:hover,
.nav_top .nav_right .btn_lang:focus,
.nav_top .nav_right .btn_lang:active,
.nav_top .nav_right .btn_lang:active:focus {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
}

.nav_top .nav_right .inp_search {
    height: 30px;
    border-radius: 20px 0 0 20px;
    border: 1px solid #767676;
    background: #f5f5f5;
    padding: 0 10px;
    outline: none;
    color: #767676;
    width: 200px;
    border-right: none;
    box-shadow: none;
    font-size: 18px;
}

.nav_top .nav_right .inp_search:focus {
    border: 1px solid #767676;
    outline: none;
    box-shadow: none;
    border-right: none;
}

.nav_top .nav_right .btn_search {
    background: url(../images/icons/search_black.png) no-repeat scroll center #f5f5f5;
    color: #767676;
    border-radius: 0 20px 20px 0;
    border: 1px solid #767676;
    width: 30px;
    height: 30px;
    border-left: none;
}


.full_nav {
    text-align: center;
    width: 100%;
    background: #F5F5F5;
    padding: 0;
    margin: 0;
    height: auto;
    position: relative;
    z-index: 100;
    transition: position 3s;
}

.full_nav.sticky {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 100;
    border-top: 0;
    transition: position 3s;
}

.full_nav .menu li {
    cursor: pointer;
}

@media (min-width: 768px) {

    .full_nav .menu {
        background: #F5F5F5;
        list-style: none;
        padding: 0;
        margin: auto;
        height: auto;
        font-size: 20px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .full_nav .menu li {
        display: inline-block;
        /* max-width: 250px; */
    }

    .full_nav .menu li a {
        color: #000000;
        display: block;
        padding: 20px 12px;
        text-decoration: none;
        height: 60px;
    }

    .full_nav .menu .nav_link {
        margin-right: auto;
    }

    .full_nav .menu .sub_nav {
        background: #47AFCA;
        padding: 0;
        text-align: left;
        visibility: hidden;
        width: 100%;
        position: absolute;
        left: 0px;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .full_nav .menu .sub_nav.incube {
        padding-left: 120px;
    }

    .full_nav .menu .sub_nav .container .wrap_content {
        padding: 0 30px;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .full_nav .menu .sub_nav.left .container .wrap_content {
        justify-content: flex-start;
    }

    .full_nav .menu .sub_nav.right .container .wrap_content {
        justify-content: flex-end;
    }

    .full_nav .menu li .sub_nav a {
        display: block;
        height: auto;
    }

    .full_nav .menu li .sub_nav a:hover {
        color: #FFF;
    }

    .full_nav .menu li:hover .nav_link {
        background: #47AFCA;
        color: #FFF;
    }

    .full_nav .menu li:hover .sub_nav,
    .full_nav .menu li:focus .sub_nav {
        visibility: visible;
    }

    .full_nav .menu li:hover .sub_nav li ul {
        padding-bottom: 20px;
    }

    .full_nav .menu li.clickSub .sub_link {
        cursor: default;
    }

    .full_nav .menu li:hover .sub_nav li ul li {
        font-size: 18px;
        display: list-item;
        list-style: disc !important;
    }

    .full_nav .menu li .sub_nav li ul li.sub-sub-menu:hover,
    .full_nav .menu li .sub_nav li ul li.sub-sub-menu:hover a {
        color: #FFF;
    }

    .full_nav .menu li .sub_nav li ul li a {
        padding: 0;
    }

    .full_nav .menu li .sub_nav li ul li.sub-sub-menu,
    .full_nav .menu li .sub_nav li ul li.sub-sub-menu a {
        color: #C8EEB1;
    }
}

@media (max-width: 768px) {
    #menu_respon .container {
        margin: 0;
        padding: 0;
        width: 100%;
    }

    #menu_respon .container .wrap_content {
        display: block;
        padding: 0;
    }

    .full_nav {
        text-align: center;
        width: 100%;
        background: #F5F5F5;
        padding: 0;
        margin: 0;
        height: auto;
        z-index: 10000;
        transition: position 3s;
        overflow: auto;
    }

    #menu-button {
        display: flex !important;
        flex-wrap: nowrap;
        justify-content: space-around;
        align-items: center;
        margin: 15px 0;
    }

    .menu_reslogo {
        margin-right: auto;
    }

    .menu_reslogo img.nav_logo {
        height: auto;
        max-width: 200px;
        width: 70%;
    }

    .full_nav .menu {
        background: #47AFCA;
        list-style: none;
        padding: 0;
        margin: 0;
        height: auto;
        font-size: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .full_nav .menu li {
        display: flex !important;
        width: 100%;
        padding: 10px 0 0 15px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .full_nav .menu li.clickSlide,
    .full_nav .menu li.no_sub,
    .full_nav .menu li.clickSub {
        display: flex;
        width: 100%;
        padding: 10px 0 0 15px;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        position: relative;
    }

    .full_nav .menu li.clickSub {
        padding: 10px 0 0 0 !important;
        text-indent: 15px;
    }

    .full_nav .menu li a {
        color: #FFF;
        text-decoration: none;
        text-align: left;
        margin-right: auto;
        width: 100%;
    }

    .full_nav .menu .nav_link i {
        display: none;
    }

    .full_nav .menu li img {
        height: 20px;
        margin-left: auto;
    }

    .full_nav .menu li a .sub_nav {
        color: #FFF;
        display: block;
        padding: 20px;
        text-decoration: none;
        height: 60px;
        background: url(../images/icons/open.png) right no-repeat;
    }

    .full_nav .menu .sub_nav {
        background: #47AFCA;
        padding: 0 0 0 20px;
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        position: relative;
    }

    .full_nav .menu li .sub_nav a {
        display: block;
        height: auto;
    }

    .full_nav .menu li .sub_nav li ul li a {
        padding: 0;
    }

    .full_nav .menu li .sub_nav li .sub_sub_nav {
        padding: 0 0 0 15px;
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
    }

    .full_nav .menu li .sub_nav li ul li.sub-sub-menu {
        padding: 10px 0 0 0 !important;
    }

    .menu_underline {
        width: 100%;
        margin: 10px 0 0 0;
        border-top: 1px solid #7DCCE0;
        max-width: -webkit-fill-available;
        max-width: -moz-available;
    }

    .lang {
        padding: 10px 15px !important;
    }

    .lang .lang_list {
        padding: 0;
        display: inline-flex !important;
        width: auto !important;
    }

    .list_open {
        background: url(../images/icons/open.png) right center no-repeat;
        margin-right: 15px;
    }

    .list_close {
        background: url(../images/icons/close.png) right center no-repeat;
        margin-right: 15px;
    }

    .lang .lang_list li {
        padding: 0 10px;
    }

    .lang .lang_list .active {
        color: #C8EEB1;
    }
}

#menu_respon.small-screen ul {
    width: 100%;
    display: none;
}

#menu_respon.small-screen .submenu-button {
    position: absolute;
    z-index: 99;
    right: 0;
    top: 0;
    display: block;
    height: 40px;
    width: 100%;
    cursor: pointer;
}

#menu_respon.small-screen .submenu-button:after {
    position: absolute;
    top: 22px;
    right: 19px;
    width: 8px;
    height: 2px;
    display: block;
    border: 5px solid transparent;
    border-top-color: transparent;
    content: "";
}

#menu_respon.small-screen ul ul .submenu-button:after {
    top: 24px;
    right: 13px;
}

#menu_respon.small-screen .submenu-button:before {
    position: absolute;
    top: 19px;
    right: 22px;
    display: block;
    width: 2px;
    height: 8px;
    content: "";
}

#menu_respon.small-screen ul ul .submenu-button:before {
    top: 12px;
    right: 16px;
}