@charset "utf-8";
/* CSS Document */

  @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
  
  html, body {
	  margin: 0;
	  font-family: "Inter", sans-serif;
	  background-color: #000;
	  background-image: url('../img/logo.png'), url('../img/face.png'); /* Logo first, main background second */
	  background-repeat: no-repeat, no-repeat; /* Prevent repetition of both images */
	  background-attachment: scroll, scroll; /* Fix the main background but allow the logo to scroll */
	  background-size: 200px auto, 180px auto; /* Resize the logo, main background covers the viewport */
	  background-position: 20px 20px, 30px 100px; /* Add padding for logo, center main bg */
  }
  
  /* Optional: Add responsiveness for smaller screens */
  @media (max-width: 768px) {
	  html, body {
		background-size: 50px auto, 45px auto; /* Resize the logo, main background covers the viewport */
		background-position: 10px 10px, 15px 40px; /* Add padding for logo, center main bg */
	  }
	  body {
		  padding: 10px; /* Reduce padding for smaller screens */
	  }
  }
  
  body {
	  display: flex;
	  flex-direction: column; /* Stack content vertically */
	  align-items: center; /* Center content horizontally */
	  justify-content: flex-start; /* Ensure content starts at the top */
	  padding: 20px; /* Add some padding around content */
	  box-sizing: border-box;
	  overflow-x: hidden; /* Prevent horizontal scrolling issues */
  }
  
  .separators {
	  max-width: 1320px;
	  display: -webkit-box;
	  display: -webkit-flex;
	  display: -ms-flexbox;
	  display: flex;
	  -webkit-flex-direction: column;
	  -ms-flex-direction: column;
	  flex-direction: column;
	  text-align: center;
	  margin: 20px auto;
	  -webkit-align-items: center;
	  -webkit-box-align: center;
	  -ms-flex-align: center;
	  align-items: center;
  }
  
  .separators .visibility {
	display: none;  
  }
  
  .separators p {
	  margin-bottom: 0; 
  }
  
  @media (min-width: 900px) {
	.separators {
	  width: 62%;
	}
  }
  
  p {
	  font-size: 20px;
	  line-height: 32px;
	  font-style: normal;
	  font-weight: 400;
	  color: #E8E8F4;
  }
  
  a {
	text-decoration: none; /* Removes underline from link (optional) */
	color: #4492DF;
  }
  a:hover {
	 color: #6bd3e4;
  }
  
  h2 {
	font-size: 48px;
	font-weight: 600;
	line-height: 58px;
	letter-spacing: -2px;
	color: #4492DF;
  }
  h5 {
	font-size: 20px;
	line-height: 28px;
	letter-spacing: 0px;
	color:#4492DF;
	font-weight:500;  
  }
  
  /* Optional: Adjust for smaller screens */
  @media (max-width: 480px) {
	  h5 {
		  font-size: 16px;
	  }
	  h2 {
		  font-size: 26px;
		  line-height: normal;
		  margin-top: 50px;
	  }
  }
  
  .container {
	text-align: center;
	max-width: 932px;
	width: 100%;
	height: auto; /* Adjust height based on content */
	display: inline-block; /* Shrink container to the size of its contents */
	margin: 0 auto;
	transition: all 0.3s ease; /* Smooth animation when resizing */
  }
  
  .video-thumbnails {
	display: flex;
	flex-wrap: wrap; /* Allow thumbnails to wrap */
	justify-content: center;
	margin: 20px auto;
	gap: 15px; /* Space between thumbnails */
  }
  
  .thumbnail {
	position: relative;
	cursor: pointer;
	max-width: 200px;
	height: auto;
	overflow: hidden;
	border-radius: 10px;
	transition: transform 0.3s ease;
  }
  
  /* Optional: Adjust for smaller screens */
  @media (max-width: 768px) {
	  .thumbnail {
		  max-width: 100%;
		  flex: 1 1 calc(100% - 20px); /* On smaller screens, thumbnails take the full width */
	  }
  }
  
  .thumbnail:hover {
	transform: scale(1.05);
  }
  
  .thumbnail img {
	width: 100%;
	height: auto; /* Maintain aspect ratio */
	display: block;
	border-radius: 10px;
  }
  
  .thumbnail p {
	font-size: 14px;
	color: #fff;
	margin: 5px 0 0;
	text-align: center;
  }
  
  .thumbnail .number-overlay {
	  display: none;
  }
  
  #video-player {
	margin: 20px auto;
	width: 560px;
	height: 315px;
  }
  
  /* Modal Overlay */
  .modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1000; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
  }
  
  /* Modal Content */
  .modal-video {
	position: relative;
	margin: 10% auto; /* Center the modal */
	padding: 0;
	width: 80%; /* Adjust width as needed */
	height: auto; /* Adjust height based on content */
	max-width: 800px;
	background: #000; /* Background for the modal content */
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  /* Close Button */
  .close {
	position: absolute;
	top: 10px;
	right: 20px;
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	cursor: pointer;
	transition: color 0.3s ease;
  }
  
  .close:hover,
  .close:focus {
	color: #bbb;
  }
  
  /* iframe Styling */
  iframe {
	width: 100%;
	height: 450px;
	border: none;
	border-radius: 10px;
  }