/* -------------------------------------------------------------------------- */
/*                                Falcon Button                               */
/* -------------------------------------------------------------------------- */
/* prettier-ignore */

/*# sourceMappingURL=user.css.map*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@media (min-width: 1200px) {
  .text-justify {
    line-height: 1.6;
    hyphens: auto !important;
    word-break: normal;
  }
}
.no-wrap {
  white-space: nowrap;
}

.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.footer {
  flex-shrink: 0;
}

.section {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.navbar {
  background-color: white;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.navbar-scrolled {
  background-color: rgba(152, 161, 168, 0.671); /* 50% opacity */
}

body {
  font-family: 'poppins', sans-serif;
}
.text-header {
  color: rgb(84 159 237);
}

.btn-outline-scanbox {
  --falcon-btn-color: rgb(84 159 237);
  --falcon-btn-border-color: rgb(84 159 237);
  --falcon-btn-hover-color: #fff;
  --falcon-btn-hover-bg: rgb(84 159 237);
  --falcon-btn-hover-border-color: rgb(84 159 237);
  --falcon-btn-focus-shadow-rgb: 44, 123, 229;
  --falcon-btn-active-color: #fff;
  --falcon-btn-active-bg: rgb(84 159 237);
  --falcon-btn-active-border-color: rgb(84 159 237);
  --falcon-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --falcon-btn-disabled-color: rgb(84 159 237);
  --falcon-btn-disabled-bg: transparent;
  --falcon-btn-disabled-border-color: rgb(84 159 237);
  --falcon-gradient: none;
}

.agb-list li {
  counter-increment: section;
}

.agb-list h3::before {
  content: counter(section) '. ';
}

html,
body {
  scroll-behavior: smooth;
  overflow: auto;
}

.card-body-hover {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  backface-visibility: hidden;
}

.card-image {
  width: 70%;
  height: auto;
  object-fit: cover;
}

.nav-link {
  color: #302c2cd1;
  padding: 0.5rem 1rem;
  text-transform: capitalize;
  transition: color 0.3s ease;
  margin-right: 1rem;
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #549fed, #0d4d92);
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.nav-link:hover,
.nav-link.active {
  color: #549fed;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .navbar {
    padding: 1rem 1rem;
  }

  .nav-link {
    padding: 1rem 1rem;
  }
}

.footer-list {
  display: flex;
  flex-wrap: wrap;
}

.section-background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 700px;
}

.custom-table {
  width: 100%;
}

.custom-table td {
  vertical-align: top;
  padding: 5px 0 10px 0;
}

.custom-table td:first-child {
  width: 350px;
}


.kontact-background{
  background-image: url('/src/assets/img/kontactBG.png') !important;
  background-size: cover; /* Adjusts the background image to cover the entire page */
  background-attachment: fixed; /* Keeps the background image fixed during scroll */
  background-position: center; /* Centers the background image */
  min-height: 100vh;
  width: 100vw;
}

