header {
  overflow: hidden;
  /* background-color: #333; */
  position: fixed; /* Set the navbar to fixed position */
  top: 0; /* Position the navbar at the top of the page */
  width: 100%; /* Full width */
  padding-top: 32px;
  z-index: 9;
}

.logo {
  width: 244px;
  height: 90px;
  object-fit: contain;
  object-position: center;
}

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

header .container nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 88px;
  list-style-type: none;
}

header .container nav ul a {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}

header .container nav ul a:hover {
  color: var(--color-accent);
}

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

.cta-contact {
  background-color: #dc9d0d;
  border: 1px solid #dc9d0d;
  border-radius: 30px;
  padding: 10px 20px;
  color: #ffffff;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  transition: all 0.6s ease-in-out;
}

.cta-contact:hover {
  box-shadow: 6px 6px 30px rgba(236, 185, 3, 0.15);
}
