/* --- HEADER STYLE --- */
.newLanding-header{
  max-width: 100%;
  padding: 0;
}
.newLanding-header.sticky{
  padding: 0;
}
.newLanding-header .header-container{
  padding: 10px;
  display: flex;
  justify-content: center;
  position: relative;
  max-width: 1914px;
  margin: 0 auto;
  transition: all .5s;
}
.newLanding-header .header-container .header-container__logo .logo-img{
  transition: all .5s;
  width: 120px;
  height: 60px;
}
.newLanding-header.sticky .header-container .header-container__logo .logo-img{
  width: 90px;
  height: 45px;
}
/* Contact btn */
.newLanding-header .header-container .header-container__btn-contact, .newLanding-main .mobile-container .mobile-container__btn-contact{
  display: none;
  border: 0.7px solid #041C2C;
  border-radius: 100px;
  text-decoration: none;
  padding: .7rem 1rem;
  flex: 0 1 auto;
  text-align: center;
  margin-left: auto;
  transition: .8s;
  margin-bottom: 1rem;
  height: auto;
  min-height: 100%;
}
.newLanding-header .header-container .header-container__btn-contact:hover {
  background-color: #041C2C;
}
.newLanding-header .header-container .header-container__btn-contact span, .newLanding-main .mobile-container .mobile-container__btn-contact span{
  color: #041C2C;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.28px;
  transition: .8s;
}
.newLanding-header .header-container .header-container__btn-contact:hover span {
  color: #fff;
}
/* Language selector */
.newLanding-header .header-container.with-lang {
  display: grid;
  align-items: center;
  grid-template-columns: 0 50% 50%;
}
.newLanding-header .header-container.with-lang .header-container__logo {
  align-self: start;
}
.langMenu {
  justify-self: end;
}
.langMenu a {
    color: inherit;
    text-decoration: unset;
}

.langMenu .active {
    font-weight: bolder;
}
