body {
  box-sizing: border-box;
  margin:0px;
  padding: 0px;
  overflow-x: hidden;
}
.row > .column {
  margin: .5%; 
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
.column {
  float: left;
  width: 24%;
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 10px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #363333ab;
}
.modal-content {
	/*text-align:center;*/
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 70%;
  max-width: 1000px;
}

.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}
.gallerySlides {
  display: none;
}
.gallerySlides img{
  padding:0px 0px 0px 230px;
}
.cursor {
  cursor: pointer;
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  background: #00000066;
}
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.numbertext {
    color: #171717;
    font-size: 20px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    font-weight: bold;
}
.column img{
    max-height: 160px;
    height: 160px;
    object-fit: contain;
    padding: 5px;
    border: 1px solid #d9d9d9;
}
.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}
img.hover-shadow {
  transition: 0.3s;
}
.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/*Navigation*/
.nav ul{
	list-style:none;
	background-color:#032c74 ;
	text-align:center;
	padding:0px;
	margin:0px;
}

.nav li{
	font-size:1.2em;
	line-height:40px;
	text-align:left;
}

.nav a{
	text-decoration:none;
	color:#fff;
	display:block;
	padding-left:15px;
	border-bottom:1px solid #888;
	transition: .3s;
}
.nav a:hover{
	background-color:#005f5f;
}
.nav a.active{
	background-color:#aaa;
	color:#444;
	cursor:default;
}

.nav li li {
	font-size:.8em;
}

.nav img{
	float:left;
	width:65px;
	height:65px;
}


/*style for large screen*/
 
@media screen and (min-width:650px){
	.nav li{
		width:300px;
		border-bottom:none;
		height:65px;
		line-height:50px;
		font-size:1.4em;
		display:inline-block;
		margin-right:-4px;
		}
		
	.nav a{
		border-bottom:none;
	}
	
	.nav > ul >li {
		text-align:center;
	}
	
	.nav > ul >li > a {
		padding-left:0;
	}

	 /* sub menu style*/
	.nav li ul{
		position:absolute;
		display:none;
		width:inherit;
	}
	
	.nav li:hover ul{
		display:block;
	}
	
	.nav li ul li{
		display:block;
	}
}