.text-danger{
    color: #38B6FF !important;
  }

  .btn-primary{
    background-color: #38B6FF !important;
    border-color: white !important;
  }

  .btn-primary:hover{
    background-color: #5271FF !important;
    color: white !important;
    border-color: white !important;
  }

  .nav-item > a:hover {
    color: #38B6FF !important;
  }

  .btn-outline-dark:hover {
    background: white;
  }

  .pe-logo {
    max-height: 36px;
  }

  @media (max-width: 480px) {
    .pe-logo {
      max-height: 28px;
    }

  }

.grid {
max-width: 1200px;
}

/* ---- grid-item ---- */

.grid-item {
  width: calc(33.33% - 10px); /*Adjust the item width and gap */
  /* width: calc(20% - 10px); */
  /* background-color: #fff; */
  margin-bottom: 10px; /* Adjust the margin between items */
  border: 2px solid #333;
  border-color: hsla(0, 0%, 0%, 0.5);
  border-radius: 5px; /* Adjust the border radius as needed */
  border: 2px solid #333; /* Add a border with a desired color */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /* Add a subtle shadow for depth */
}

/* Responsive layout for different screen sizes */
@media screen and (max-width: 768px) {
  .grid-item {
      width: calc(50% - 10px);
  }
}

@media screen and (max-width: 480px) {
  .grid-item {
      width: 100%;
  }
}

.vert_video {
      border-radius: 10px; /* Adjust the border radius as needed */
      border: 2px solid #333; /* Add a border with a desired color */
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); /* Add a subtle shadow for depth */
  }

.loader {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 24px;
  line-height: 100vh;
  z-index: 1000;
  display: none; /* Initially hide the loader */
}