@import url("https://api.fontshare.com/v2/css?f[]=archivo@100,200,300,400,500,600,700,800,900&f[]=clash-display@200,300,400,500,600,700&display=swap");

:root {
	--slide-width: min(25vw, 300px);
	--slide-aspect: 2 / 3;

	--slide-transition-duration: 800ms;
	--slide-transition-easing: ease;

	--font-archivo: "Archivo", sans-serif;
	--font-clash-display: "Clash Display", sans-serif;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#navbarNav li a{
    color: #fff;
}

.home{
    background-image: url('/assets/images/home.png');
    background-size: cover;
    background-position: center;
    height: 90vh;
    width: 100%;
    border-radius: 10px;
    object-fit: contain;
}

.text-decoration{
	text-decoration: none
}


/* --------------------slider */
@import "https://fonts.googleapis.com/css?family=Open+Sans:800&display=swap";
 body {
	 width: 100%;
	 margin: 0;
	 padding: 0;
	 font-family: open sans;
	 background: #f8f8f8;
}
 h3 {
	 text-align: center;
	 margin: 6% auto;
	 font-size: 1.8rem;
	 font-weight: 800;
	 color: #444;
}
 .slider {
	 display: flex;
	 max-height: auto;
	 overflow-y: hidden;
	 overflow-x: scroll !important;
	 padding: 16px;
	 transform: scroll(calc(var(--i,0)/var(--n)*-100%));
	 scroll-behavior: smooth;
}
 .slider::-webkit-scrollbar {
	 height: 5px;
	 width: 150px;
	 display: none;
}
 .slider::-webkit-scrollbar-track {
	 background: transparent;
}
 .slider::-webkit-scrollbar-thumb {
	 background: #888;
}
 .slider::-webkit-scrollbar-thumb:hover {
	 background: #555;
}
 .slider img:hover {
	 transform: scale(1.05);
	 box-shadow: 10px 10px 10px rgba(0,0,0,0.15);
}
 .slide {

	 position: relative;
}
 .slide img {
	 height: 100%;
	 width: 250px;
	 margin: 0 10px;
	 object-fit: cover;
	 border-radius: 15px;
	 cursor: pointer;
	 transition: .25s ease-in-out;
}
 .control-prev-btn {
	 position: absolute;
	 top: 280%;
	 left: 0;
	 background-color: rgba(255,255,255,0.55);
	 height: 100px;
	 line-height: 100px;
	 width: 45px;
	 text-align: center;
	 box-shadow: 0 1px 3px #888;
	 user-select: none;
	 color: #444;
	 cursor: pointer;
}
 .control-next-btn {
	 position: absolute;
	 top: 280%;
	 right: 0;
	 background-color: rgba(255,255,255,0.55);
	 height: 100px;
	 line-height: 100px;
	 width: 45px;
	 text-align: center;
	 box-shadow: 0 1px 3px #888;
	 user-select: none;
	 color: #444;
	 cursor: pointer;
}
.slide img.zoomed{
	  width: 500px;
    height: 600px;
    position: fixed;
    left: 25%;
    top: 0%;
    z-index: 1000;
		transform: scale(1) translatey(0) !important; 
	
}
.overlay{
		position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,.45);
    top: 0;
		display: none;
}
.overlay.active{
	display: block;
}
 @media only screen and (max-width: 420px) {
	 .slider {
		 padding: 0;
	}
	 .slide {
		 padding: 16px 10px;
	}
	 .slide img {
		 margin: 0;
	}
	 .control-prev-btn {
		 top: 37%;
	}
	 .control-next-btn {
		 top: 37%;
	}
}





.slider-wrapper {
	position: relative;
  }
  .slider-wrapper .slide-button {
	position: absolute;
	top: 50%;
	outline: none;
	border: none;
	height: 50px;
	width: 50px;
	z-index: 5;
	color: #fff;
	display: flex;
	cursor: pointer;
	font-size: 2.2rem;
	background: #000;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transform: translateY(-50%);
  }
  .slider-wrapper .slide-button:hover {
	background: #404040;
  }
  .slider-wrapper .slide-button#prev-slide {
	left: -25px;
	display: none;
  }
  .slider-wrapper .slide-button#next-slide {
	right: -25px;
  }
  .slider-wrapper .image-list {
	position: relative;
	display: grid;
	grid-template-columns: repeat(20, 1fr);
	gap: 18px;
	font-size: 0;
	list-style: none;
	margin-bottom: 30px;
	overflow-x: auto;
	scrollbar-width: none;
  }
  .slider-wrapper .image-list::-webkit-scrollbar {
	display: none;
  }
  .slider-wrapper .image-list .image-item {
	width: 220px;
	height: 570px;
	object-fit: contain;
	display: block;
  
  }
  .container .slider-scrollbar {
	height: 5px;
	width: 100%;
	display: flex;
	align-items: center;
  }
  .slider-scrollbar .scrollbar-track {
	background: #ccc;
	width: 100%;
	height: 2px;
	display: flex;
	align-items: center;
	border-radius: 4px;
	position: relative;
  }
  .slider-scrollbar:hover .scrollbar-track {
	height: 4px;
  }
  .slider-scrollbar .scrollbar-thumb {
	position: absolute;
	background: #000;
	top: 0;
	bottom: 0;
	width: 50%;
	height: 100%;
	cursor: grab;
	border-radius: inherit;
  }
  .slider-scrollbar .scrollbar-thumb:active {
	cursor: grabbing;
	height: 8px;
	top: -2px;
  }
  .slider-scrollbar .scrollbar-thumb::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -10px;
	bottom: -10px;
  }
  /* Styles for mobile and tablets */
  @media only screen and (max-width: 1023px) {
	.slider-wrapper .slide-button {
	  display: none !important;
	}
	.slider-wrapper .image-list {
	  gap: 10px;
	  margin-bottom: 15px;
	  scroll-snap-type: x mandatory;
	}
	.slider-wrapper .image-list .image-item {
	  width: 280px;
	  height: 380px;
	}
	.slider-scrollbar .scrollbar-thumb {
	  width: 20%;
	}
  }
 


 /* ------------------Gallary */
 html {
	scroll-behavior: smooth;
  }
  
  ul.gallery {
	--numcolumns: 4;
	--gap: 0.25em;
	--size: calc(100vw / var(--numcolumns));
	display: grid;
	grid-template-columns: repeat(var(--numcolumns), 1fr);
	
	grid-template-rows: auto;
	gap: var(--gap);
	align-items: stretch;
	
	list-style: none;
  }
  
  ul.gallery > li {
	display: block;
	height: calc(var(--size) - var(--gap));
	position: relative;
  }
  
  ul.gallery > li.wide {
	grid-column: span 2;
  }
  
  ul.gallery > li.wider {
	grid-column: span 3;
  }
  
  ul.gallery > li.high {
	grid-row: span 2;
	height: auto; /* to undo the height */
  }
  
  ul.gallery > li > a.zoomout {
	display: none;
  }
  
  ul.gallery > li > a,
  ul.gallery > li > a > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  
  ul.gallery > li > a.zoomin:hover::after,
  ul.gallery > li > a.zoomin:focus::after {
	content: '';
	display: block;
	background: rgba(255, 255, 255, 0.2) url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgZmlsbD0ibm9uZSIgaGVpZ2h0PSIyNCIgc3Ryb2tlPSJjdXJyZW50Q29sb3IiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIyIiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSIxMSIgY3k9IjExIiByPSI4Ii8+PGxpbmUgeDE9IjIxIiB4Mj0iMTYuNjUiIHkxPSIyMSIgeTI9IjE2LjY1Ii8+PGxpbmUgeDE9IjExIiB4Mj0iMTEiIHkxPSI4IiB5Mj0iMTQiLz48bGluZSB4MT0iOCIgeDI9IjE0IiB5MT0iMTEiIHkyPSIxMSIvPjwvc3ZnPg==) no-repeat 50% 50%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
  }
  
  ul.gallery > li:focus-within,
  ul.gallery > li:target {
	overflow: visible;
	z-index: 1;
  }
  
  /* Make sure tile of active image is on top */
  ul.gallery > li:target {
	z-index: 2;
  }
  
  /* Hide zoom in link when the tile is targetted */
  ul.gallery > li:target > a.zoomin {
	display: none;
  }
  
  /* Show zoom out (close) link when the tile is targetted */
  ul.gallery > li:target > a.zoomout {
	display: block;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	position: fixed;
	z-index: 12;
  }
  
  /* Stretch out the image */
  ul.gallery > li > a.zoomout > img {
	object-fit: contain;
	padding: 1vw;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	position: fixed;
	z-index: 11;
	background: rgba(0, 0, 0, 0.8);
  }
  
  /* Put close link on top */
  ul.gallery > li:target > a.zoomout::after {
	content: 'Click or hit ESC to close';
	position: fixed;
	right: 1vw;
	bottom: 1vw;
	font-size: 1rem;
	color: #fff;
	z-index: 12;
  }



  #nav_ch{
	position: static;
  }


  




















  