.mobileHeader {
    width: 100%;
    text-align: center;
    display: none;
    position: relative;
}
.mobileHeader h1{
    position: absolute;
    top: -100px;
}
.mobileHeader>a{
    display: inline-block;
    z-index: 2;
    margin-left: 25px;
}
.mobileHeader>a>img {
    height: 50px;
}

.headerWrapper {
    width: 100%;
    padding: 1% 5%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.titleWrapper{ 
    width: 18.545%;position: relative;
}
.titleWrapper h1{
    position: absolute;
    margin-top: -100px;
}
.titleWrapper a{
    z-index: 2;
}
.headerWrapper nav {
    position: relative;
}

.languageBox {
    position: absolute;
    top: 0;
    right: 2%;
}

.languageBox a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.languageBox a:hover {
    color: #E35A26;
}

#main {
    position: relative;
    list-style: none;
    font-weight: 400;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

#main>.navItem {
    display: inline-block;
    position: relative;
    /* width: 126px; */
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    /* font-weight: 600; */
    text-transform: capitalize;
    margin: 0 15px;
    /* line-height: 20px; */
}

#main .navItem>a {
    display: block;
    width: 100%;
    color: #ffffff;
    text-decoration: none;
    padding: 0px 6px;
}

#main .navItem:first-child {
    margin-right: 5px;
}

/* #main .navItem:first-child>a {
    color: #E35A26;
} */

#main .navItem>a:hover {
    /* color: #E35A26; */
    font-weight: bolder;
}

#main .navItem .bottLine {
    /* height: 0;
    width: 0;
    background-color: #E35A26;
    opacity: 0;
    display: block;
    position: absolute;
    left: 50%;
    content: "";
    bottom: 0;
    z-index: 2;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transition-timing-function: cubic-bezier(.58, .3, .005, 1);
    -o-transition-timing-function: cubic-bezier(.58, .3, .005, 1);
    transition-timing-function: cubic-bezier(.58, .3, .005, 1); */
}

#main .navItem>a:hover .bottLine{
    width: 100%;
    height: 3px;
    left: 0;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.drop {
    list-style: none;
    position: absolute;
    padding: 0;
    width: 100%;
    word-wrap: break-word;
    left: 0;
    top: 46px;
    z-index: 5;
    border: 1px solid #E35A26;
    background-color: #fff;
    display: none;
}

#main>.navItem:hover .drop {
    display: block;
}

.drop li {
    display: block;
    width: 100%;
    height: auto;
    font-size: 14px;
}

.drop li>a {
    text-decoration: none;
    color: #ffffff;
    padding: 8px 5px;
    display: block;
}

.drop li:hover {
    background: #E35A26;
}

.drop li>a:hover {
    color: #fff;
}

#main .navItem:hover ul div {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}
@media (max-width:768px) {
    html,body{height: 100%;}
    .bodyFixed{position: fixed;}
    .fullScreenMenu{
        display: none;
        position: fixed;
        top: 50px;
        width: 100%;
        height: 100%;
        background-color: #fafafa;
        color: #000;
        overflow: scroll;
        transform: translateY(0);
        transition: all .4s cubic-bezier(.39,.575,.565,1);
    }
    .fullScreenMenu .menuContainer {
        margin-left: auto;
        margin-right: auto;
        padding-left: 4vw;
        padding-right: 4vw;
        width: 100%;
        height: 100%;
        display: block;
        padding-top: 10px;
    }
    .languageBox{top: 10px;}
    .navMenu{padding-bottom: 30px;margin-top: 30px;}
    .mobileHeader {
        display: block;
        position: fixed;
        top: 0;
        z-index: 2;
        background: #fff;
    }

    .headerWrapper {
        display: none;
    }
    .hamburgerButton{
        float: right;
        margin: 6px 10px 0 0;
        background-color: transparent;
        position: relative;
        z-index: 4;
        transition: all .75s cubic-bezier(.77,0,.175,1);
    }
    
    .hamburgerButton span{
        display: block;
        width: 25px;
        height: 2px;
        position: relative;
        opacity: .88;
        background: #d82805;
        z-index: 1;
        transform-origin: 4px 0;
        transition: transform .5s cubic-bezier(.77,.2,.05,1), background .5s cubic-bezier(.77,.2,.05,1), opacity .55s ease;
    }
    .hamburgerButton span:first-child {
        transform-origin: 0 0;
        margin-bottom: 5px;
    }
    .hamburgerButton span:nth-last-child(2) {
        transform-origin: 0 100%;
        /* width: 16px; */
        margin-bottom: 5px;
        transition: all .6s ease;
    }

    .hamburgerButton.isActive span {
        opacity: 1;
        transform: rotate(45deg);
    }
    .hamburgerButton.isActive span:nth-last-child(2) {
        opacity: 0;
        transform: rotate(0deg) scale(.2);
    }
    .hamburgerButton.isActive span:first-child {
        margin-bottom: 5px;
        transform: rotate(45deg) translateY(-2px);
    }
    .hamburgerButton.isActive span:last-child {
        /* margin-bottom: 5px; */
        transform: rotate(-45deg) translateY(-2px);
    }
}

