.header-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.header-container-left img {
  width: 120px;
  object-fit: contain;
}


.header-container-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* Links style */
.header-container a {
  padding: 8px 16px;
  font-size: 1.3rem;
  color: rgb(14, 121, 178);
  text-decoration: none;
  text-align: center;
  border-radius: 6px;
  transition: color .5s ease;
  white-space: nowrap;
}

.header-container a.get-free-quote-link {
  background-color: rgb(14, 121, 178);
  color: white;
}

.header-container a:hover {
  color: rgb(190, 190, 190);
}


@media (max-width: 900px) {
  .header-container {
    flex-direction: column;
    align-items: center;
  }

  .header-container-right {
    flex-direction: row;

    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
  }

  .header-container a {
    padding: 10px;
  }
}