body {
  font-family: 'Karla', sans-serif;
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #ffffff;
  padding-bottom: 75px; }
  @media (min-width: 768px) {
    body {
      padding-bottom: 110px; } }

.navbar-brand {
  margin-right: 0; }
  .navbar-brand img {
    height: 21px; }

.navbar-dark {
  padding-top: 35px;
  padding-bottom: 35px; }
  .navbar-dark .navbar-text {
    color: #ffffff;
    opacity: 1;
    padding: 0 20px;
    border-right: 1px solid #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-align: center; }
    .navbar-dark .navbar-text:last-child {
      border-right: 0; }
  @media (max-width: 767px) {
    .navbar-dark {
      padding-bottom: 0; } }

.page-title {
  font-size: 80px;
  font-weight: bold;
  margin-bottom: 6px; }
  @media (max-width: 767px) {
    .page-title {
      font-size: 35px;
      margin-bottom: 14px; } }

.page-description {
  max-width: 465px;
  font-size: 18px;
  margin-bottom: 59px; }
  @media (max-width: 767px) {
    .page-description {
      font-size: 14px; } }

p {
  font-size: 14px;
  margin-bottom: 21px; }

.footer-social-links .social-link {
  display: inline-block;
  text-align: center;
  line-height: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #000000;
  margin-right: 16px;
  transition: all 0.3s ease-in-out; }
  .footer-social-links .social-link:last-child {
    margin-right: 0; }
  .footer-social-links .social-link:hover {
    text-decoration: none;
    background-color: #000000;
    color: #ffffff; }

/*# sourceMappingURL=bd-coming-soon.css.map */


.navbar-brand img {
  height: 50px; /* Increase logo size */
}

.navbar-text {
  white-space: nowrap; /* Prevent text wrapping */
  font-size: 14px; /* Adjust size for mobile readability */
  margin: 0 10px; /* Add spacing between text */
}

@media (max-width: 767px) {
  .navbar-text {
      font-size: 12px; /* Slightly smaller font on mobile */
  }
}

@media (max-width: 991px) { /* For tablets and smaller screens */
  .navbar-text {
      display: block; /* Stack text vertically */
      text-align: left; /* Align text to the left */
      margin: 5px 0 0; /* Add some space below the logo */
  }

  .navbar-brand {
      margin-bottom: 10px; /* Add spacing below the logo */
  }
}

.navbar {
  display: flex;
  flex-direction: row; /* Default: horizontal layout */
  align-items: center;
}

.navbar-text-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

@media (max-width: 991px) { /* For tablets and smaller screens */
  .navbar {
      flex-direction: column; /* Stack items vertically */
      align-items: flex-start; /* Align to the left */
      text-align: left;
  }

  .navbar-text-container {
      flex-direction: column; /* Stack text vertically */
      margin-top: 10px; /* Space between logo and text */
      align-items: flex-start; /* Ensure text is aligned to the left */
  }

  .navbar-text {
      margin: 5px 0; /* Add spacing between the texts */
      font-size: 14px; /* Adjust font size for mobile */
  }

  .navbar-text:last-child {
      border-bottom: 1px solid #ffffff; /* Add line below email */
      padding-bottom: 5px; /* Add space below the text */
  }

  .navbar-brand {
      margin-bottom: 10px; /* Add spacing below the logo */
  }
}

