/* --- HEADER STYLE --- */
.newLanding-header{
  max-width: 100%;
  padding: 0;
}
.newLanding-header.sticky{
  padding: 0;
}
.newLanding-header .header-container{
  padding: 2rem;
  display: flex;
  justify-content: center;
  position: relative;
  max-width: 1914px;
  margin: 0 auto;
  transition: all .5s;
}
.newLanding-header.sticky .header-container{
  padding: 1rem 2rem;
}
/* Logo */
.newLanding-header .header-container .header-container__logo{
  flex: 0 1 auto;
}
.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;
}
