/* mainNav */
.navWrapper{
  width:100%;
  height: auto;
  position: fixed;
  border-bottom: 1px solid #88aed6;
  
  background: rgba(0,30, 95,0);
  z-index: 999;
}

.navWrapper.enable{
  background: rgba(0, 30, 95,0);
}

.mainNav{
  width:100%;
  height:65px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
}

.compLogo{
  width:100%;
  height:auto;
  display: flex;
}

.compLogo img{
  width:100%;
  height:auto;
}

#topMenu{
  display: flex;
  /* background: blue; */
  height:auto;
}

.subWrapper{
  display: none;
}

.navLinks ul{
  margin-left:0;
}

.navLinks ul li{
  padding: 0 .5rem;
}

.navLinks.tw ul li{
  padding: 0 .8rem;
}

.langLink{
  padding-bottom: .5rem;
  justify-content: end;
}

.langLink ul{
  margin-left:0;
  justify-content: end;
}

.langLink ul li span{
  font-size: .8rem;
  color:#fff;
  padding:0 .2rem;
}

.navLinks ul li a:link,.navLinks ul li a:visited{
  font-size: .8rem;
  color:#fff;
  text-decoration: none;
  font-weight: 400;
}

.langLink ul li a:link,.langLink ul li a:visited{
  font-size: .8em;
  color:#fff;
  text-decoration: none;
  font-weight: 500;
}


.navLinks.tw ul li a:link,.navLinks.tw ul li a:visited{
  font-size: 1rem;
  font-weight: 500;
}

.navLinks ul li a.current, .langLink ul li a.current{
  
  position: relative;
}

.navLinks ul li a.current::after{
  content:"";
  width: 10px;
  height: 5px;
  display: block;
  position: absolute; 
  right:0;
  top:-5px;
  background-image: url("../images/navCurrentLink_dot.svg");
  background-repeat: no-repeat;
}

@media screen and (max-width:737px) {
  
  
    
    
    .navWrapper{
      width:100%;
      height: auto;
      position: fixed;
      border-bottom: 1px solid #88aed6;
      
      background: rgba(0,30, 95,0);
      z-index: 999;
    }
    
    .navWrapper.enable{
      background: rgba(0, 30, 95,0);
    }
    
    .mainNav{
      max-width: 100%;
      align-items: center;
      flex-direction: column;
    }
    
    .compLogo{
      width:100%;
      height:auto;
      display: flex;
    }
    
    .compLogo img{
      width:100%;
      height:auto;
    }
    
    
    #topMenu{
      display: none;
      width:100%;
      height:100%;
      position: fixed;
      background: #3f8cbc;
    }
    
    
    
    .langLink{
      margin:0 auto;
      border: 1px solid #fff;
      padding: .6rem .35rem;
      border-radius:20px;
      padding-bottom: auto;
      justify-content: center;
    }
    
    .langLink ul{
      justify-content: center;
    }
    
    .langLink ul li span{
      font-size: .8rem;
      color:#fff;
      padding:0 .2rem;
    }
    
    .navLinks{
      margin-bottom: 1.5rem;
    }
    
    
    .navLinks ul li{
      padding: 0rem .5rem;
      text-align: center;
      margin: 1rem 0;
    }
    
    .navLinks ul li:after{
      
      content: "•";
      width:16px;
      height: 16px;
      display: block;
      margin:0 auto;
      color:#fff;
      
    }
    
    .navLinks ul li:last-child:after{
      content:"";
    }
    
    .navLinks ul li a:link,.navLinks ul li a:visited, .langLink ul li a:link,.langLink ul li a:visited{
      font-size: .8rem;
      color:#fff;
      text-decoration: none;
      font-weight: 500;
    }
    
    .navLinks ul li a:link,.navLinks ul li a:visited{
      font-size: 1.1rem;
    }
    
    .navLinks ul li a.current, .langLink ul li a.current{
      
      position: relative;
    }
    
    .navLinks ul li a.current::after{
      content:"";
      width: 10px;
      height: 5px;
      display: block;
      position: absolute; 
      right:0;
      top:-5px;
      background-image: url("../images/navCurrentLink_dot.svg");
      background-repeat: no-repeat;
    }
    
    
    
    .mbileMenuHambuger {
      width: 40px;
      height: 60px;
      justify-content: space-between;
      align-items: center;
      position: relative;
      box-sizing: border-box;
    }
    
    .mbileMenuHambuger.closeBtn{
      width: 100%;
      justify-content: right;
      z-index: 33;
    }
    
    #nav-icon{
      width: 30px;
      height: 25px;
      position: relative;
      cursor: pointer;
    }
    
    
    #nav-icon span{
      display: block;
      position: absolute;
      height: 2px;
      width: 100%;
      background: #fff;
      border-radius: 0px;
      opacity: 1;
      left: 0;
      -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;
    }
    
    #nav-icon span:nth-child(1) {
      top: 0px;
    }
    
    #nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
      top: 12px;
    }
    
    #nav-icon span:nth-child(4) {
      top: 24px;
    }
    
    /* #nav-icon.open span:nth-child(1) {
      top: 18px;
      width: 0%;
      left: 50%;
    }
    
    #nav-icon.open span:nth-child(2) {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    
    #nav-icon.open span:nth-child(3) {
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }
    
    #nav-icon.open span:nth-child(4) {
      top: 18px;
      width: 0%;
      left: 50%;
    } */
    
    #close-nav-icon{
      width: 40px;
      height: 25px;
      position: relative;
      cursor: pointer;
    }
    
    
    #close-nav-icon span{
      display: block;
      position: absolute;
      height: 2px;
      width: 100%;
      background: #fff;
      border-radius: 0px;
      opacity: 1;
      left: 0;
      -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;
    }
    
    #close-nav-icon span:nth-child(1) {
      top: 0px;
    }
    
    #close-nav-icon span:nth-child(2),#close-nav-icon span:nth-child(3) {
      top: 12px;
    }
    
    #close-nav-icon span:nth-child(4) {
      top: 24px;
    }
    
    #close-nav-icon.open span:nth-child(1) {
      top: 18px;
      width: 0%;
      left: 50%;
    }
    
    #close-nav-icon.open span:nth-child(2) {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    
    #close-nav-icon.open span:nth-child(3) {
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }
    
    #close-nav-icon.open span:nth-child(4) {
      top: 18px;
      width: 0%;
      left: 50%;
    }
    
    
}