@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,700;1,500;1,700&family=Montserrat:wght@600&family=Roboto+Condensed:ital@0;1&display=swap');

/* Table of Content
==================================================
	#Site Variables
	#Site Styles
	#UIKit Styles
	#Page Styles
	#Media Queries
	#Font-Face */
	

/* #Site Variables
================================================== */
:root {
  --primary: #2E473C;
  --secondary: #DEA745;
  --light: #F5F5F5;
  --dark: #030F2B;
  --white: #ffffff;
  --text: #7B7B7B;
  --navigation: #ffffff;
  
  --primary-font: 'Roboto Condensed', sans-serif;
  --secondary-font: 'Cormorant Garamond', serif;
  --tertiary-font: 'Montserrat', sans-serif;
}


/* #Site Styles
================================================== */
*				{ outline:none; }
html, body		{ color:var(--text); font-size:16px; font-weight:500; font-family:var(--primary-font); line-height:1.5rem; }

.aligncenter 	{ text-align:center; }
.alignleft		{ text-align:left; }
.alignright		{ text-align:right; }
	img.aligncenter { float:none; display:block; margin:0 auto 15px; }
	img.alignleft	{ float:left; margin-right:15px; }
	img.alignright	{ float:right; margin-left:15px; }

.w900 			{ font-weight:900; }
.w800			{ font-weight:800; }
.w700			{ font-weight:700; }
.w600			{ font-weight:600; }
.w500			{ font-weight:500; }
.w400			{ font-weight:400; }
.w300			{ font-weight:300; }
.w200			{ font-weight:200; }
.w100			{ font-weight:100; }

.font6			{ font-size:0.625em; }
.font7			{ font-size:0.750em; }
.font8			{ font-size:0.875em; }
.font10			{ font-size:1.0em; }
.font12			{ font-size:1.2em; }
.font15			{ font-size:1.5em; }
.font18			{ font-size:1.8em; }
.font20			{ font-size:2.0em; }
.font25			{ font-size:2.5em; }
.font30			{ font-size:3.0em; }
.font35			{ font-size:3.5em; }
.font40			{ font-size:4.0em; }
.font45			{ font-size:4.5em; }

.s1				{ letter-spacing:1px; }
.s2				{ letter-spacing:2px; }
.s3				{ letter-spacing:3px; }
.s4				{ letter-spacing:4px; }
.s5				{ letter-spacing:5px; }
.s6				{ letter-spacing:6px; }
.s7				{ letter-spacing:7px; }
.s8				{ letter-spacing:8px; }

.lh0			{ line-height:1em; }
.lh1			{ line-height:1.1em; }
.lh2			{ line-height:1.2em; }
.lh3			{ line-height:1.3em; }
.lh4			{ line-height:1.4em; }
.lh5			{ line-height:1.5em; }
.lh8			{ line-height:1.8em; }
.lh20			{ line-height:2.0em; }
.lh25			{ line-height:2.5em; }

h1, h2, h3, h4	{ font-family:var(--secondary-font); color:inherit; line-height:1em; font-weight:700; line-height:1em; }

h1				{ font-size:6.000em; line-height:.875em; }
h2				{ font-size:3.000em; }
h3				{ font-size:1.625em; font-weight:500; }
h4				{ font-size:1.000em; font-weight:700; line-height:1em; text-transform:uppercase; font-family:var(--primary-font); }
h5				{ font-size:0.775em; font-weight:700; line-height:1em; text-transform:uppercase; }


b, strong, .uk-text-bold	{ font-weight:800; }

a, .uk-link		{ color:var(--primary); }
	a:hover, .uk-link:hover { color:inherit; text-decoration:underline; }

.font-secondary { font-family:var(--secondary-font); }

/* #UIKit Styles
================================================== */
.uk-container-alt	{ padding:0 3%; }

.uk-text-light		{ color:var(--light) !important; }
.uk-text-dark 		{ color:var(--dark) !important; }
.uk-text-contrast	{ color:var(--white) !important; }

.uk-background-primary, .uk-section-primary { color:var(--white); }
.uk-background-dark, .uk-section-dark { background:var(--dark); color:var(--white) !important; }
.uk-background-muted, .uk-section-muted { background:var(--light); }

.uk-background-gradient { background: rgb(0,105,161); background: linear-gradient(180deg, rgba(0,105,161,1) 0%, rgba(0,50,124,1) 100%); color:var(--white); }

.uk-overlay-dark { background:rgba(0,0,0,0.7); color:var(--white); }

.uk-button	{ background:var(--dark); color:var(--white); border:0; font-weight:var(--primary-font); font-size:.875em; text-transform:uppercase; letter-spacing:2px; font-weight:500; }
.uk-button.uk-button-primary { background:var(--primary); color:var(--white); }
.uk-button.uk-button-secondary { background:var(--secondary); color:var(--white); }

/* #Page Styles
================================================== */

.header { position:absolute; top:0; left:0; z-index:1; width:100%; padding:40px 0; }
	.header .logo { width:250px; }

	.header .nav a { color:var(--white); text-transform:uppercase; letter-spacing:3px; position:relative; display:inline-block; padding-bottom:5px; }
	.header .nav a:hover { text-decoration:none; }
	.header .nav a:hover:after { content:''; width:100%; height:2px; background:var(--primary); position:absolute; bottom:0; left:0; display:block; }

.hero { overflow:hidden; }
	.hero-overlay { display:block; width:100%; height:100%; position:absolute; top:0; left:0; }

.tagline { font-family:var(--tertiary-font); text-transform:uppercase; text-align:center; font-size:2.5em; letter-spacing:.25em; color:var(--secondary); padding:5px 0; margin:10px 0; }
	.tagline span { display:inline-block; }
	.tagline:before, .tagline:after { content:''; display:inline-block; height:3px; width:100%; max-width:250px; margin:0 25px 12px; background:var(--secondary); }
	.tagline:before { margin-left:0; }
	.tagline:after { margin-right:0; }

.collage { position:relative; font-size:14px; }
.collage01 {  padding-left:250px; }
.collage02 {  padding-right:125px; }
.collage03 {  padding-left:250px; margin-left:20px; margin-top:-150px; }
	.collage03 .uk-card { margin-top:100px; }

.border { position:relative; display:inline-block; }
.border:before { content:''; border:3px solid var(--secondary); position:absolute; width:100%; height:100%; display:block; }
.border.right:before { top:10px; left:10px; }
.border.left:before { bottom:10px; right:10px; }

.bg-pattern { position:relative; }
	.bg-pattern:before { content:''; position: absolute; z-index: -1; top: 0; left: 0; width: 100%; min-height:690px; font-weight:400; background:url('../images/bg-pattern.png') top center no-repeat; background-size:1600px; }
	.bg-pattern:after { content:''; position: absolute; z-index:-2; top:0; left:0; width:100%; min-height:690px; background:#fbf9f0; }

.footer { background:var(--primary) url('../images/bg-footer.png') top left repeat; background-size:1200px; color:var(--white); text-transform:uppercase; }
	.footer .nav { margin-left:25px; }
	.footer .nav a { color:var(--white); text-transform:uppercase; letter-spacing:3px; position:relative; display:inline-block; padding-bottom:5px; }
	.footer .nav a:hover { text-decoration:none; }
	.footer .nav a:hover:after { content:''; width:100%; height:2px; background:var(--primary); position:absolute; bottom:0; left:0; display:block; }

/* #Media Queries
================================================== */
	@media only screen and (max-width: 1220px) {
		h1 { font-size:4em; }
		h2 { font-size:3em; }

		.tagline { font-size:2.00em; letter-spacing:.1em; }
		.tagline:before, .tagline:after { max-width:150px; margin-bottom:10px; }

		.collage01 {  padding-left:150px; }
		.collage02 {  padding-right:50px; }
		.collage03 {  padding-left:150px; margin-left:100px; margin-top:-75px; }
	}

	/* Smaller than standard 960 (devices and browsers) */
	@media only screen and (max-width: 959px) {
		h1 { font-size:3.50em; }
		h2 { font-size:2.25em; }
		
		.tagline { font-size:2.00em; }
		.tagline:before, .tagline:after { max-width:100px; }
		
		.hero .uk-position-center { top:auto; bottom:-20%; }
	}

	/* Tablet Portrait size to standard 960 (devices and browsers) */
	@media only screen and (min-width: 768px) and (max-width: 959px) {}

	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {
		h1 { font-size:3em; }
		h2 { font-size:2em; }

		.uk-text-large { font-size:1.2em; }

		.header .logo { width:175px; }

		.tagline { font-size:1.75em; letter-spacing:.1em; }
		.tagline:before, .tagline:after { display:block; margin:10px auto; left:0; right:0; width:50%; }

		.bg-pattern:before { background:none; }

		.collage { padding-bottom:100px; }
		.collage01 {  padding-left:50px; }
		.collage02 {  padding-right:75px; }
		.collage03 {  padding-left:0px; margin-left:0px; margin-right: 25px; margin-top:0px; }
			.collage03 canvas { width:600px; height:300px; }

		.collage .uk-position-absolute { top:auto !important; }

		.collage04 .pad { padding:0 50px; margin-top:65px; }
	}

	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
	@media only screen and (min-width: 480px) and (max-width: 767px) {}

	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
	@media only screen and (max-width: 479px) {
		h1 { font-size:2.5em; }
	}


/* #Font-Face
================================================== */
/* 	This is the proper syntax for an @font-face file
		Just create a "fonts" folder at the root,
		copy your FontName into code below and remove
		comment brackets */

/*	@font-face {
	    font-family: 'FontName';
	    src: url('../fonts/FontName.eot');
	    src: url('../fonts/FontName.eot?iefix') format('eot'),
	         url('../fonts/FontName.woff') format('woff'),
	         url('../fonts/FontName.ttf') format('truetype'),
	         url('../fonts/FontName.svg#webfontZam02nTh') format('svg');
	    font-weight: normal;
	    font-style: normal; }
*/