body {
  margin: 0;
  font-family: Arial, sans-serif, 'Times New Roman', Times, serif;
}

nav {
  background-color: #ffffff;
  color: #fff;
  padding: 10px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.custom-navbar {
  background-color: rgb(109, 109, 114);
  color: #fff;
}

.navbar-brand img {
  max-height: 100pt; /* Adjust the height of the logo as needed */
  margin: 0; /* Remove any margins */
  padding: 0; /* Remove any padding */
}

.navbar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.navbar-menu li {
  margin-left: 20px;
}

.navbar-menu li:first-child {
  margin-left: 0;
  color: #000000;
}

.navbar-menu a {
  color: #000000;
  text-decoration: none;
  font-size: 18px;
}

.navbar-nav .nav-link {
  color: #000000; /* Set the desired font color */
}

.navbar-nav .nav-link:hover {
  color: #5a5953; /* Set the desired hover font color */
}

/* Responsive Navigation */
@media screen and (max-width: 768px) {
  .navbar-menu {
    flex-direction: column;
  }

  .navbar-menu li {
    margin-left: 0;
    margin-bottom: 10px;
  }

  .navbar-menu li:first-child {
    margin-top: 10px;
  }
}

.navbar-brand img {
  filter: invert(0%);
}

body {
  /* margin: 0; */
  padding: 0;
  /* font-family: Arial, sans-serif; */
}

.image-container {
  position: relative;
  width: 100%;
  height: 92vh; /* Set the height of the image container */
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Set the overlay color and opacity */
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay-text {
  color: #c7b5b5;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
}





