.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding: 10px 0px;
  background-color: #f8f9fa;
  height: 120px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000;
  position: relative;
}
.header-container-logo {
  font-size: 24px;
  color: #343a40;
  font-family: "fineday", sans-serif;
  position: relative;
  width: 12%;
}
.header-container-logo img{
  position: absolute;
  top: -18px;
  left: 60px;
  width: auto;
  height: 130px;
  object-fit: cover;
}

.header-container-logo2 {
  font-size: 24px;
  color: #343a40;
  font-family: "fineday", sans-serif;
  position: relative;
  width: 20%;
}
.header-container-logo2 img{
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 130px;
}



.header-nav {
  display: flex;
  width: 70%;
  flex-direction: row;
  height: 100%;
  align-items: flex-end;
  justify-content: center;
}
.header-nav a {
  text-decoration: none;
  margin-right: 70px;
  color: #0054A0;
  font-size: 22px;
  font-family: sans-serif;
  cursor: pointer;
}

/* Remove .navbar-toggle styles */
.navbar-toggle,
.navbar-toggle-icon {
  display: none !important;
}

/* Responsive styles */
@media (max-width: 900px) {
  .header-container {
    height: 70px;
    padding: 8px 0px;
  }
  .header-container-logo img,
  .header-container-logo2 img {
    height: 60px;
    left: 0;
    top: 0;
    position: static;
  }
  .header-nav a {
    margin-right: 30px;
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 10px 0px;
    position: relative;
  }
  .header-container-logo {
    width: 100%;
    text-align: left;
    margin-bottom: 8px;
  }
  .header-container-logo img {
    height: 40px;
    position: static;
    left: 0;
    top: 0;
  }
  .header-container-logo2 {
    display: none;
  }
  .header-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    box-shadow: none;
    position: static;
    display: flex;
  }
  .header-nav a {
    margin: 8px 0;
    font-size: 18px;
    width: 100%;
  }
}
