.header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 60px;
  background-color: transparent;
  border-block-end: 1px solid transparent;
  transition: var(--transition-1);
  background: #fff;
  padding: 0;
  top: 0
}

.logo {
  height:40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width:799px) {
  .logo {
    height:30px;
  }
}
.logo img {
  max-height: 100%;
}

.header .btn {
  display: none;
}
.topRight {
  width: 42px;
  float: right;
  margin-right: 0;
  padding-top: 15px;
}

.lang-div {
  width: 70px;
  float: left;
  padding: 0;
}

.lang-div img {
  max-width: 100%;
}

.topNavIconDiv {
  position: relative;
  width: 40px;
  float: left;
  padding-top: 2px;
}

.headerlogin {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #000;
  letter-spacing: 1px;
  line-height: 100%;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  border: 0;
  display: inline-block;
  cursor: pointer;
  width: 75px;
  height: 26px;
  padding: 2px 2px 2px 2px;
  text-decoration: none;
  text-shadow: 0px 0px 0px #022147;
  text-transform: uppercase;
  background: #f9ad1c;
  box-shadow: 0px 0px 3.72px 0.28px rgba(0, 0, 0, 0.004);
}

@media (max-width:340px) {}

@media (max-width:300px) {}

.mobile-nav-button {
  width: 25px;
  position: absolute;
  margin: 3px 0 0 5px;
  right: 0;
  top: 0;
  z-index: 9999;
  cursor: pointer;
  height: 30px;
}

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

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

.mobile-nav-button .mobile-nav-button__line--1 {
  transform: rotate(45deg);
  top: 13px;
  position: absolute;
}

.mobile-nav-button .mobile-nav-button__line--2 {
  display: none;
}

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

.mobile-menu {
  display: block;
  width: 160px;
  right: -100%;
  height: 100vh;
  background: #c8cedd;
  position: absolute;
  z-index: 9998;
  transition: 0.6s ease;
  padding-top: 60px;
  top: 0;
  opacity: 0;
}

.navbar.activeNav {
  visibility: visible;
  transform: translateX(-160px);
  padding-right: 0;
  float: right;
}

.navbarInner {
  position: relative;
  width: 140px;
  height: 46px;
  border-radius: 5px;
  float: left;
  padding: 2px 10px;
  margin: 2px 5px 2px 10px;
  background: #263773;
}

.navbarInner .sideNavText {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: #fff;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: normal;
  line-height: 1.2;
  font-weight: 400;
  float: left;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.navbarInner img {
  max-height: 30px;
  float: right;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.navbarInnerAct {
  width: 140px;
  height: 46px;
  border-radius: 5px;
  float: left;
  margin: 5px 5px 5px 10px;
}

.navbarInner img {
  max-width: 140px;
  margin: 0 auto;
}

.navbarInnerAct img {
  max-width: 140px;
  margin: 0 auto;
}

.navbarInnerlarge {
  width: 134px;
  height: auto;
  border-radius: 5px;
  float: left;
  margin: 5px;
  background: #026e51;
}

.navbarInnerlarge {
  width: 134px;
  height: auto;
  border-radius: 5px;
  float: left;
  margin: 5px;
  background: #026e51;
}

.navTab {
  cursor: pointer;
}

.mobile-menu ul {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
}

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

.mobile-menu ul li a {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  text-align: center;
  text-decoration: none;
  color: #0e0e0e;
  font-weight: bold;
  overflow: hidden;
  position: relative;
}

.mobile-menu ul li a:after {
  content: "";
  background: #0e0e0e;
  width: 100%;
  height: 100%;
  position: absolute;
  right: -100%;
  top: 0;
  z-index: -1;
  transition: 0.4s ease;
}

.mobile-menu ul li a:hover {
  color: #fff;
}

.mobile-menu ul li a:hover:after {
  right: 0;
}

.navbarInner.active img {
  display: block;
  padding: 0;
  float: right;
}

.mobile-menu--open {
  right: 0;
  opacity: 1;
}