#nav-area {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0px;
    background: #FFFFFF00;
    transition: 0.5s;
    z-index: 2;
    height: 80px;
    padding: 0 50px;
}

.nav-area-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1680px;
    width: 100%;
    height: 100%;
}

.nav-area-wrapper .nav-logo-main-container {
    width: 35%;
}

.nav-area-wrapper .nav-logo img {
    width: 150px;
}

.mobile-nav-wrapper {
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-area-wrapper .nav-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex: 1;
    /* padding: 0 100px; */
}

.nav-area-wrapper .nav-link {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0px;
    padding: 5px 5px;
}

.nav-area-wrapper .nav-link.background {
    background-color: #f3781f30;
    border-radius: 20px;
}

.nav-item {
    position: relative;
}

.nav-area-wrapper p {
    text-decoration: none;
    color: #000000;
    font-weight: 400;
    font-size: 18px;
    transition: 0.5s;
}

.nav-logo-white {
    display: none;
}

.nav-logo-black {
    display: block;
}

.nav-area-wrapper .nav-link:hover,
.nav-area-wrapper .nav-logo:hover {
    cursor: pointer;
}

.nav-area-wrapper .nav-link:hover p {
    color: #f3781f !important;
}

.active-header-link {
    width: 0;
    position: absolute;
    bottom: -4px;
    height: 3px;
    background-color: #f3781f;
    border-radius: 10px;
    transition: 0.5s;
}

.active-header-link.mobile {
    bottom: 0px;
}

.nav-item.activeNav .active-header-link {
    width: 100%;
}

.mobile-nav-wrapper {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 16;
    display: none;
}

.mobile-nav-button {
    display: block;
    position: relative;
    cursor: pointer;
    width: 30px;
    height: 20px;
    -webkit-tap-highlight-color: transparent
}

.mobile-nav-button .mobile-nav-button__line {
    width: 100%;
    height: 2px;
    background: #f3781f;
    position: relative;
    transition: 1s ease
}

.mobile-nav-button .mobile-nav-button__line:nth-of-type(2) {
    margin: .3rem 0
}

.mobile-nav-button .mobile-nav-button__line--1 {
    transform: rotate(45deg)translateY(4px)translateX(6px)
        /* top: 13px;
    position: absolute */
}

.mobile-nav-button .mobile-nav-button__line--2 {
    /* display: none */
    opacity: 0;
}

.mobile-nav-button .mobile-nav-button__line--3 {
    transform: rotate(135deg)translateY(5px)translateX(-5px);
    /* top: 13px;
    position: absolute */
}

.translation-container {
    border-radius: 100px;
    padding: 5px 10px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: row;
}

#nav-mobile-translation .translation-container {
    margin-top: 20px;
    background-color: #FFFFFF10;
    padding: 15px 10px;
}

.language-flag {
    width: 40px;
    height: 25px;
    border-radius: 10px;
    margin: 0 10px;
    overflow: hidden;
    transition: 1s;
    opacity: 0.4;
}

.disabledA .language-flag {
    opacity: 1;
}

.language-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.language-flag:hover {
    cursor: pointer;
    transform: scale(1.1);
    opacity: 1;
}

/********************* MOBILE  *********************/

.mobile-menu {
    display: none;
    align-items: baseline;
    text-align: center;
    justify-content: center;
    max-width: 100%;
    width: 100%;
    right: 0;
    height: 100%;
    background: #000000;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 0;
    background-position-y: 0px;
    position: fixed;
    transition: .6s ease;
    top: 0;
    opacity: 0;
    margin-right: -100%;
    z-index: 15;
}

.mobile-menu ul {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center
}

.mobile-menu ul li {
    list-style: none;
    padding-left: 0;
}

.mobile-menu ul li::before {
    display: none;
}

.mobile-menu ul li p {
    width: 100%;
    margin: 0 auto;
    display: block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 50px;
    font-weight: 900;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu ul li p:focus {
    outline: 0
}

.menu-item:hover {
    background-color: #f3781f;
    transition: all 0.5s ease-in-out;
}

.menu-logo-wrapper {
    max-width: 185px;
    width: 100%;
    position: absolute;
    top: 25px;
    left: 25px;
}

.menu-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-menu--open {
    right: 0;
    opacity: 1;
    margin-right: 0;
    transition: .6s ease
}

.robot-wrapper {
    max-width: 450px;
    width: 100%;
    position: absolute;
    right: 150px;
    top: 15%;
    z-index: -1;
}

.robot {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.robot-responsive {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
}

.copyright-wrapper {
    color: #fff;
    font-size: 17px;
    display: flex;
    justify-content: space-evenly;
    width: 60%;
    position: absolute;
    bottom: 25px;
}

.copyright {
    max-width: 30%;
}


/********************* RESPONSIVE  *********************/

@media screen and (max-width: 1270px) {
    .nav-area-wrapper .nav-links {
        padding: 0 40px;
    }
}

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

@media screen and (max-width: 1220px) {
    .nav-area-wrapper p {
        font-size: 12px;
    }
}

@media screen and (max-width: 1150px) {
    .nav-area-wrapper .nav-links {
        padding: 0 20px;
    }

    .nav-area-wrapper p {
        font-size: 12px;
    }

    .nav-area-wrapper .nav-logo img {
        width: 120px;
    }

    .mobile-nav-wrapper {
        width: 120px;
    }
}

@media screen and (min-width: 980px) {
    #nav-area.is-sticky {
        background: #151515;
        height: 60px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }

    #nav-area.is-sticky p {
        color: #FFFFFF;
    }

    #nav-area.is-sticky .nav-logo-white {
        display: block;
    }

    #nav-area.is-sticky .nav-logo-black {
        display: none;
    }

    #nav-area.is-sticky .path-color-text {
        color: #000000;
    }
}

@media screen and (max-width: 980px) {
    .mobile-menu {
        display: flex;
    }

    .nav-area-wrapper {
        justify-content: flex-end;
    }

    .nav-area-wrapper .nav-links {
        display: none;
    }

    .nav-area-wrapper .translation-container {
        display: none;
    }

    .mobile-nav-wrapper {
        display: block;
    }

    .nav-logo {
        display: none;
    }

    .mobile-nav-wrapper {
        width: auto;
    }

    .nav-area-wrapper p {
        font-size: 10px;
    }
}

@media screen and (max-width: 550px) {
    .mobile-menu ul li p {
        font-size: 35px;
    }

    .copyright-wrapper {
        width: 100%;
        flex-direction: column;
    }

    .copyright {
        max-width: unset;
        width: 100%;
    }
}