.header-local {
  width: 100%; 
  padding: 0px;
  position: relative;
}

.header-container {
  max-width: 1400px; 
  margin: 0 auto;
}

.header-container.header-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-container.header-center {
  justify-content: center;
  display: flex;
  align-items: center;
  position: relative;
}

.logo-group {
  display: flex;
  align-items: center; 
}
 
.logo-found svg {
  width: 150px;
}

.logo-secondary-plus {
  margin: 0px 18px 0 15px;
}

.logo-secondary-plus svg {
  width: 15px;
  height: 15px;
}

.header-container.header-center .header-cta {
  position: absolute;
  right: 0;
}

.header-cta a {
  padding: 10px 30px;
  font-weight: 700;
  font-family: Greycliff;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transform 0.3s ease;
}

.header-cta a .link-text {
  position: relative;
  z-index: 1;
  margin-right: 5px;
}

.header-cta a svg {
  transition: transform 0.3s ease;
}

.header-cta a:hover {
  opacity: .9;
}

.header-cta a:hover svg {
  transform: translateX(8px);
}

@media (max-width: 768px) {
  
  .header-container.header-left-mobile {
    justify-content: space-between; 
  }
  
  .header-container.header-center-mobile {
    justify-content: center;
  }

  .logo-found svg {
    width: 110px;
    overflow: visible;
  }
  
}