.fl-wrapper {
    z-index: 999 !important;
}
.biru{
    color: blue !important;
}

/* .btn.btn-black-primary {
    background: #000000;
    color: aliceblue;
}
  
.btn.btn-black-primary:hover {
    background: #4d4c4c;
    color: aliceblue;
} */

.btn.btn-black-primary {
    background: #000; /* Black background for the button */
    color: white; /* White text color */
    padding: 12px 30px; /* Padding for the button */
    border-radius: 8px; /* Rounded corners like in the image */
    position: relative; /* Necessary for positioning of the gradient */
    font-weight: bold; /* Bold text */
    transition: all 0.3s ease; /* Smooth transition effect */
  }
  
  .btn.btn-black-primary::after {
    content: ''; /* Creates a pseudo-element for the bottom gradient */
    position: absolute;
    bottom: -4px; /* Place the gradient at the bottom */
    border-radius: 0px 0px 10px 10px ; 
    left: 0;
    right: 0;
    height: 10px; /* Set the height of the bottom gradient */
    background: linear-gradient(90deg, #ff7c00, #9c1eeb); /* Gradient from orange to purple */
    z-index: -1; /* Keeps the gradient behind the button */
  }
  
  .btn.btn-black-primary:hover {
    background: #333333; /* Darken the background color when hovered */
    color: white;
  }
  .btn.btn-black-primary:hover::after {
    background: linear-gradient(90deg, #9c1eeb, #ff7c00); /* Change the gradient color when hovered */
  
}

.nav-link.active {
    background: #000 !important; /* Black background for the button */
    color: white !important; /* White text color */
    padding: 12px 30px; /* Padding for the button */
    border-radius: 8px; /* Rounded corners like in the image */
    position: relative; /* Necessary for positioning of the gradient */
    font-weight: bold; /* Bold text */
    transition: all 0.3s ease; /* Smooth transition effect */
  }
  
  .nav-link.active::after {
    content: ''; /* Creates a pseudo-element for the bottom gradient */
    position: absolute;
    bottom: -6px; /* Place the gradient at the bottom */
    border-radius: 0px 0px 10px 10px ; 
    left: 0;
    right: 0;
    height: 12px; /* Set the height of the bottom gradient */
    background: linear-gradient(90deg, #ff7c00, #9c1eeb); /* Gradient from orange to purple */
    z-index: -1; /* Keeps the gradient behind the button */
  }
  
  .nav-link.active:hover {
    background: #333333; /* Darken the background color when hovered */
    color: white;
  }
  .nav-link.active:hover::after {
    background: linear-gradient(90deg, #9c1eeb, #ff7c00); /* Change the gradient color when hovered */
  
}

.text-pink{
    color: #dd296b !important;
}

.text-h1 {
  font-size: 4.4rem;
}

.text-h2 {
  font-size: 3rem;
}

.p1{
    font-size: 1.2rem;
    line-height: 1.75rem;
}

.aspect-video {
  aspect-ratio: 16/9;
  object-fit: cover;
}
  