/* NAVBAR */
.logo {
    width: 40px;
}

.navbarWrapper {
    position: relative;
    /* z-index: 50; */
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 15px 20px;

}

.menuiconWrapper {
    width: 61px;
    background-color: #e73b1f;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navbar-toggler {
    z-index: 1000;

    /* background-color: #e73b1f; */
    border: none;
    border-radius: 0px;
    /* width: 61px; */
    display: block;
    height: fit-content;
    /*  justify-content: center;
    align-items: center; */
}

.navbar-toggler:focus {
    box-shadow: none;
}

#menu-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

a#menu-icon .bar {
    margin: 2px;
   width: 25px;
    height: 2px;
    background: #ffffff;
    border-radius: 1.5px;

    transition: margin 0.2s, transform 0.2s;
    /* same as above but with prefixes added */
    -webkit-transition: margin 0.2s, -webkit-transform 0.2s;
    transition: margin 0.2s, -webkit-transform 0.2s;
    -o-transition: margin 0.2s, transform 0.2s;
    transition: margin 0.2s, transform 0.2s;
    transition: margin 0.2s, transform 0.2s, -webkit-transform 0.2s;
}


a#menu-icon.close .bar:first-child {
    -webkit-transform: translateY(6px) rotate(45deg);
        -ms-transform: translateY(6px) rotate(45deg);
            transform: translateY(6px) rotate(45deg);
  }
  a#menu-icon.close .bar:nth-child(2) {
    opacity: 0;
  }
  a#menu-icon.close .bar:last-child {
    -webkit-transform: translateY(-6px) rotate(-45deg);
        -ms-transform: translateY(-6px) rotate(-45deg);
            transform: translateY(-6px) rotate(-45deg);
  }
.logoNavbar {
    width: 50px;
    /* margin: 10px 0px; */
}

.languageMenuWrapper {
    display: flex;
}

.language {
    margin-right: 20px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
}

.currentLanguage {
    margin: 0px;
    padding-top: 8px;
    font-size: 12px;
}

/**** Menu Navbar *****/

a#menu-icon:not(.close):hover .bar {
    background: #fd8f8f;
}

a .close:hover .bar {
    background: #fd8f8f;
}

.logoMenuPopup {
    padding: 60px 20px;
    scale: 1;
    opacity: 0;
    transform: translateY(-80px);
    width: 95%;
}

.navbarContainer {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    padding: 0px;
}
.navPopup {
    padding: 10px 20px;
}

.nav-link {
    margin-top: 10px;
    padding: 0px !important;
    margin-bottom: 0px;
    color: #fd8f8f;
    font-size: 20px;
    opacity: 0;
    transform: translateX(50px);
    will-change: transform;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    color: #ffffff;
}

.nav-link:focus {
    color: #ffffff;
}

.nav-link:focus-visible {
    outline: none;
    color: #ffffff;
}

/****** POPUP MENU NAVIGATION ********/
.full-size {
    z-index: 15;
    flex-shrink: 0;
    flex-grow: 0;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    display: none;
    background-color: #e73b1f;
}
.full-size.active {
    display: block;

}
.popUpMenu.active {
    visibility: hidden;
}
.popUpMenu,
.popUpMenu.flipping {
    visibility: visible;
}

.currentPageContainer {
    width: 100%;
    background-color: #b6412a;
    align-items: center;
    justify-content: center;
}

.currentPageText {
    font-size: 10px;
    font-weight: 500;
    margin: 0px;
    padding: 0px 20px;
}
/*** MEDIA QUERIES *****/

@media (min-width: 374px) {
    .currentPageText {
        font-size: 11px;

    }

}
@media (min-width: 575px) {
    .logoMenuPopup {
        width: 98%;
    }

    .navPopup {
        width: 100%;
    }
    .nav-link {
        font-size: 24px;

    }
}

@media (min-width: 767px) {
    .logoMenuPopup {
        padding: 60px 20px 20px 20px;
        width: 98%;
    }
}

@media (min-width: 991px) {
    .logoMenuPopup {
        width: 98%;
    }

    .navPopup {
        width: 90%;
    }
}
@media (min-width: 1199px) {
    .logoMenuPopup {
        width: 80%;
    }
    .navPopup {
        width: 78%;
    }
}

@media (min-width: 1399px) {
    .logoMenuPopup {
        width: 70%;
    }
    .navPopup {
        width: 70%;
    }
}
