/* HEADER SECTION*/
#upNavigator{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    /* burada ------------------ */
    /* border: 1px solid red; */
}
@media screen and (max-width:1100px){
    .header{
        margin-bottom: 40px;
    }
    
}

.languageSelectionBox{
    display: flex;
    align-self: flex-end;
}
.languageBoxes{
    display: flex;
    justify-content: center;
    align-items: end;
    width: 26px;
    height: 41px;
    font-family: "oswald", sans-serif;
    padding-bottom: 5px;
    transition: all 0.6s;
    border-bottom: 2px solid transparent;
}
.languageBoxes:hover{
    background-color: white;
    color: #808080;
    border-bottom: 2px solid #808080;
}
.LBOX1{
    background-color: #FF0013;
}
.LBOX2{
    background-color: #4D4D4D;
}
.LBOX3{
    background-color: #0071BC;
}

.navbarContainer{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width:1100px){
    .navbarContainer{
        flex-direction: column;
    }
}
.siteLogo{
    margin-bottom: 0px;
}
@media screen and (max-width:1100px){
    .siteLogo{
        margin-bottom: 15px;
    }
}
@media screen and (max-width:350px){
    .siteLogo{
        width: 100%;
    }
    
}
.menu{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
@media screen and (max-width:703px){
    .menu{
        width: 100%;
        justify-content: center;
        gap: 0px;
    }
}
@media screen and (max-width:392px){
    .menuBoxes:nth-of-type(2){
        order: 3;
    }
    .menuBoxes:nth-of-type(3){
        order: 2;
    }
}
.menuBoxes{
    padding: 5px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #808080;
    font-family: "oswald", sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    border-bottom: 2px solid transparent;
    transition: all 0.6s;
    position: relative;
}
.menuBoxes:hover{
    border-bottom: 2px solid #00A99D;
}




.userSelectNone{
    user-select: none;
}
.navbarİnnerMenuContainer{
    position: absolute;
    visibility: hidden;
    opacity: 0;
    /* min-width: 150px; */
    width: fit-content;
    display: block;
    flex-direction: column;
    top: 105%;
    left: 0;
    right: 77px;
    z-index: 2;
    transition: all 0.3s;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
}
.innerMenuBoxes{     
    background-color: white;
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
    color: #808080;
    font-family: "oswald", sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    display: block;
}
.innerMenuBoxes:hover{
    border-bottom: 2px solid #00A99D ;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
}
.menuBoxes:hover .navbarİnnerMenuContainer, 
.navbarİnnerMenuContainer:hover{
    /* display: flex; */
    visibility: visible;
    opacity: 1;
    
}

/* MOBİLE MENÜ */
.mobileMenuContainer{
    display: none;
    flex-direction: column;
    border-left: 2px solid #00A99D;
    border-right: 2px solid #00A99D;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
    width: 100%;
    padding: 5px 25px;
    font-family: "oswald";
    font-size: 1.5rem;
    color: #808080;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 10px;
}

.mobileMenuHeadBox{
    margin-bottom: 5px;
    transition: all 0.3s;
}
.mobileMenuBox{
    display: flex;
    visibility: hidden;
    flex-direction: column;
    max-height: 0px;
    opacity: 0;
    transition: all 0.5s ease-in;
}
.mobileMenuBox.listed{
    display: flex;
    visibility: visible;
    max-height: 1000px;
    opacity: 1;
}
.mobileMenuProductsList{
    display: flex;
    flex-direction: column;
    max-height: 0px;
    opacity: 0;
    transition: all 0.5s ease-in;
    align-items: flex-end;
    
}
.mobileMenuProductsList.listed{
    display: flex;
    max-height: 1000px;
    opacity: 1;
}
.mobileMenuBoxes{
    border-left: 2px solid #00A99D;
    border-right: 2px solid #00A99D;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
    padding: 5px 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #808080;
    font-family: "oswald", sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    border-bottom: 2px solid transparent;
    transition: all 0.6s;
    position: relative;
    margin-bottom: 5px;
}
.İnnerMobileMenuBoxes{
    border-left: 2px solid #00A99D;
    border-right: 2px solid #00A99D;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
    padding: 5px 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #808080;
    font-family: "oswald", sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    border-bottom: 2px solid transparent;
    transition: all 0.6s;
    position: relative;
    margin-bottom: 5px;
}
.mobileMenuBoxes:hover{
    border-bottom: 2px solid #00A99D;
}
.mobileMenuHeadBox{
    display: flex;
    justify-content: space-between;
}
.mobileMenuArrow{
    display: flex;
    align-items: center;
}
.specialMobileMenuBoxes{
    width: 95%;
}
.specialMobileMenuBoxMain{
    display: flex;
    justify-content: space-between;
}


@media screen and (max-width:650px) {
    .menu{
        display: none;
    }
    .mobileMenuContainer{
        display: flex;
    }
}
