* {
  box-sizing: border-box;
}

body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: 500; 
	margin: 0 10%; 
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.container {
  display: grid;
  /* Columns will be at least 200px wide, and fill the remaining space */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  /*grid-template-columns: auto;*/
  background-color: ghostwhite;
  grid-row-gap: 1rem;
  gap: 1rem;
  padding: 10px;
}
.container div {
  background-color: #f1f1f1;
  border: none;
  padding: 10px;
  font-size: 30px;
  text-align: center;
  /*margin: 3rem;*/
}
.image-grid {
  transition: opacity 0.4s ease;
}
.image-grid img {
  width: 100%;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.2s;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*margin: auto;*/
  background: rgba(0,0,0,0.4);
  display: none;
  justify-content: center;
  align-items: center;
}
.popup img {
  max-width: 50%;
  max-height: auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
}
.dimmed {
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

@media screen and (max-width: 600px) {
  
}
a:link	{
	color: #000000; text-decoration: none; font-weight: 800; font-size: 18px;
	}
a:visited	{
	color: #000000; text-decoration: none; font-weight: 800; font-size: 18px;
	}
a:hover {  
	color: #d10ab0; text-decoration: none;	font-weight: 800; font-size: 18px;	
	}
a:active {
    color: #d10ab0;
}
.prev { left: 5%; }
.next { right: 5%; }

.popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popup-caption {
  margin-top: 10px;
  font-size: 16px;
  color: #fff;
  opacity: 0.8;
  user-select: none;
}

p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
img {
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.model_list
 {
 	color: red;
}
#top {
	margin: 2rem 10%;
}
low {
	background-color: #355B6F;
	color: #FFF;
	font-weight: 600;
	margin: 0;
}
low a:link	{
	color: #ffffff; text-decoration: none; font-weight: 800; font-size: 12px;
	}
low a:visited	{
	color: #ffffff; text-decoration: none; font-weight: 800; font-size: 12px;
	}
low a:hover {  
	color: #E8C17B; text-decoration: none;	font-weight: 800; font-size: 12px;	
	}
#main {
	background-color: #fff;
	margin: 0 12.5% 0 12.5%;
}
left {
	float: left;
	width: 200px;
	background-color: #A2C2D2;
	padding-right: 1em;
	border: thin solid #355B6F;
}
left ul {
	padding-top: 2em;
	list-style-type: square;
	line-height: 1.4em;
}
left img {
	margin: 5px;
}
right {
	float: right;
	width: 188px;
}
center {
	margin: 0 231px;
	background-color: #fff;
	padding: 1em 0 0 1em;
	text-align: center;
}
center ul {
	font-size: 12px;
	line-height: 2em;
}

h1 {
	font-size: 40px;
	font-weight: normal;
	font-family: poppins, inter, playfair, lora, sans-serif;
	/*font: lora;*/
	text-align: center;
	/*font-family: Verdana, Arial, Helvetica, sans-serif;*/
}
h2 {
	font-size: 24px;
	text-align: center;
	color: #000000;
}
h3 {
	font-size: 16px;
}
h4 {
	font-size: 14px;
	margin: 0;
	text-align: center;
}
h3 {
	font-size: 12px;
}
.expanded {
	font-size: 12px;
	letter-spacing:0.1em;
	display: inline;
	padding-right: 1em;
}
.topbar {
	letter-spacing:0.1em;
	display: block;
	padding: 1em 0 0.3em 0.5em;
	font-weight: 600;
	margin-top: 1em;
}	
.size14 {
	font-size: 14px;
}
.title {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 22px;
	text-align: center;
}
.centreit {
	text-align: center;
}
.justifyit {
	text-align: justify;
	font-size: 14px;

}
.leftit {
	text-align: left;
}
.shrinkit {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	display: block;
	text-align: center;
	margin-top: 0;
}
.blue {
	color: #6699CC;
	}	
	
/* Tablets: 768px and up */
@media (min-width: 768px) {
  /*.grid-container {
    grid-template-columns: auto auto;
  }*/
}

/* Desktops: 1024px and up */
@media (min-width: 1024px) {
  /*.grid-container {
    grid-template-columns: auto auto auto;
  }*/
}






