/*=======NAVIGATION==========*/

.material-icons.md-22 {
  font-size: 22px;
}

.menu {
  position: fixed !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 4.5rem;
  min-height: 4.5rem;
  max-height: 4.5rem;
  z-index: 1500;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbarn {
  width: 80vw;
  height: 3em;
  display: flex;
}

.mobmenu {
  display: none;
}

.brandnav {
  display: flex;
  cursor: pointer;
  width: 9%;
}

.brandnav img {
  width: 100%;
  object-fit: contain;
}

.nav {
  display: flex;
  margin: 0;
  justify-content: space-between;
  width: 100%;
  height: 3em;
  padding: 0;
}

.nav ul {
  display: flex;
  margin: 0;
  padding: 0;
}

.nav li {
  margin: 0;
  position: relative;
  list-style-type: none;
  display: flex;
  width: auto;
  height: 3em;
}

.nav-item {
  width: auto;
  height: 3em;
}

.nav-link {
  text-transform: uppercase;
  font-weight: 500;
  color: #333333;
  transition: .3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1.5em;
  width: auto;
  height: 3em;
  border-bottom: 2px solid white;
}

.nav-link:hover {
  color: #00A3FF !important;
}

.nav-item .active {
  color: #00A3FF !important;
  border-bottom: 2px solid white;
  box-shadow: 0px 2px 0px 0px #00A3FF;
}

.navmenu {
  display: none;
  position: fixed;
  left: 0;
  top: 3.8em;
  width: 100%;
  height: calc(100vh - 3.8em);
  background-color: white;
  overflow-y: auto;
}

.navmenu .nitem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  background-color: #CCCCCC;
}

.navmenu .nitem a {
  width: 100%;
}

.navmenu .nnitem {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 1em 0.5em;
  border-bottom: 1px solid #CCCCCC;
}

.main-menu {
  display: flex;
  gap: 2rem;
  height: 100%;
  padding-right: 2rem !important;
}

.main-menu li {
  height: 100%;
  display: flex;
  align-items: center;
}

.main-menu li a {
  color: #333333;
}

.nav a {
  text-decoration: none;
}

.nwrap {
  display: flex;
  align-items: center;
}





/*burger*/
.mobile-menu {
  width: 25px;
  height: 25px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.mobile-menu span {
  background-color: #1C7FBE;
}

.mobile-menu span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 3px;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.mobile-menu span:nth-child(1) {
  top: 5px;
}

.mobile-menu span:nth-child(2), .mobile-menu span:nth-child(3) {
  top: 12px;
}

.mobile-menu span:nth-child(4) {
  top: 19px;
}

.mobile-menu.open span:nth-child(1) {
  top: 0px;
  width: 0%;
  left: 50%;
}

.mobile-menu.open span:nth-child(4) {
  top: 0px;
  width: 0%;
  left: 50%;
}

.mobile-menu.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mobile-menu.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*end burger*/
/*--exit--*/
.exit {
  float: right;
  position: relative;
  width: auto;
  justify-content: center;
  align-items: center;
}

.ex form, .exi {
  display: flex;
  align-items: center;
}

.search-button {
  display: none;
}


.btn-ico {
  background-color: white;
  cursor: pointer;
  border: 1px solid white;
}

.btn-max-blue {
  background-color: #1C7FBE;
  display: flex;
  align-items: center;
  color: white;
  height: 2.8125em !important;
  padding: 0.5em 1em;
  border-radius: 2px;
}

.btn-max-blue:hover {
  color: white !important;
  background-color: #00A3FF !important;
}

.search-ico {
  height: 2em;
}

.exi, .lang {
  margin-left: 2em;
}

.lang a {
  color: #1C7FBE;
  margin-left: 0.7em;
}

.lang a:hover {
  color: #00A3FF !important;
}

.parent {
  display: grid;
  grid-template-columns: auto 1fr;
}

.child {
  grid-area: 1 / 1;
}

.child-2 {
  margin-left: -7px;
  margin-top: -3px;
}

/*--end exit--*/

/*---Mobile version---*/
@media (max-width: 1024px) {

  .navbarn {
    width: 90vw;
  }

  .navmenu {
    display: none;
    position: fixed;
    top: 4.5rem;
    left: 0;
    width: 100vw;
    height: auto !important;
    background: #575653;
  }

  .nav {
    display: none;
  }

  .mobmenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    position: relative;
    width: 100%;
    height: auto;
  }

  .navmenu li {
    margin: 0 !important;
    list-style: none;
    display: flex;
    width: 100% !important;
    padding: 1rem 0 !important;
    justify-content: center;
    border-bottom: 1px solid #F2F4F9;
  }

  .navmenu a {
    font-size: 1em;
    color: white;
  }

  .lan {
    display: flex;
    gap: 1rem;
  }
}

/*---End Mobile version---*/
/*=======END NAVIGATION==========*/