@font-face {
  font-family: 'RobotoCondensed-Regular';
  src:	url('fonts/RobotoCondensed-Regular.ttf');
  src:	url('fonts/RobotoCondensed-Regular.ttf') format('embedded-opentype'), 
		url('fonts/RobotoCondensed-Regular.ttf') format('woff2'), 
		url('fonts/RobotoCondensed-Regular.ttf') format('woff'), 
		url('fonts/RobotoCondensed-Regular.ttf') format('truetype'); 
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'RobotoCondensed-Bold';
  src:	url('fonts/RobotoCondensed-Bold.ttf');
  src:	url('fonts/RobotoCondensed-Bold.ttf') format('embedded-opentype'), 
		url('fonts/RobotoCondensed-Bold.ttf') format('woff2'), 
		url('fonts/RobotoCondensed-Bold.ttf') format('woff'), 
		url('fonts/RobotoCondensed-Bold.ttf') format('truetype'); 
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'FSIndustrieVFStd';
  src:	url('fonts/webfonts/FSIndustrieVFStd.ttf');
  src:	url('fonts/webfonts/FSIndustrieVFStd.ttf') format('embedded-opentype'), 
		url('fonts/webfonts/FSIndustrieVFStd.woff2') format('woff2'), 
		url('fonts/webfonts/FSIndustrieVFStd.woff2') format('woff'), 
		url('fonts/webfonts/FSIndustrieVFStd.ttf') format('truetype'); 
  font-weight: normal;
  font-style: normal;
}
html,body{
	height:100%;
}
body{
	overflow:scroll;
	overflow-x:hidden;
	overflow-y:auto;
	font-family: 'FSIndustrieVFStd', arial;
}
body,
h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6,
p,.p{
	
	font-weight:normal;
}
.h1{
	font-size:28pt !important;
}
h1,.h1{
	font-size:24pt;
}
h2,.h2{
	font-size:22pt;
}
h3,.h3{
	font-size:20pt;
}
h4,.h4{
	font-size:18pt;
}
h5,.h5{
	font-size:16pt;
}
h6,.h6{
	font-size:14pt;
}
body, p, .p{
	font-size:12pt !important;
}
small, .small{
	font-size:9pt !important;
}
.text-overflow-line-1,
.text-overflow-line-2,
.text-overflow-line-3,
.text-overflow-line-4,
.text-overflow-line-5,
.text-overflow-line-6{
	display: block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.text-overflow-line-1{
	-webkit-line-clamp:1;
}
.text-overflow-line-2{
	-webkit-line-clamp: 2;
}
.text-overflow-line-3{
	-webkit-line-clamp: 3;
}
.text-overflow-line-4{
	-webkit-line-clamp: 4;
}
.text-overflow-line-5{
	-webkit-line-clamp: 5;
}
.text-overflow-line-6{
	-webkit-line-clamp: 6;
}
.btn, a, button, input[type=submit], input[type=button]{
	cursor:pointer !important;
	text-decoration:none !important;
}
table tr td{
	vertical-align: middle !important;
}
.alert-gray,
.bg-gray{
	background:#F1F1F1 !important;
} 
.alert-light,
.bg-light{
	background:#fafafa !important;
}
.alert-white,
.bg-white{
	background:#fff !important;
}
.text-gray{
	color:#999999 !important;
}
.text-light{
	color:#dddddd !important;
}
.object-cover-center{
    object-fit:cover;
	object-position:center;
    -o-object-fit: cover;
	-o-object-position: center;
}
.text-space-nowrape{
	white-space:nowrap;
}
.box-shadow-none{
    box-shadow: none !important;
    outline:none !important;
}
.bold{
  font-weight: bold !important;
}
.text-brown{
  color:#CA8E46 !important;
}
/* navbar................................................................................................................... */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
  transition: all 0.3s ease;
  z-index: 999 !important;
}

.logo img {
  height: 50px;
  transition: height 0.3s ease;
}
nav ul li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500 !important;
  text-decoration: none;
  color: white !important;
  padding: 10px 0px;
  margin: 5px 10px;	
  position: relative;
  transition: .3s !important;
}
nav ul li .active-page,
nav ul li a:hover {
  color: #B79879 !important;
  font-weight: 500 !important;
}
header{
  background-color: #e9e9e973;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.425);
}
header.fixed {
  background-color: #e9e9e9d8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.425);
}
header.fixed .logo img {
  height: 40px;
}
header.fixed nav ul li a {
  color: black !important;
}header.fixed nav ul li a:hover{
  color: #B79879 !important;
}
header.fixed nav ul li .active-page{
  color: #B79879 !important ;
}
.navbar{
	z-index: 9999999 !important;
} 
.navFixed{
	position: fixed !important;
	top: 0px;
	animation: navAnimate 0.5s;
} 
@keyframes navAnimate {
	0% {
	  top: -50px;
	}
	100% {
	  top: 0px;
	}
}

/* .nav-link {
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  color: #03413a;
  padding: 10px 0px;
  margin: 5px 10px;	
  position: relative;
  transition: .3s !important;
} 
.active-page,
.nav-link:hover {
  color: #B79879 !important;
  
}
.active-page::before,
.nav-link::before {
  transition: 300ms;
  height: 2px;
  content: "";
  position: absolute;
  background-color: #B79879;
  margin:0px 3px;
}
  
.active-page::before,
.nav-link-ltr::before {
  width: 0%;
  bottom: 5px;
  left: 0;
}
.active-page::before,
.nav-link-ltr:hover::before {
	width: 90%;
}*/ 

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown .dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	border-bottom: #027063 5px solid;
	border-radius: 0 0 15px 15px;
	min-width: 190px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;

}

.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

.dropdown:hover .dropdown-content {display: block;}

.menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
    color:#158377;
}
.line {
    fill: none;
    stroke: rgb(0, 0, 0);
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
/* ................................................................................................................ */
.banner{
  background-image:url('../media/banner.jpg');
  background-position: center center;
  background-size: cover;
  background-attachment: fixed !important;
  position: relative;
  z-index: 2 !important;
  min-height: 600px !important;
}
.banner:before{
  position: absolute;
  content: '';
  background: #00000000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1 !important;
}
.banner-2{
  background-image:url('../media/banner.jpg');
  background-position: center center;
  background-size: cover;
  background-attachment: fixed !important;
  position: relative;
  z-index: 2 !important;
  max-height: 450px !important;
}
.banner-2:before{
  position: absolute;
  content: '';
  background: #00000000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1 !important;
}
.footer-img{
  background-image:url('../media/footer.jpg');
  background-position: center;
  background-size: cover;
  background-attachment: fixed !important;
  position: relative;
  z-index: 2 !important;
  height: 400px !important;
}
.footer-img:before{
  position: absolute;
  content: '';
  background: #000000a2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1 !important;
}
.yearbook {
  font-weight: bolder;
  font-size: 120px !important;
  line-height: 70px !important;
}
.ani-txt{
  font-weight: bolder;
  font-size: 70px !important;
  line-height: 70px !important;
}
.ani-txt:after {
  content: "";
  animation: spin 8s ease infinite;
}
@keyframes spin {
  0% {  content: "KC";}
  50% { content: "Ardenne"}
  100% { content: "Wolmers";}
}
.heading{
  font-size: 48px !important;
  font-weight: bold !important;
}.image-container {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.hover-image {
  transition: transform 0.3s ease;
  width: 100%;
  display: block;
}

.image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0); /* Transparent by default */
  transition: background-color 0.3s ease;
  z-index: 1;
}

.image-container:hover::before {
  background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
}

.image-container:hover .hover-image {
  transform: scale(1.2); /* Zoom effect */
  z-index: 2;
}

.hover-button {
  position: relative;
  z-index: 4; /* Ensure it's above everything else */
}.hover-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  padding: 10px 25px;
  background-color: #fdfdfd;
  color: rgb(0, 0, 0);
  border: none;
  cursor: pointer !important;
  transition: opacity 0.3s ease;
  z-index: 5;
  white-space:nowrap;
}.hover-button:hover{
  background-color: #000000;
  color: white !important;
}
.image-container:hover .hover-button {
  display: block; /* Show the button on hover */
  opacity: 1;
}

.image-caption {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 45px;
  opacity: 0; /* Hidden by default */
  transition: opacity 0.3s ease;
  z-index: 3; /* On top of the image */
  text-align: center;
}.image-container:hover .image-caption {
  opacity: 1; /* Show on hover */
}
.year-hover-button {
  position: relative;
  z-index: 4; /* Ensure it's above everything else */
}
.year-hover-button {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  padding: 10px 25px;
  background-color: #fdfdfd;
  color: rgb(0, 0, 0);
  border: none;
  cursor: pointer !important;
  transition: opacity 0.3s ease;
  z-index: 5;
}
.year-hover-button:hover{
  background-color: #000000;
  color: white !important;
}
.image-container:hover .year-hover-button {
  display: block; /* Show the button on hover */
  opacity: 1;
}

.top-right-button {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  background-color: #ffffff;
  color: #000000;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  z-index: 6; /* Ensure it's above other elements */
}

.top-right-button:hover {
  background-color: #000000;
  color: white;
}

.index-num{
  font-size: 200px !important;
  color: #333333 !important;
}
.page-link {
  position: relative;
  display: block;
  color: #CA8E46 !important;
  background-color: #ffffff !important;
  border: 1px solid #CA8E46 !important;
  border-radius: 0px !important;
  padding: 10px 20px !important;
  transition: .5s !important;
}
.page-link:hover{
  position: relative;
  display: block;
  color: #ffffff !important;
  background-color: #CA8E46 !important;
  border: 1px solid #CA8E46 !important;
}
.page-link.current {
  color: #ffffff !important;
  background-color: #CA8E46 !important;
  border: 1px solid #CA8E46 !important;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color:#CA8E46 !important;
}.overlay-container{
  position: relative; 
  width: 100%; 
  height:500px
}.overlay{
  position: absolute;
   top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.nav-tabs {
  --bs-nav-tabs-border-color: #CA8E46 !important; 
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link{
 transition: .8s !important;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link:hover{
  color: #fff !important;
  background-color: #CA8E46;
  border:1px solid #CA8E46 !important;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: #fff !important;
  background-color: #CA8E46;
  border:1px solid #CA8E46 !important;
}
.value {
  font-size: 150px;
  display: block;
  font-weight: bold;
  color: #000000;
}
.card-shad{
  transition: .5s !important;
}
.card-shad:hover{
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}
.bg-update-student{
  background-image:url('../media/bg.jpg');
  background-size: cover ;
   background-attachment: fixed;
  min-height: 600px !important;
  /*background-repeat: no-repeat;
  background-position:top; */
  /* width: 100%;
  height: 100%; */
  /* position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0; */
}

.photo {
  height: 238px;
}
.photo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 230px;
  border-radius: 5px;
}
@media (min-width: 992px){}
@media screen and (max-width: 1200px){} 
@media screen and (max-width: 992px){
  .heading{
    font-size: 38px !important;
    font-weight: bold !important;
  }
  .index-num{
    font-size: 50px !important;
    color: #333333 !important;
  }
} 
@media screen and (max-width: 768px){
  .overlay-container{
    height:600px
  }
  .yearbook {
    font-weight: bolder;
    font-size: 100px !important;
    line-height: 70px !important;
  }
} 
@media screen and (max-width: 576px){
  .yearbook {
    font-weight: bolder;
    font-size: 70px !important;
    line-height: 70px !important;
  }
  .ani-txt{
    font-weight: bolder;
    font-size: 50px !important;
  }
}




