/*-- brand colours:
    gold (primary):
      #957343 / RGB - 149, 115, 67
    gold (secondary):
      #a89374 / RGB - 168, 147, 116
    off white:
      #e0e0e0 / RGB - 224, 224, 224
    grey:
      #54595f / RGB - 84, 89, 95
    off black:
      #141414 / RGB - 20, 20, 20
    black:
      #000000 / RGB - 0, 0, 0
    --*/

.pillar-card {
  padding: 35px; 
  background-color: rgba(20, 20, 20, 0.5); 
  border: 1px solid rgba(168, 147, 116, 0.5); 
  border-radius: 3px;
}

.card {
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: rgba(20, 20, 20, 0.7); 
  border: 1px solid rgba(168, 147, 116, 0.5); 
  border-radius: 3px;"
}

.card-img-top {
  width: 100%;
  height: auto;
}

.card-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-text {
  font-size: 1rem;
  margin-bottom: 15px;
}

#video-background {
  position: relative;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

#video-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the video covers the entire container */
  overflow: hidden;
}

.show-pc {
  display: block;
}

.show-mobile {
  display: none;
}

@media (max-width: 600px){
  .show-pc {
    display: none;
  }

  .show-mobile {
    display: block;
  }
}