.header{
    position: sticky;
    top: 0px;
    left: 0px;
    height: 80px;
    width: 100%;

    box-sizing: content-box;
    background-color: white;
    /*box-shadow: 1px 1px 5px rgba(0,0,0,0.5);*/
    border-bottom: 1px solid #C72829;
    z-index: 999999999999;

    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.goup{
    position: fixed;
    right: 50px;
    bottom:  50px;
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333333;
    font-size: 1.6em;
    transition: .2s;
}
.goup:hover{
    transform: scale(1.1);
}
.goup-closed{
    display: none;
}

.header .container{
    height: 100%;
}
.nav-logo{
    float: left;
    margin: 15px 0px;
    height: 50px;
    object-fit: contain;
    cursor: pointer;
}

.language-box{
    height: 80px;
    width: auto;
    margin: 0px 15px;
    position: absolute;
    top:0px;
    right: 0px;
}
.language-box ul,.language-box li {
    padding: 0;
    margin: 0;
}
.language-box li{
    display: inline;
    margin: 0 5px;

}.language-box li img{
    border-radius: 50%;
     box-shadow:0px 0px 4px rgba(0,0,0,.8);

}

.navv{
    float: right;
    background-color: #FFFFFF;
}

.navv ul{
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 80px;
    font-size: 1em;
    font-weight: bold;
    color: #505050;
    background-color: #FFFFFF;
}
.navv ul li{

    display: inline-block;
    cursor: pointer;
    position: relative;
    z-index: 0;
    transition: .3s;
}
.navv ul li:hover{
    color: #fff;
    
}
.navv ul li:hover .navv ul ul{
    color: #505050;
}
.navv ul li::before{
    background-color: #C72829;
    content: "";
    top: 50%;
    left: 50%;
    position: absolute;
    height: 0;
    width:100%;
    transform: translate(-50%,-50%);
    z-index: -3;
    transition: .3s;
}
.navv ul li:hover::before{
    height: 100%;
}

.navv ul li span{
    margin: 0 20px;
    z-index: 999;
    text-transform: uppercase;
}
.navv ul ul{
    position: absolute;
    min-width: 300px;
    width: auto;
    display: none;
    line-height: 50px;
    font-size: 0.8em;
    font-weight: bold;
}


.navv ul ul li{
    display: block;
}

.navv-alt-acik{
    display:block!important;
}

.menu-toggle {
    color: #505050;
    float: right;
    line-height: 80px;
    font-size: 24px;
    cursor: pointer;
    display: none
}

.nav-active{
    background-color: #C72829;
    color: white!important;
}


@media screen and (max-width: 1200px) {

    .language-box{
        position: relative;
        top: 0;right: 0;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .language-box ul{
        width: 100%;
        background-color: #333333;

    }

    .language-box ul li{
       display: inline!important;
        margin: 0px 10px;
    }
    .menu-toggle{
        display: block;
    }
    .navv{
        display:none;
        justify-content: center;
        position: absolute;
        top: 81px;
        left: 0;
        width: 100%;
        text-align: center;
        height: 100vh;
        background-color: #333333;
    }
    .nav ul{
        background-color: #333333;
    }
    .navv ul li {
        display: block;
        background-color: #333333;
        color: #fff;
    }

    .navv ul ul {
        position: relative;
        font-size: 1em;
        line-height: 80px;
        font-weight: bold;

    }
    .navv ul ul li{
        background-color: #505050;
    }
    .navv ul li:hover ul{
        display: none;
    }
    .navv-alt-acik{
        display:block!important;
    }
    .goup
    {
        display: none;
    }
}
@media screen and (max-width: 900px){

}