html.body.mobile-menu-active,
body.mobile-menu-active {
    overflow: hidden;
}

.mobile-icon{
    display: none;
}

.navbar-container {
    z-index: 9;
    width: 100%;
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    transition: all .3s ease-in-out;
}

.navbar-inner{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.navbar-container.active {
    border-bottom: 3px solid #b8d765;
    background-color: rgba(255, 255, 255, .95);
    position: fixed;
    transition: all .3s ease-in-out;
}

.navbar-container.active .lang-select-box{
    top: 60px;
}

.navbar-container.active .navbar-box{
    background-color: transparent
}

.navbar-container.active .lang-box {
    background-color: #b8d765;
    padding: 10px 15px;
}

.navbar-container.active .lang-box a{
    font-size: 16px;
}

.navbar-container.active .lang-box .lang-item,
.navbar-container.active .lang-box span {
    color: white;
}

.navbar-container.active .lang-select-box.active .lang-item{
    color: #b8d765;
    text-align: center;
}

.navbar-container.active .lang-select-box.active .lang-item:hover{
    color: white;
}

.navbar-container.active.p-lr {
    padding: 15px 155px;
}

.navbar-container.active .mobile-menu-btn i {
    color: grey;
}

.navbar-container.active .c-logo img {
    max-width: 120px;
}

.navbar-container.active .nav-label {
    text-shadow: rgb(255, 255, 255) 1px 0px 0px, rgb(255, 255, 255) 0.540302px 0.841471px 0px, rgb(255, 255, 255) -0.416147px 0.909297px 0px, rgb(255, 255, 255) -0.989992px 0.14112px 0px, rgb(255, 255, 255) -0.653644px -0.756802px 0px, rgb(255, 255, 255) 0.283662px -0.958924px 0px, rgb(255, 255, 255) 0.96017px -0.279415px 0px;
}

.navbar-container.active .nav-item:hover .nav-label::after {}

.navbar-container.active .nav-sub-box {
    top: 60px;
}

.c-logo img {
    width: 100%;
    max-width: 175px;
}

.navbar-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 62%;
}

.nav-item {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.nav-label {
    text-shadow: rgb(242, 242, 242) 1px 0px 0px, rgb(242, 242, 242) 0.540302px 0.841471px 0px, rgb(242, 242, 242) -0.416147px 0.909297px 0px, rgb(242, 242, 242) -0.989992px 0.14112px 0px, rgb(242, 242, 242) -0.653644px -0.756802px 0px, rgb(242, 242, 242) 0.283662px -0.958924px 0px, rgb(242, 242, 242) 0.96017px -0.279415px 0px;
    color: #457335;
    font-size: 1rem;
    font-weight: bold;
    border-bottom: 3px solid transparent;
    transition: all .3s ease-in-out;
    padding: 13px 0 5px;
    text-transform: uppercase;
}

.nav-label::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: #457335;
    transition: width .3s;
}

.nav-item:hover .nav-label::after {
    width: 100%;
}

.lang-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 50px;
    width: 260px;
    transition: all .3s ease-in-out;
}

.lang-box span {
    font-weight: 600;
    color: white;
}

.lang-item {
    font-weight: 600;
    color: white!important;
    transition: all .3s ease-in-out;
}

.nav-sub-box {
    padding-top: 30px;
    position: absolute;
    top: 90px;
}

.nav-sub-menu {
    display: none;
    background-color: white;
    padding: 30px 90px 30px 30px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.nav-sub-menu.active {
    display: block;
}

.nav-sub-menu li {
    margin-bottom: 15px;
}

.nav-sub-menu li:last-child {
    margin-bottom: 0;
}

.nav-sub-menu li a {
    font-weight: 500;
    color: #6d6d6d;
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
}

.nav-sub-menu li a:hover {
    text-decoration: none;
    color: #b8d765;
}

/* .nav-sub-menu li::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: #457335;
    transition: width .3s;
}

.nav-sub-menu li:hover::after {
    width: 100%;
} */

.mobile-menu-btn {
    display: none;
    margin-right: 30px;
}

.mobile-menu-btn i {
    font-size: 28px;
    color: white;
    cursor: pointer;
}

.navbar-left {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.lang-select-box.active {
    display: block;
    z-index: 9;
}

.lang-select-box {
    display: none;
    position: absolute;
    right: 160px;
    top: 85px;
    padding: 20px 0;
}

.lang-select-inner {
    display: flex;
    flex-direction: column;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

.lang-select-box .lang-item {
    transition: all .3s ease-in-out;
    padding: 10px 40px;
    color: #b8d765!important;
    text-align: center;
    text-decoration: none;
}

.lang-select-box .lang-item:last-child {}

.lang-select-box .lang-item:hover {
    background-color: #b8d765!important;
    color: white!important;
    transition: all .3s ease-in-out;
}

.lang-select-inner a{
    font-size: 21px;
}

@media screen and (min-width: 1200px) {
    .navbar-box {
        background-color: rgba(255,255,255,0.77);
        padding: 5px 35px;
        border-radius: 100px;
    }
}

@media screen and (max-width: 1199px) {
    .nav-sub-menu li a:hover{
        color: #798d40!important;
    }

    .navbar-box{
        justify-content: flex-start!important;
    }
}

.index-nav-title-master{
    width: 100%;
    height: 100%;
    position: absolute;
}