:root {
	--primary-color: #0f206c;	/* custom blue */
	--fg-color: #0f206c;	/* custom blue */
	--bg-color: #f3f3f3;	/* light gray */
	--nav-bg-color: #fff;		/* white */
	--nav-select-color: #4663e5;	/* lighter custom blue */
	--light-color: #f3f3f3;		/* light gray */
	--dark-color: #333;			/* dark gray */
	--max-width: 1400px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Lato', sans-serif;
	color: var(--primary-color);
	line-height: 1.5;
	background: var(--light-color);
}

p {
	font-size: 1.3rem;
	font-weight: 500;
}

a {
	color: var(--dark-color);
	text-decoration: none;
}

ul {
	list-style: none;
}

img {
	/*width: 100%;*/
}

h1, h2, h3, h4, h5 {
	font-family: 'Roboto', cursive;
	margin-bottom: .55rem;
	line-height: 1.3;
	text-align: center;
}

h6 {
	font-family: 'Mr Dafoe', cursive;
	font-size: 3.5rem;
	margin-bottom: .55rem;
	line-height: 1.3;
	text-align: center;
}

/* Utility Classes */

.container {
	max-width: var(--max-width);
	margin: auto;
	padding: 0 2rem;
	overflow: hidden;
}

.btn {
	display: inline-block;
	color: #fff;
	padding: 0.5rem 2rem;
	border: none;
	border-radius: 5px;
}

.btn-primary {
	background: var(--primary-color);
}

.btn-light {
	background: var(--light-color);
}

.btn-block {
	display: block;
	width: 100%;
	text-align: center;
}

.btn:hover {
	opacity: 0.9;
}

.l-heading {
	font-size: 4rem;
}

.m-heading {
	font-size: 2rem;
}

.s-heading {
	font-size: 1.5rem;
}

.py-1 { padding: 1.5rem 0; }
.py-2 { padding: 2rem 0; }
.py-3 { padding: 3rem 0; }

.p-1 { padding: 1.5rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

.py-bottom { padding-bottom: 1.5rem; }

.banner-container {
	background: #333;
	color: #fff;
	display: grid;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 45vh;
}

.banner-container {
	background: #333;
	color: #fff;
	display: grid;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 45vh;
}

.gallery img {
	width: 100%;
	transition: all 0.2s;
}

.gallery:hover img {
	opacity: 0.6;
	transform: scale(0.92);
}

.gallery img:hover {
	opacity: 1;
	transform: scale(1);
}

.gallery-container {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 1rem;
}

.gallery-container img {
	width: 100%;
}

.thumb-comment {
	display: grid;
	grid-template-columns: 1fr 3fr;
	max-width: var(--max-width);
}

.thumb img {
	width: 90%
}

.gallery-comment p {
	font-size: 1.5rem;
	text-align: left;
}







/* Navigation */

/* Navbar */
nav {
	position: sticky;
	top: 0;
	z-index: 3;
}

#navbar {
	display: flex;
	flex-direction: column;
	background: var(--nav-bg-color);
	color: var(--fg-color);
	z-index: 2;
	/* padding: 1.5rem; */
	border-bottom: var(--fg-color) solid 1px;
}

#navbar .title-social {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem;
	padding-left: 0.75rem;
}

#navbar .title-social .nav-social {
	display: flex;
	list-style: none;
	text-decoration: none;
}

#navbar .title-social .nav-social li a {
	color: var(--fg-color);
	font-size: 0.5rem;
	padding: 0.75rem;
	margin: 0 0.25rem;
	text-decoration: none;
}

#navbar .nav-social li a:hover {
	background: var(--fg-color);
	color: var(--nav-bg-color);
	padding: 1.2rem 0.75rem 0.5rem 0.75rem;
	border-radius: 5px;
}

#navbar .title-night, 
#navbar .title-black {
	display: none;
}

#navbar .nav-social-mobile, 
#navbar .nav-hamburger {
	display: none;
}

#navbar3 {
	visibility: none;
}

#navbar3 .nav-options {
	display: none;
}

#navbar2 {
	z-index: 2;
	/* padding: 1.5rem; */
	border-bottom: var(--fg-color) solid 1px;
	background: var(--nav-bg-color);
}

#navbar2 .nav-container {
	margin: 1rem 0;
	background: var(--nav-bg-color);
}

#navbar2 .nav-options {
	/* This makes the ordered list go horizontally */
	/* Align items center. Halfway vertically between top and bottom of nav bar */
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	visibility: visible;
	background: var(--nav-bg-color);
	/* border-top: var(--fg-color) solid 1px; */
}

#navbar2 .nav-options > li {
	margin: 0.5rem 0;
}

#navbar2 .nav-options li a {
	color: var(--fg-color);
	padding: 0.25rem 0.5rem;
	margin: 0 1rem;
	text-decoration: none;
}

#navbar2 .nav-options li a:hover {
	background: var(--fg-color);
	color: var(--nav-bg-color);
	border-radius: 5px;
}

#navbar2 .nav-options li a.current, 
#navbar2 .nav-options li ul li a.current {
	background: var(--nav-select-color);
	color: var(--nav-bg-color);
}

/* Dropdowns */
#navbar2 .nav-options li ul { 
	visibility: hidden;
	display: flex;
	flex-direction: column;
	background-color: var(--nav-bg-color); 
	align-items: center;
	list-style: none;
	position: absolute; 
	z-index: 6; 
}

#navbar2 .nav-options li ul li {
	padding: 0.5rem;
	width: 15rem;
	border-top: var(--fg-color) solid 1px; 
	border-left: var(--fg-color) solid 1px; 
	border-right: var(--fg-color) solid 1px; 
}

#navbar2 .nav-options li ul li:last-child {
	border-bottom: var(--fg-color) solid 1px; 
}
 
 
#navbar2 .nav-options li ul li a { 
	text-decoration: none;  
	color: var(--fg-color); 
}

/* Showcase */
#showcase {
	background: #333 url('../images/HomeNav/ClawMachineLanding.jpg') no-repeat center center/cover;
	height: 100vh;
	color: #fff;
}

#showcase .showcase-content {
	
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
	align-items: center;
	height: 100vh;
	padding: 0 2rem;
	/* Overlay */
	position: absolute;
	top: 83px;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.6);
}

#showcase .showcase-content a {
	text-decoration: none;
}

#showcase .showcase-content img {
	margin-top: -6rem;
}




/* Home Section */
#home-gallery .home-gallery-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 1rem;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#home-gallery .home-gallery-container:nth-child(1) img {
	width: 100%;
}






/* Footer */
#main-footer {
	background: var(--primary-color);
	color: var(--nav-bg-color);
}

#main-footer .footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 1.5rem;
	align-content: center;
	text-align: center;
	margin-top: -1rem;
}

#main-footer .footer-content .footer-content-item {
	padding: 1rem;
}

#main-footer .footer-content .footer-content-item img {
	width: 100%;
}

#main-footer .footer-content .footer-content-item p {
	font-size: 0.8rem;
}

#main-footer .footer-content .logo-night, 
#main-footer .footer-content .logo-black {
	display: none;
}

#main-footer .footer-content .footer-links ul {
	display: flex;
	flex-direction: column;
	list-style: none;
}

#main-footer .footer-content .footer-links ul li {
	margin: 0 1rem;
	padding: 0.3rem 1rem;
	border-bottom: var(--nav-bg-color) dotted 1px;
}

#main-footer .footer-content .footer-links ul li:last-child {
	border-bottom: none;
}

#main-footer .footer-content .footer-links ul li a {
	color: var(--nav-bg-color);
	text-decoration: none;
	padding: 0.5rem;
}

#main-footer .footer-content .footer-links ul li a:hover {
	background: var(--nav-bg-color);
	color: var(--primary-color);
}


#main-footer .footer-content .footer-other ul {
	list-style: none;
}

#main-footer .footer-content .footer-other ul li {
	margin: 0 1rem;
	padding: 0.3rem 1rem;
	border-bottom: var(--nav-bg-color) dotted 1px;
}

#main-footer .footer-content .footer-other ul li:last-child {
	border-bottom: none;
}

#main-footer .footer-content .footer-other ul li a {
	color: var(--nav-bg-color);
	text-decoration: none;
	padding: 0.5rem;
}

#main-footer .footer-content .footer-other ul li a:hover {
	background: var(--nav-bg-color);
	color: var(--primary-color);
}


#main-footer .footer-content .footer-social ul {
	display: flex;
	justify-content: center;
	list-style: none;
	margin-top: 2rem;
}

#main-footer .footer-content .footer-social ul li a {
	font-size: 0.8rem;
	color: var(--nav-bg-color);
	margin-right: 0.5rem;
	padding: 1rem 0.4rem 0.2rem 0.4rem;
}

#main-footer .footer-content .footer-social ul li a:hover {
	background: var(--nav-bg-color);
	color: var(--primary-color);
}


#main-footer .footer-copyright p {
	font-size: 0.8rem;
	text-align: center;
}




/* Banner template */
.banner-container {
	background: url('../images/About/AboutBannner.jpg') no-repeat center center/cover;
}



/* About */
#about-showcase .banner-container {
	background: url('../images/About/AboutBannner.jpg') no-repeat center center/cover;
}

#about-section .about-content {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 1.5rem;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.about-content-item:nth-child(1)  {
	grid-column: 1 / span 2;
	grid-row: 1 / span 3;
	text-align: left;
}

.about-content-item:nth-child(2) h6,
.about-content-item:nth-child(3)
{
	grid-column: 3 / span 6;
	text-align: left;
}

.about-content-item:nth-child(4)
{
	grid-column: 3 / span 6;
}

#about-section .about-content img{
	width: 100%;
}



/* Digital Art */
#digital-showcase .banner-container {
	background: url('../images/Digital/DigitalBannner.jpg') no-repeat center center/cover;
}

#digital-gallery .gallery-comment {
	margin-top: -2rem
}



/* Traditional Art */
#traditional-showcase .banner-container {
	background: url('../images/Traditional/TraditionalBanner.jpg') no-repeat center center/cover;
}

#traditional-gallery .gallery-comment {
	margin-top: -2rem
}



/* Character Design */
#characterdesign-showcase .banner-container {
	background: url('../images/CharacterDesign/CharacterDesignBannner.jpg') no-repeat center center/cover;
}

.characterdesign-gallery-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 1rem;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.characterdesign-item:nth-child(1)  {
	grid-column: 1 / span 3;
}

#characterdesign-gallery-mobile {
	display: none;
}



/* Collaterals */
#collateral-showcase .banner-container {
	background: url('../images/Collateral/CollateralBanner.jpg') no-repeat center center/cover;
}

.project-gallery-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 1rem;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.logo-gallery-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 1rem;
}

.banners-gallery-container {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 1rem;
}

.banners-gallery-item:nth-child(1) {
	grid-column: 1 / span 3;
}

.banners-gallery-item:nth-child(2) {
	grid-column: 4 / span 3;
}

.banners-gallery-item:nth-child(3) {
	grid-column: 1 / span 2;
}

.banners-gallery-item:nth-child(4) {
	grid-column: 3 / span 2;
}

.banners-gallery-item:nth-child(5) {
	grid-column: 5 / span 2;
}

.graphics-gallery-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 1rem;
}



/* 2Unique Magazine */
#unique-showcase .banner-container {
	background: url('../images/2Unique/2UniqueMagazineBanner.jpg') no-repeat center center/cover;
}

#unique-showcase .banner-container {
	background: url('../images/2Unique/2UniqueMagazineBanner.jpg') no-repeat center center/cover;
}

.unique-pages-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 1rem;
}

.unique-gallery-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 1rem;
}



/* Java Cup */
#javacup-showcase .banner-container {
	background: url('../images/JavaCup/JavaCupBanner.jpg') no-repeat center center/cover;
}

#javacup-comment-section {
	margin-bottom: -3rem;
}

#javacup-section .javacup-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 1rem;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.javacup-content-item:nth-child(1)  {
	display: none;
	grid-column: 1 / span 4;
	text-align: left;
}

.javacup-content img {
	width: 80%;
}

.javacup-gallery-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 1rem;
}



/* New Challenger */
#newchallenger-showcase .banner-container {
	background: url('../images/NewChallenger/NewChallengerBanner.jpg') no-repeat center center/cover;
}

#newchallenger-comment-section {
	margin-bottom: -3rem;
}

#newchallenger-section .newchallenger-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 1rem;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#newchallenger-section .newchallenger-content:nth-child(1) {
	display: none;
}

.newchallenger-content-item:nth-child(1)  {
	grid-column: 1 / span 3;
}

#newchallenger-section .newchallenger-content img{
	width: 100%;
}

.nclogo-gallery-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 1rem;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.nclogo-gallery-container img {
	width: 80%;
}

.ncapparel-gallery-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 1rem;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.ncapparel-item:nth-child(1)  {
	grid-column: 1 / span 3;
}

#ncapparel-gallery-mobile {
	display: none;
}

.ncadvertise-gallery-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 1rem;
	justify-content: center;
	align-items: center;
	text-align: center;
}



/* Pearly Whites */
#pearlywhites-showcase .banner-container {
	background: url('../images/PearlyWhites/PearlyWhitesBanner.jpg') no-repeat center center/cover;
}

#pearlywhites-comment-section {
	margin-bottom: -3rem;
}

#pearlywhites-section .pearlywhites-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 1rem;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.pearlywhites-content-item:nth-child(1)  {
	display: none;
	grid-column: 1 / span 3;
	text-align: left;
}

#pearlywhites-section .pearlywhites-content img{
	width: 100%;
}

.pearlywhites-gallery-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 1rem;
}



/* Roll Call */
#rollcall-showcase .banner-container {
	background: url('../images/RollCall/RollCallBanner.jpg') no-repeat center center/cover;
}

#rollcall-comment-section {
	margin-bottom: -3rem;
}

#rollcall-section .rollcall-content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 1rem;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.rollcall-content-item p {
	text-align: left;
}

.rollcall-content-item:nth-child(1)  {
	display: none;
	grid-column: 1 / span 2;
}

.rollcall-content-item:nth-child(3) {
	text-align: left;
}

.rollcall-content-item:nth-child(4) {
	text-align: left;
}

#rollcall-section .rollcall-content img{
	width: 100%;
}

.rollcall-content-item-mobile {
	display: none;
}

.rollcall-gallery-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 1rem;
}



/* Self-Made Empire */
#selfmade-showcase .banner-container {
	background: url('../images/SelfMadeEmpire/SelfMadeBanner.jpg') no-repeat center center/cover;
}

#selfmade-comment-section {
	margin-bottom: -3rem;
}

#selfmade-section .selfmade-content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 1rem;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.selfmade-content-item p {
	text-align: left;
}

.selfmade-content-item:nth-child(1)  {
	display: none;
	grid-column: 1 / span 2;
}

#selfmade-section .selfmade-content img{
	width: 70%;
}

.selfmadebroc-gallery-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 1rem;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.selfmade-gallery-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 1rem;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.selfmade-gallery-item:last-child {
	grid-column: 1 / span 4;
}



/* LITE Logo Design */
#litelogo-showcase .banner-container {
	background: url('../images/LiteMemphis/LiteBannner.jpg') no-repeat center center/cover;
}

#litelogo-gallery {
	margin-top: -6rem;
}

#litelogo-gallery-mobile {
	display: none;
}

#litelogo-gallery .litelogo-gallery-container {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 2rem;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.litelogo-content-item p {
	text-align: left;
}

.litelogo-lettering-gallery {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin: 5rem 0;
}

.litelogo-lettering-gallery img {
	height: 90%;
	width: 90%;
}



/* Shinobi: Ninja Princess */
#shinobi-showcase .banner-container {
	background: url('../images/Publications/ShinobiBanner.jpg') no-repeat center center/cover;
}

#shinobi-gallery .shinobi-gallery-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 1rem;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#shinobi-gallery .shinobi-gallery-container .shinobi-content-item:nth-child(1) {
	grid-column: 1 / span 2;
	grid-row: 1 / span 2;
	margin-top: -2.5rem;
}

#shinobi-gallery .shinobi-gallery-container:nth-child(1) img {
	width: 100%;
}

.shinobi-content-item p {
	font-size: 0.95rem;
}

#shinobi-samples-gallery .gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 1rem;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.shinobi-gallery-container {
	margin-top: 2rem;
}



/* Heal the Hood */
#healthehood-gallery .healthehood-gallery-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 1rem;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#healthehood-gallery .healthehood-gallery-container img {
	width: 95%;
}



/* Stoned Ninja */
/*
#stonedninja-showcase .banner-container {
	background: url('../images/Publications/AboutBannner.jpg') no-repeat center center/cover;
}
*/



/* Shop */
/*
#shop-showcase .banner-container {
	background: url('../images/About/AboutBannner.jpg') no-repeat center center/cover;
}
*/



/* Contact */
#contact-showcase .banner-container {
	background: url('../images/Contact/ContactBannner.jpg') no-repeat center center/cover;
}

#contact-section .contact-content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 1rem;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.contact-content-item:nth-child(3) {
	background: var(--primary-color);
	color: #fff;
	padding: 20px 0;
	/*margin: 0 auto;
	max-width: 500px;
	padding: 20px 110px;*/
}

#contact-section img {
	width: 90%;
}
				
.form-wrap {
	/*
		Now this one was interesting.
		The only thing you were on the money on here was the background.
		He set a padding for top/bottom and left/right here where the headings, inputs, and button is.
		But he also changed the text color here, and it overwrote what was in the body selector.
		So if you ever set a background, you can always overwrite your text color.
	*/

	background: var(--primary-color);
	padding: 0.9375rem 1.5625rem;
	color: var(--light-color);
}

.form-wrap h1,
.form-wrap p {
	text-align: center;
}

.form-wrap .form-group {
	margin-top: 1.5625rem;
}

.form-wrap .form-group label {
	display: block;
	color: #fff;
}

.form-wrap .form-group input {
	width: 80%;
	padding: 0.625rem;
	border: var(--primary-color) 1px solid;
	border-radius: 0.3125rem;
}

.form-wrap .form-group textarea {
	width: 80%;
	height: 12.5rem;
	border-radius: 0.3125rem;
}

.form-wrap button {
	display: block;
	width: 40%;
	padding: 0.625rem;
	margin: 1.25rem auto 0.625rem;
	background: #fff;
	color: var(--primary-color);
	cursor: pointer;
}

.form-wrap button:hover {
	
}

.form-wrap buttom-text {
	font-size: 13px;
	margin-top: 20px;
}





