.hero {
    position: relative;
    display: grid;
    place-items: center;
    max-height: 100vh;
    height: 100%;
    width: 100vw;
    margin: 0;
    background: #ccc;
}
.hero-content {
    z-index: 1;
    top: 1vh !important;
}
video.fullscreen {
    position: absolute;
    z-index: 0;
    object-fit: cover;
    width:100%;
    height:100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    &::-webkit-media-controls {
        display:none !important;
    }
}

.statistic p {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.statistic strong {
    display: block;
    font-size: 1.5rem;
    color: rgba(var(--ar-primary-rgb), var(--ar-text-opacity)) !important;
}

.statistic-blue p {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.statistic-blue strong {
    display: block;
    font-size: 1.5rem;
    color: #9abcff !important;
}

.icon-blue {
    color: #9abcff !important;
}

.icon-primary {
    color: #003399 !important;
}


.text-shadow-2 {
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.57), -3px -3px 10px rgb(0, 0, 0); font-weight: bolder;
}

.text-shadow-1 {
    text-shadow: 2px 2px 8px #00000036;
}

.section-placeholder {
    color: rgb(0, 51, 153) !important;
    font-size: calc(var(--ar-body-font-size) * 0.875);
    font-weight: 600;
}

  .feature-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  }

  .feature-card:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
  }

  .feature-card img {
    width: 60px; /* Adjust as needed */
  }

  .feature-card-title {
    font-size: 1.2rem; /* Adjust as needed */
    color: #333;
    font-weight: bold;
  }

  .feature-card-text {
    color: #666;
    font-size: 0.9rem; /* Adjust as needed */
  }

  .feature-heading {
    color: #666;
    margin-bottom: 2rem;
  }

  .bg-alternative {
      background-color: #00339912 !important;
  }

  .blur-edge {
  position: relative;
  overflow: hidden; /* Ensures that the pseudo-elements don't overflow outside the container */
}

/* Pseudo-elements for the blur effect on top and bottom */
.blue-blur-edge::before,
.blue-blur-edge::after {
content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  z-index: 2;
  background: linear-gradient(to top, rgb(213, 226, 247), #e5eaf5 95%);
}


.blur-edge::after {
  top: 0;
}

.blur-edge::before {
  bottom: 0;
  transform: rotate(180deg);
}

#pills-tab .nav-link.active {
    background-color: #fff;
}

#pills-tab .nav-item {
    min-width: 10vh;
    height: 75px;
}

#pills-tab #pills-profile-tab {
    width: 100%;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    border-radius: 0px !important;;
}

.case-card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}


#pills-tab .nav-link.active {
    background-color: #2654b0;
    color: white;
}

#pills-tab .nav-link {
    color: white;
}