section.websites-list{
	padding: 75px 5%;
	background: var(--dark-blue-color);
}

section.websites-list .max-width{
	max-width:1440px;
}

section.websites-list .wrapper{
	display:flex;
	flex-wrap:wrap;
	margin:0 -1%;
}
section.websites-list div.website-entry{
	width: 14.666%;
	margin: 1%;
}
section.websites-list div.website-entry img{
	display:block;
	width:100%;
	height:auto;
}

section.websites-list a.image-link{
	display:block;
	transition:all 0.3s;
	border-radius:12px;
	overflow:hidden;
	box-shadow: 0 0 0 4px rgba(111, 208, 255,0);
}
section.websites-list a.image-link:hover{
	box-shadow: 0 0 0 4px var(--cyan-color);
}


@media screen and (max-width:600px){
	section.websites-list div.website-entry{
		width:31.333%!important;
	}
}

#imageModal {
	display: flex; 
	position: fixed; 
	z-index: 1; 
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%; 
	overflow: auto; 
	background-color: rgb(0,0,0); 
	background-color: rgba(0,0,0,0.85);
	z-index:3000;
	justify-content:center;
	align-items:center;
	opacity:0;
	pointer-events: none;
	transition:opacity 0.3s;
}
#imageModal.opened{
	opacity:1;
	pointer-events: all;
}
#imageModal .wrapper{
	
}
#imageModal a#next, #imageModal a#prev{
	position: absolute;
	top: 50%;
	color: #fff;
	font-size: 2em;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#imageModal a#next{
	right: 15px;
}
#imageModal a#prev{
	left:15px;
}
#imageModalContent {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 1200px;
}

#imageModalCaption {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 480px;
	text-align: center;
	padding: 10px 0;
	font-weight: 500;
	color: #fff;
	font-size: 1.25em;
	height:50px;
}

/* LOGOS ONLY */

section.client-logos {
	padding: 45px 5%;
	background: var(--dark-blue-color);
}

section.client-logos .wrapper{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	gap:5%;
}

section.client-logos .client-logo{
	width:150px;
}
section.client-logos .client-logo a {
	display: block;
	width: 100%;
	height: 75px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.85;
	margin:30px 0;
}