<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

	.pgd-container2 .pgd-gallery2 a img {
  float: left;
  width: 100px;
  height: 100px;
    overflow:hidden;
  border: 2px solid #fff;
  position: relative;
    transition: all .5s ease-out;
}

.pgd-gallery2 img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
  }

.pgd-container2 .pgd-gallery2 a:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  transition: all .2s ease-out;
  z-index: 1;
  
}

.pgd-clear2 {
  clear: both;
  float: none;
  width: 100%;
}
	


/******************************************************************************************************* Responsive */

@media screen and (max-width: 800px) {
	
.pgd-container2 .pgd-gallery2 a img {
  float:right;
  width: 50px;
  height: 50px;
}
	
	}
	</pre></body></html>