.logo-container {
  width: 100%;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0; /* Optional background color */
}
.logo-container img {
  max-width: 50%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain; /* Ensures the logo fits nicely within the container */
}

@media (max-width: 768px) {
  .logo-container {
    height: 20vh;
  }
}
/* main.scss */
.banner-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.banner-container .banner-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner-container .banner-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* Ensures the image covers the container without distortion */
  filter: brightness(0.7); /* Adds a darker overlay to make text stand out */
  object-fit: cover; /* Ensures the image covers the container without distortion */
  -o-object-fit: inherit;
     object-fit: inherit;
}
.banner-container .banner-wrapper .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
.banner-container .banner-wrapper .content h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
  color: #fff;
  text-transform: uppercase;
}
.banner-container .banner-wrapper .content p {
  font-size: 1.2em;
  margin-bottom: 1.5em;
}
.banner-container .banner-wrapper .content .email-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5em;
  flex-direction: row;
  gap: 0.5em;
}
.banner-container .banner-wrapper .content .email-container .email-icon {
  width: 1.5em;
  height: 1.5em;
  display: flex;
  align-items: center;
}
.banner-container .banner-wrapper .content .email-container span a {
  color: #fff;
}

@media (max-width: 768px) {
  .banner-container {
    height: 100vh;
  }
  .banner-container .banner-wrapper .content {
    width: 90%;
  }
  .banner-container .banner-wrapper .content h1 {
    font-size: 2em;
  }
  .banner-container .banner-wrapper .content p {
    font-size: 1em;
  }
}
/* main.scss */
@font-face {
  font-family: "freight-bold";
  src: url("../public/fonts/Freight Neo Pro Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f5f5f5; /* Light background color */
  font-family: "freight-bold"; /* Apply custom font */
  line-height: 1.6;
}
body ::-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1em;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=main.css.map */