﻿/** Gallery Page**/
.CloseSlider{
	position:fixed;z-index:9999999999;left:auto;top:10px;right:10px; width:95px;height:50px;text-align:center
}
.GalDivHolder{
	width: 1000px;
	position: relative;
	text-align: center;
	margin-bottom: 20px;
	left: auto;
	right: auto;
	margin-left: auto;
	margin-right: auto;
}
.GalDivSpacer{
	width:100%;
	height:50px;
	position:relative;
	clear:left;
}
.GalThumbNailDiv{
	width: 225px;
	height: 300px;
	margin: 10px;
	display: inline-block;
	text-align: center;
	top: 20px;
	overflow: hidden;
	transition: transform 0.5s ease;
}
.GalThumbNailDiv:hover{
	transform: scale(1.1);
}
#GalImg, .GalImg {
  border-radius: 0px;
  cursor: pointer;
  cursor: hand;
  transition: 0.3s;
  width:auto;
  height:300px;
  border-radius: 3px;
}
#GalImg:hover {opacity: 0.7;}

/* Pop Gallery Full Screen Background*/
.GalFullScreen {
  display: none;
  position: fixed;
  z-index:9999999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color:rgba(6,3,1,0.9);
}
/* Pop GalleryImg Size*/
#GalImg01 {
  	margin: auto;
  	display: block;
	width: auto;
	height:auto;
	object-fit: cover;
	max-width: 100%;
    max-height: 100vh;
    animation-name: zoom;
  	animation-duration: 0.6s;

}
.Gallery-lrgImg {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}
.close {
  position: absolute;
  top: 10px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
/*1650 screen*/
@media only screen and (max-width : 1650px) {
	@-viewport {
		width: 1650px;
	}
	/* Image Text on Pop up */
	#GalleryText {
		font-size: 0.9em;
		text-transform: uppercase;
		letter-spacing: 1.6px;
	}
}
/*1250 screen*/
@media only screen and (max-width : 1250px) {
	@-viewport {
		width: 1250px;
	}
	/** Gallery Page**/
	.GalDivHolder{
		width:900px;
	}
	.GalThumbNailDiv{
		width: 195px;
		height: 260px;
	}
	#GalImg, .GalImg {
	  height: 260px;
	}
}
/*1000 screen*/
@media only screen and (max-width : 1000px) {
	@-viewport {
		width: 1000px;
	}
	/** Gallery Page**/
	.GalDivHolder{
		width:700px;
	}
	.GalThumbNailDiv{
		width: 150px;
		height: 200px;
	}
	#GalImg, .GalImg {
	  height:200px;
	}
}
/*768 screen*/
@media only screen and (max-width : 768px) {
	@-viewport {
		width: 768px;
	}
	/** Gallery Page**/
	.GalDivHolder{
		width:96%;
	}
	.GalThumbNailDiv{
		width:31%;
		height: 205px;
		margin: 3px;
	}
	#GalImg, .GalImg {
	  min-width: 180px;
	  width:auto;
	  height:240px;
	  min-height:240px;
	}
}
/*460 screen*/
@media only screen and (max-width : 460px) {
	@-viewport {
		width: 460px;
	}
	/** Gallery Page**/
	.GalDivHolder{
		width:98%;
	}
	.GalThumbNailDiv{
		width:31.5%;
		height: 170px;
		margin: 1px;
	}
	#GalImg, .GalImg {
	  min-width: 135px;
	  width:auto;
	  height:180px;
	  min-height:180px;
	}
	.close {
	  right: 10px;
	}
}
