.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 */
  -o-object-fit: inherit;
     object-fit: inherit;
  filter: brightness(0.8); /* Adds a darker overlay to make text stand out */
}
.banner-container .banner-wrapper .hero_content_wrapper {
  position: absolute;
  width: 100%;
  top: 10%;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 7em;
}
.banner-container .banner-wrapper .hero_content_wrapper .header_wrapper {
  display: flex;
}
.banner-container .banner-wrapper .hero_content_wrapper .header_wrapper .col2 {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  margin-inline: 4em;
}
.banner-container .banner-wrapper .hero_content_wrapper .header_wrapper .col2 h2 {
  font-size: 4.4em;
  line-height: 50%;
  color: #FFF;
  font-family: "freight-bold";
}
.banner-container .banner-wrapper .hero_content_wrapper .header_wrapper .col2 .yellow {
  color: #ffb600;
}
.banner-container .banner-wrapper .hero_content_wrapper .content {
  text-align: center;
  color: #fff;
}
.banner-container .banner-wrapper .hero_content_wrapper .content h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
  color: #fff;
  text-transform: uppercase;
}
.banner-container .banner-wrapper .hero_content_wrapper .content p {
  font-size: 1.2em;
  margin-bottom: 1.5em;
}
.banner-container .banner-wrapper .hero_content_wrapper .content .button {
  display: inline-block;
  padding: 0.75em 1.5em;
  margin: 0.5em;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
  text-transform: uppercase;
}
.banner-container .banner-wrapper .hero_content_wrapper .content .button:hover {
  background-color: #0056b3;
  border: 1px solid #0056b3;
}

@media (max-width: 768px) {
  .banner-container {
    height: 80vh;
  }
  .banner-container .banner-wrapper .hero_content_wrapper {
    gap: 5em;
  }
  .banner-container .banner-wrapper .hero_content_wrapper .header_wrapper .col2 {
    margin-inline: 2em;
  }
  .banner-container .banner-wrapper .hero_content_wrapper .header_wrapper .col2 h2 {
    font-size: 2.444em;
  }
  .banner-container .banner-wrapper .hero_content_wrapper .content h1 {
    font-size: 2em;
  }
  .banner-container .banner-wrapper .hero_content_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;
}

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

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

p {
  margin-bottom: 1em;
}

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