/* Colin Stuart 2025 */
/* Top 100 Custom css starts on line 120 */

html {
	height: auto;
	min-height: 100%;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	background-image: linear-gradient(to left top, #faf4e3, #f2ebd8, #f7f0dc);
	background-repeat: no-repeat;
	background-attachment: scroll;
	box-sizing: border-box;
}

body {
	width: 100%;
	padding: 0px;
	margin: 0px;
	font-family: "Poppins";
}

header {
	background-color: #fff3b8;
}

header::after{
	content: '';
	display: table;
	clear: both;
}

.header-container {
	width: 80%;
	height: 108px;
	margin: 0 auto;
}

.logo {
	float: left;
	padding: 10px 0;
	width: 25%;
	height: auto;
	max-height: 108px;
}

nav {
	float: right;
	height: 100px;
}

nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

nav li {
	display: inline-block;
	margin-left: 25px;
	padding-top: 15px;
	position: relative;
}

nav a {
	color: #fff1d4;
	text-decoration: none;	
	text-transform: uppercase;
	font-size: 1.5em;
	vertical-align: center;
	line-height: 100px;
}

nav a:hover {
	color: #000;
}

nav a::before {
	content: '';
	display: block;
	height: 5px;
	width: 100%;
	background-color: #444;
	position: absolute;
	top: 0;
	width: 0%;
	transition: all 200ms ease-in-out;
}

nav a:hover::before {
	width: 100%;
}

.site-title {
	text-align: center;
}

footer {
	padding-top: 25px;
	text-align: center;
}

.footer-bar {
	display: block;
	height: 3px;
	width: 75%;
	margin: 0 auto;
	background-color: #444;
}

.horizontal-bar	{
	display: block;
	height: 2px;
	width: 70%;
	margin: 0 auto;
	background-color: #444;
}

/* Top 100 Custom */

p {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.1em;
}

h1 {
	font-family: "Righteous", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 4em;
}

h2 {
	font-family: "Righteous", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 2em;
}

h3 {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: italic;
	font-size: 1.4em;
}

.container {
	width: 100%;
}

.item-title {
	grid-area: title;
	background-color: #21548F;
	color: #F5FAFF;
	padding-bottom: 10px;
	margin-bottom: 30px;
}

.item-title h2 {
	padding-top: 5%;
	padding-left: 5%;
	padding-right: 5%;
}
.item-title h3 {
	padding-left: 5%;
	padding-right: 5%;
	padding-bottom: 5%;
}

.item-content {
	grid-area: content;
}

.item-image {
	grid-area: image;
	text-align: center;
}
.item-image img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 80%;
	padding-top: 10px;
	padding-bottom: 10px;
}

.item-image p {
	display: inline;
	padding-left: 1%;
	padding-right: 1%;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-style: italic;
}

.item-content p {
	padding-left: 5%;
	padding-right: 5%;
	padding-top: 1%;
	padding-bottom: 1%;
}

.item-main {
	grid-area: main;
	color: #F5FAFF;
	padding: 6%;
	background-image: url('images/banner.jpg');
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	background-repeat: no-repeat;
	text-align: center;
}

.item-information {
	grid-area: main;
	color: #444;
	padding-left: 10%;
	padding-right: 10%;
	padding-top: 2%;
	padding-bottom: 2%;
	margin-bottom: 45px;
}

.item-left {
	display: grid;
	margin-left: auto;
	margin-right: auto;
	grid-template-columns: [first] 40% [middle] 20% [end] 40%;
	grid-template-rows: auto;
	grid-template-areas:
		"title title ."
		"content content image";
	text-align: left;
	padding-bottom: 160px;
}

.item-right {
	display: grid;
	margin-left: auto;
	margin-right: auto;
	grid-template-columns: [first] 40% [middle] 20% [end] 40%;
	grid-template-rows: auto;
	grid-template-areas:
		". title title"
		"image content content";
	text-align: right;
	padding-bottom: 160px;
}

.item-all {
	display: grid;
	margin-left: auto;
	margin-right: auto;
	grid-template-columns: [first] 40% [middle] 20% [end] 40%;
	grid-template-rows: auto;
	grid-template-areas:
		"main main main";
}

.credits-yes {
	padding-left: 10px;
	padding-right: 10px;
}

.credits-no {
	padding-left: 10px;
	padding-right: 10px;
}

.credits-yes strong {
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 2px;
	padding-bottom: 2px;
	background-color: #5dc75a;
	color: #FFFFFF;
}

.credits-no strong {
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 2px;
	padding-bottom: 2px;
	background-color: #e3533d;
	color: #FFFFFF;
}






/* ---------- Font Load ---------- */ 
.share-tech-mono-regular {
  font-family: "Share Tech Mono", monospace;
  font-weight: 400;
  font-style: normal;
}
.righteous-regular {
  font-family: "Righteous", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}
.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}
.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}
.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

/* Link Colors */
a, a:link, a:visited {
	color: #1e223e;
	text-decoration: underline;
}

a:hover {
	color: #28458a;
	text-decoration: bold;
}

a:active {
	color: #1e223e;
}


/* Change in Screen Size */

/* 1920 ---------------------- */
@media only screen and (max-width: 1920px) {

}


/* 1080 ---------------------- */
@media only screen and (max-width: 1080px) {
.header-container {
	width: 80%;
	height: 70px;
}

.logo {
	max-height: 70px;
}

nav {
	float: right;
	height: 70px;
}

nav li {
	margin-left: 15px;
	padding-top: 10px;
}

nav a {
	font-size: 1.3em;
	line-height: 70px;
}

p {
	font-size: 2em;
}

h1 {
	font-size: 5em;
}

h2 {
	font-size: 3em;
}

h3 {
	font-size: 2.2em;
}


.item-left {
	display: grid;
	margin-left: auto;
	margin-right: auto;
	grid-template-columns: [first] 40% [middle] 40% [end] 20%;
	grid-template-rows: auto;
	grid-template-areas:
		"title title ."
		"content content content"
		"image image image";
	text-align: left;
}

.item-right {
	display: grid;
	margin-left: auto;
	margin-right: auto;
	grid-template-columns: [first] 20% [middle] 40% [end] 40%;
	grid-template-rows: auto;
	grid-template-areas:
		". title title"
		"content content content"
		"image image image";
	text-align: left;
}



.item-image p {
	font-size: 1.2em;
}


.item-image {
	padding-bottom: 50px;
}

.item-image img {
	max-width: 512px;
	height: auto;
}

}