
/* TITLE */
.big-button {
   font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/raleway/v36/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCFPrEHJA.woff2) format('woff2');
  font-size: 25px !important;
 font-weight: 400;
  padding: 6px 6px !important;
  line-height: 1.4;
  display: inline-block;
  text-decoration: none;
}

.classy-hover {
  background-color: transparent;
  color: #333;
  transition: all 0.4s ease;
  position: relative;
}

.classy-hover:hover {
 
  color: #111;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.2);
}

/* Optional elegant underline animation */
.classy-hover::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 3px;
  bottom: 0px;
  left: 50%;
  background-color: #555;
  transition: width 0.4s ease, left 0.4s ease;
}

.classy-hover:hover::after {
  width: 100%;
  left: 0%;
}
/* TITLE */










/* Image gallery 01 */
.custom-gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
 
}

.custom-gallery .w3-third {
  width: 33.33% !important;
  padding: 0;
  margin: 0;
}

.custom-gallery .w3-third img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 2px;
  border-radius: 0;
}


img {
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin:0px;
}
img:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  cursor: pointer;
}

.w3-bar-item.w3-black {
  background-color: #222 !important;
  color: #fff !important;
  font-weight: lighter;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.w3-bar-item {
  font-size: 14px !important;
  padding: 12px 20px !important;
  border-radius: 4px;
}
.w3-bar-item:hover {
  background-color: #555 !important;
  color: white !important;
}
/* Image gallery 01 */








.aboveshorts {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
}

.aboveshorts video {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Shorts black 01 */

.video-container {
  padding: 0 30px;
  max-width: 1400px;
  margin: 0 auto;
  background-color: #111;
  box-sizing: border-box;

}

/* Both grids setup */
.video-grid,
.extra-videos {
  display: grid; 
  gap: 20px;
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Large screens: 4 columns */
@media (min-width: 901px) {
  .video-grid,
  .extra-videos {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Small/medium screens: 2 columns with min width */
@media (max-width: 900px) {
  .video-grid,
  .extra-videos {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 10px;
  }
}

/* Extra small screens: less padding and full width */
@media (max-width: 600px) {
  .video-container {
    padding: 0 10px;
    max-width: 100%;
  }
}

/* Video styling */
.video-grid video,
.extra-videos video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  display: block;
}

/* Hide extra videos initially */
.extra-videos {
  display: none;
}

/* Show extra videos when toggled */
#load-more-toggle:checked + .extra-videos {
  display: grid;
}

/* Load More button container */
.load-more-wrapper {
  text-align: center;
  margin-top: 20px;
}

/* Load More button styling */
.load-more-btn {
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 16px;
  font-size: 1em;
  cursor: pointer;
  background-color: #043a70;
  color: white;
  border: none;
  border-radius: 4px;
  text-transform: none;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}

.load-more-btn:hover {
  background-color: #1a242f;
}

/* Fix fullscreen video object-fit */
video:fullscreen {
  object-fit: contain !important;
}

/* Shorts black 01 */








/* Services Smallest screen */

.custom-flex {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center; /* centers the pair horizontally on large screens */
  gap: 12px; /* optional spacing between columns */
}

.custom-half {
  width: 280px; /* fixed width for each column */
}

@media (max-width: 550px) {
  .custom-flex {
    overflow-x: auto; /* allows horizontal scrolling on small screens */
  }

}

/* Services Smallest screen */