/*
	(c)2021 - visuallizard.com

	General Layout Styles.
	Sets major blocking to elements that appear across the site in different templates.
	All can be removed and started from scratch or elements can be adjusted individually.
*/

.container {
/*
	Set site maximum width only here and use this class to centre and contain the content in browser window.
	Use "max-width" instead of "width" for auto-responsiveness.
	Keep horizontal padding to prevent content touching viewport edges. Adjust them in responsive.css for specific breakpoint if needed.

*/
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.full-width {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}
.full-bleed {
/* 	alternative to .full-width - https://andy-bell.design/wrote/creating-a-full-bleed-css-utility/ */
	width: 100vw;
	margin-left: 50%;
	transform: translateX(-50%);
}


/* !Weglot language toggle */
.wg-default,
.wg-default .country-selector {
    bottom: 0 !important;
    top: auto !important;
    z-index: 0 !important;
}


.site-header {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 1;
	padding: 0;
    color: #fff;
}
.site-header.how-to-invest-guide {

}
section#banner {
    margin-top: -100px;
    height: 650px;
}
section#banner.extend {
    margin-top: 0;
}
section#banner,
section#banner.home {
    background-image: url("../../img/header-background-home.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
section#banner > .container {

}

section#banner.how-to-invest-guide {
    background-image: url("../../img/header-background-guide.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
section#banner.how-to-invest-guide:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
    section#banner div.container {
        align-items: flex-start;
        z-index: 1;
    }
    section div.site-header-container { z-index: 0; }


.site-title {

	margin: 1rem 0;
}
	.site-title > a {
		text-decoration: none;
		color: inherit;
		font-weight: 800;
		font-size: 30px;
		line-height: 1;

	}
	.site-title:hover > a {

	}
h1.page-title {
    display: block;
    width: 100%;
    margin: 0;
    text-align: center;
}
section#banner.how-to-invest-guide h1.page-title { color: #004060; }

/* ! [ home page header animation ] */
div#home-heading {
    display: flex;
    position: absolute;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    column-gap: 0;
    row-gap: 0;
    top: 100px;
    left: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    color: #fff;
}
section#banner.home div#home-heading {
    top: 100px;
    left: 0;
}
    div#home-heading p.h1 {
        display: block;
        position: relative;
        text-align: center;
    }
    div#home-heading div.heading-set {
        display: block;
        position: relative;
        flex: 1 1 30%;
        max-width: 70%;
        padding: 0;
        margin: 0 auto;
        background: rgba(192, 19, 39, 0.7);
    }
        div#home-heading div.heading-set h1 {
            display: block;
            position: relative;
            min-width: 30px;
            width: auto;
            min-height: 95px;
            margin: 0 auto;
            padding: 0.25rem 1rem 0.5rem 1rem;
            line-height: 1.25;
            text-align: center;
        }



/* ! [[ NAVIGATIONS ]] */
/* General for all levels and navs: */
.nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-item {
    position: relative;
    display: inline-block;
    display: block;
    vertical-align: top;
}
.nav-link {
    display: block;
    padding: 0.75rem;
    color: inherit;
    text-decoration: none;
    transition: all .3s;
    line-height: 1.25;
}
.nav-link:hover {

}
.nav-item[data-nav-status='has-active'] > .nav-link {

}
.nav-item[data-nav-status='active'] > .nav-link {

}

    /* 	Main nav specific (opinionated) */
    .main-nav {
        display: block;
        position: relative;
        top: 0;
        z-index: 2;
        width: 100%;
        padding: 0;
        margin: 0;

    }
    .how-to-invest-guide .main-nav {
        color: #004060;
    }
    .main-nav.nav-fixed {
        position: fixed;
        top: 0;
        z-index: 2;
        background: #000;
        box-shadow: 5px 0px 10px rgba(0,0,0,0.7);
        transition: all 0.2s ease;
    }
    .how-to-invest-guide .main-nav.nav-fixed {
        background: #fff;
        /* box-shadow: 5px 0px 10px rgba(200,200,200,0.7); */
        transition: all 0.2s ease;
    }
    .main-nav.hide { display: none; }
        .main-nav div.container {
            display: flex;
            position: relative;
            justify-content: space-between;
            align-items: center;
        }

    /* Level 1 (horizontal) */
    .main-nav .nav-1 {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        column-gap: 0.5rem;
        font-size: 0.875rem;
        font-weight: 600;
    }
    .main-nav .nav-1 > li {

    }
    .main-nav .nav-1 > li > a {
        text-align: center;
    }

    /* all sub-lists (drop-downs & drop-sides) */
    .main-nav .sub-list {
        display: block;
        position: absolute;
        top: 0;
        left: auto;
        width: 200px;
        margin: 0;
        padding: 0;

        background-color: #fff;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 2px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);

        transition: all 0s;
        z-index: 1000;
    }
    .main-nav li              > .sub-list { visibility: hidden;  opacity: 0; transform: scale(.95); }
    .main-nav li:hover        > .sub-list { visibility: visible; opacity: 1; transform: scale(1); transition-duration: .3s; }
    .main-nav li:focus-within > .sub-list { visibility: visible; opacity: 1; transform: scale(1); }

    .main-nav .sub-list .sub-list { left: 100%; }

    .main-nav :nth-last-child(1) > .nav-2,
    .main-nav :nth-last-child(2) > .nav-2 { right: 0; left: auto; }

    .main-nav :nth-last-child(1) > .nav-2 .nav-list,
    .main-nav :nth-last-child(2) > .nav-2 .nav-list { right: 100%; left: auto; }

    .main-nav :nth-last-child(1) > .nav-2 .has-sub > .nav-link::after,
    .main-nav :nth-last-child(2) > .nav-2 .has-sub > .nav-link::after { transform: scaleX(-1); }



    /* Level 2 (the only drop-down ) */
    .main-nav .nav-2 {
        top: 100%;
    }


    .main-nav .nav-2 > li {

    }
    .main-nav .nav-2 > li > a {

    }

    /* Level 3, etc. */
    .main-nav .nav-3 {

    }
    .main-nav .nav-3 > li {

    }
    .main-nav .nav-3 > li > a {

    }


    /* Has-subs Chevron indicators */
    .main-nav .has-sub > .nav-link {
        padding-right: 1.5em;
    }
    .main-nav .has-sub > .nav-link:after {
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        right: .25em;
        content: " ";
        background: no-repeat right center url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24'><path fill='%23setColorCodeHere' d='M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z' /></svg>");
        display: block;
        width: 1em;
        height: 1em;
        background-size: 100%;
        transform-origin: center center;
    }
    .main-nav .nav-1 > .has-sub > .nav-link:after {
        transform: rotate(90deg);
    }



/* Search Form */
.search-form {
	float: right;
	display: inline-flex;
	margin: .5em 0;
}
	.search-input {

	}
	.search-button {
		border-radius: 0;
	}


/* ! [[ SECTIONS ]] */
main {

}
main.default > .container { max-width: 1000px; padding: 3rem 1rem; }
main.home {

}

p.section-label {
    margin: 0 0 1.5rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}
section#recognition p.section-label,
section#why-winnipeg p.section-label,
section#driving-growth p.section-label,
section#key-industries p.section-label,
section#how-to-invest p.section-label { color: #c01327; }
section#driving-growth p.section-label { width: 100%; }
section {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    padding: 5rem 0;
    margin: 0;
    background: #fff;
}
section#recognition {
    padding: 0 0 4rem 0;
    background: none;
}
    section#recognition .container {
        display: block;
        position: relative;
        max-width: 960px;
        padding: 1rem;
        margin: -90px auto -50px auto;
        background: #fff;
        box-shadow: 0px 0px 15px rgba(0,0,0,0.5);
    }
        section#recognition .container p.section-label {
            display: block;
            width: 100%;
            margin: 0 0 0.5rem 0;
            text-align: center;
        }
section#introduction {
    background: #fff;
    color: #000;
}
    section#introduction .container .cke { align-items: center; }
    section#introduction .container .cke div.c2.c-first {
        flex: 0 0 48%;
        max-width: 48%;
    }
        section#introduction .container .cke div.c2.c-first iframe {
            max-width: 100%;
            height: 60vh;
        }
    section#introduction .container .cke div.c2.c-last {
        flex: 0 0 48%;
        max-width: 48%;
    }
    .cke div.c2 *:first-child {
        margin-top: 0;
    }
    .cke div.c2.c-first > h2 { margin-top: -1.25rem; font-size: 3.5rem; }
section#why-winnipeg {
    background: #eef3f6;
    color: #000;
}
    section#why-winnipeg .container .cke {
        margin: 0 0 3rem 0;
        align-items: center;
    }
    section#why-winnipeg .container .cke div.c2.c-first {
        flex: 0 0 60%;
        max-width: 60%;
    }
    section#why-winnipeg .container .cke div.c2.c-last {
        flex: 0 0 36%;
        max-width: 36%;
    }
    section#why-winnipeg div.ww-advantages {
        display: flex;
        position: relative;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        column-gap: 4%;
        flex: 0 0 100%;
        max-width: 100%;
    }

section#success-stories {
    z-index: 0;
    padding: 5rem 0 0 0;
    text-align: center;
    background-color: #000;
    background-image: url("../../img/success-stories-bg.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #fff;
}
section#success-stories.top { z-index: 10; }
section#success-stories:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5) 25%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.7) 70%,
        rgba(0,0,0,0)70.001%
    );
}
    section#success-stories p.section-label {
        display: block;
        position: relative;
        width: 100%;
        text-align: center;
    }
    section#success-stories .container {
        justify-content: center;
        z-index: 1;
    }
        section#success-stories .container h2 {
            margin: 0 0 3rem 0;
        }
        section#success-stories .container h2 span {
            display: inline-block;
            padding: 0 1rem 0.75rem 1rem;
            background: #c01327;
            color: #fff;
        }
    section#success-stories div.success-testimonials {
        display: block;
        position: relative;
        padding: 0;
    }
    section#success-stories div.success-testimonials:after {
        content: "";
        display: block;
        position: absolute;
        z-index: 0;
        left: 0;
        bottom: 0;
        right: 0;
        height: 250px;
        background: #fff;
    }

section#driving-growth {
    text-align: center;
    background: #fff;
    color: #000;
}
    section#driving-growth .container {
        justify-content: center;
    }
        section#driving-growth .container p { font-size: 1.25rem; letter-spacing: 0.5px; }

section#key-industries {
    background: #eef3f6;
    color: #000;
}
    section#key-industries .container .cke {
        margin: 0 0 3rem 0;
        align-items: center;
    }
    section#key-industries .container .cke div.c2.c-first {
        flex: 0 0 48%;
        max-width: 48%;
    }
    section#key-industries .container .cke div.c2.c-last {
        flex: 0 0 48%;
        max-width: 48%;
    }
        section#key-industries .container .cke div.c2.c-last p { font-size: 1.25rem; }


section#facts {
    background: #0f1823;
    color: #fff;
}
    section#facts div.facts {
        display: block;
        position: relative;
        width: 100%;
        padding: 0;
        margin: 0;
    }
    section#facts div.facts.statistics {
        border-bottom: 1px solid #999;
    }
    section#facts p.section-label {
        display: block;
        position: relative;
        width: 100%;
        text-align: center;
    }
section#how-to-invest {
    background: #fff;
    color: #000;
}
    section#how-to-invest .container {

    }
    section#how-to-invest div.plain-content {
        display: flex;
        position: relative;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        column-gap: 4%;
        row-gap: 1.25rem;
        width: 100%;
        padding: 0;
        margin: 0;
    }
        div.plain-content > div {
            display: block;
            position: relative;
            flex: 0 0 48%;
            max-width: 48%;
        }
        div.plain-content > img {
            display: block;
            position: relative;
            flex: 0 0 48%;
            max-width: 48%;
        }



/* ! [ contact section ] */
section#contact {
    padding: 5rem 0;
    background-color: #444;
    background-image: url("../../img/ready-to-invest-bg.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #fff;
}
section#contact:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
}
section#contact .container {
    z-index: 1;
    column-gap: 4%;
}
section#contact div.contact-column {
    display: block;
    position: relative;
    flex: 1 0 40%;
    max-width: 40%;
}
section#contact div.contact-column:first-child {
    padding: 3rem 4rem 3rem 0;
    max-width: 56%;
}
    div.contact-column *:first-child {
        margin-top: 0;
    }
    div.contact-column h2 {
        line-height: 1.4;
    }
    div.contact-column h2 > span {
        display: inline-block;
        padding: 0rem 0.5rem 0.5rem 0.5rem;
        line-height: 1.1;
        background: #c01327;
        color: #fff;
    }



/* ! [ Step-by-Step Guide layout ] */
div.container#stepbystepguide {
    justify-content: space-between;
    align-items: flex-start;
    padding: 4rem 1rem;
}
    div.container#stepbystepguide p.lead-in {
        margin: 0;
        text-transform: uppercase;
        font-weight: 500;
    }
    section#guide {
        display: block;
        position: relative;
        flex: 0 0 56%;
        max-width: 60%;
        padding: 0 0 2rem 0;
    }
        section#guide p.lead-in { font-weight: 600; color: #c01327; }
        section#guide div.cke h2 { margin-top: 0; }
        section#guide div.footnote {
            display: block;
            position: relative;
            padding: 2rem 0;
            color: #004060;
        }
            section#guide div.footnote p { font-size: 0.875rem; }
    aside#get-in-touch {
        display: block;
        position: relative;
        flex: 0 0 40%;
        max-width: 40%;
        padding: 3rem 0 0 0;
        margin-top: 2.5rem;
        background: #004060;
        color: #fff;
    }
        aside#get-in-touch div.cke { padding: 0 3rem; }
        aside#get-in-touch div.cke h2 { margin-top: 0; }
        aside#get-in-touch form.fm-form { padding: 0 3rem 3rem 3rem; }




	/* ! Regions for Layout Module */
	.region-row {
		display: flex;
	}
		.region-cell {
			width: 100%;
			padding: 2rem 5%;
		}
		.region-cell:first-child {
			padding-left: 0;
		}
		.region-cell:last-child {
			padding-right: 0;
		}





/* ! Banners: defaults */
.banners {
	margin-bottom: 2em;
}
	.banner {
		position: relative;
	}
		.banner-link {
			display: block;
		}
			.banner-img {
				display: block;
				width: 100%;
				height: auto;
			}
			.banner-container {
				position: absolute;
				top: 0;
				bottom: 0;
				left: 0;
				right: 0;
				margin: 0 auto;
				padding: 1em;
				padding: 5%;

				display: flex;
				align-items: center;
				justify-content: center;
			}
			.upperleft    .banner-container { align-items: flex-start; justify-content: flex-start; }
			.uppercentre  .banner-container { align-items: flex-start; justify-content: center;     text-align: center; }
			.upperright   .banner-container { align-items: flex-start; justify-content: flex-end;   }
			.middleleft   .banner-container { align-items: center;     justify-content: flex-start; }
			.middlecentre .banner-container { align-items: center;     justify-content: center;     text-align: center; }
			.middleright  .banner-container { align-items: center;     justify-content: flex-end;   }
			.lowerleft    .banner-container { align-items: flex-end;   justify-content: flex-start; }
			.lowercentre  .banner-container { align-items: flex-end;   justify-content: center;     text-align: center; }
			.lowerright   .banner-container { align-items: flex-end;   justify-content: flex-end;   }

			.banner-text {
				display: block;
				width: 100%;
				margin: 0;
				max-width: 800px;
				color: #fff;

				text-align: left;
				text-transform: none;
				transition: color .2s;
			}
			.banner-link:hover .banner-text {
				opacity: .5;
			}
				.banner-title {
					color: inherit;
					font-size: 50px;
					font-size: calc(1.5em + 2vw);
					margin-top: 0;
					margin-bottom: 0;
					text-transform: none;
				}
				.banner-subtitle {
					color: inherit;
					font-size: 30px;
					font-size: calc(1em + 2vw);
					margin-top: 0;
					margin-bottom: 0;
					text-transform: none;
				}
				.banner-desc {

				}

	/* ! Banners: Featured - slider */
	.featured-banners {

	}
		.featured-banners .banner-img {
			object-fit: cover;
			min-height: 200px;
			max-height: 500px;
			/* this sets vertical boundaries to Featured Banners
			 and prevents them from shrinking or growing beyond set height values
			 when viewport is either too short (mobile) or unknowingly large (wide monitors) */
		}

	/* ! Banners: Grid Fixed item width */
	.grid-fixed.banners {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		width: 102%;
		margin: 0 -1% 0;
		padding: 0;
	}
		.grid-fixed .banner {
			display: inline-block;
			width: 25%;
			padding: 1em 1%;
		}
		.grid-fixed .banner-link {
			display: flex;
			align-items: center;
			height: 100%;
		}
		.grid-fixed .banner-img {
			transition: transform .3s;
		}
		.grid-fixed .banner-link:hover .banner-img {
			transform: scale(1.1);
		}
		.grid-fixed .banner-title {
			font-size: 20px;
		}

	/* ! Banners: Grid Flex item width
	(usually for sponsor logos where width is unknown. Set module settings to something like Width:0 and Height:100px ) */
	.grid-flex.banners {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		width: 102%;
		margin: 0 -1% 1em;
		padding: 0;
	}
		.grid-flex .banner {
			width: auto;
			margin: 1em 1%;
			padding: 0;
		}
		.grid-flex .banner-link {

		}
		.grid-flex .banner-img {
			display: block;
			width: auto;
			height: 100%;
			max-height: 100px;
			margin: 0;
			transition: all .3s;
		}
		.grid-flex .banner:hover .banner-img {
			transform: scale(1.1);
		}
		.grid-flex .banner-title {
			font-size: 20px;
		}

/* ! Galleries */
.gallery-set {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	margin: 0 0;
	padding: 0;
	list-style-type: none;
	overflow: hidden;
}
.gallery-set > li {
	width: 20%;
	margin: 0;
	padding: 0;
	max-width: 480px;
}

.gallery-box {
	position: relative;
	display: block;
	margin: 0;
	height: 0;
	padding-top: 100%;
	background-size: cover;
}
.gallery-box a {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	justify-content: flex-end;
	color: #fff;

	transform: scale(1);
	cursor: pointer;
}
.gallery-box[style*="placeholder"] {
	background-size: cover;
}
.gallery-text {
	width: 100%;
	min-height: 0;
	max-height: 70%;
	margin: 0;
	padding: 1.5em 1.5em 1em;
	border: none;
	border-radius: 0;
	background-color: transparent;
	background-image: linear-gradient(to bottom, rgba(0,0,0, 0), rgba(0,0,0, .5), rgba(0,0,0, .85));
	color: #fff;
	opacity: 1;
	transition: all .3s ease-in-out;
	overflow: hidden;
	cursor: pointer;
	position: relative;
	z-index: 1;
}
.gallery-title {
	margin-bottom: 0;
}
.gallery-box .gallery-brief {
	max-height: 0;
	opacity: 0;
	margin-top: 0;
	margin-bottom: 0;
	transition: all .3s ease-in-out;
}
.gallery-box .gallery-brief:empty {
	margin: 0;
}
.gallery-box a:hover .gallery-brief {
	max-height: 200px;
	opacity: 1;
	margin-top: 1em;
}

/* ! Documents */
.document-category {
	position: relative;
	width: 100%;
	padding: 1em 0;
	margin: 0 0 1.5em 0;
}
	.document-category > h3 {
		display: block;
		position: relative;
		flex-basis: 100%;
		max-width: 100%;
		padding: 0;
	}
	.document-cat-desc {
		display: block;
		position: relative;
		flex-basis: 100%;
		max-width: 100%;
		padding: 0;
	}
	.document-items {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		grid-gap: 2rem;
		align-items: stretch;

		padding-top: .5rem;
	}
		.document-item {
			display: flex;
			flex-direction: column;
			position: relative;
			padding: 2.5rem 2rem 1rem;
			margin: 1rem 0 0;
			border: 1px solid hsla(209, 64%, 22%, 0.2);
			border-radius: .25rem;

			text-align: center;
		}

			.document-item .document-title {
				margin-bottom: 1rem;
			}
			.document-item .document-desc {
				text-align: left;
				font-size: 80%;
			}
			.document-item .document-desc * {
				font-size: inherit;
			}
			.document-item .doc-link {
				padding: .75rem 2rem;
				margin-top: auto;
			}

			.doc-icon {
				width: 3rem;
				height: 3rem;
				display: flex;
				color: inherit;

				position: absolute;
				top: -1.5rem;
				left: 0;
				right: 0;
				margin: 0 auto;
				padding: .5rem;
				border-radius: 50%;
				border: 1px solid hsla(209, 64%, 22%, 0.2);
				background-color: #fff;
			}
			.doc-icon .svg-label {
				margin: 0 .5rem 0 0;
				font-weight: bold;
				font-style: normal;
				font-size: 10px;
				letter-spacing: .03em;
				text-transform: uppercase;
				color: inherit;
			}



/* ! Site Footer  */
.site-footer {
	position: relative;
    z-index: 0;
	padding: 3rem 0;
	margin: 0;
	background-color: #000;
	color: #fff;
}
    .site-footer .container {
        align-items: flex-start;
        column-gap: 2%;
        row-gap: 1.5rem;
    }
        .site-footer .container aside {
            display: block;
            position: relative;
            flex: 0 0 32%;
            max-width: 32%;
        }
            aside p.phone { font-size: 1.25rem; font-weight: 600; }
        .site-footer .container div.footer-block {
            display: block;
            position: relative;
            flex: 0 0 66%;
            max-width: 66%;
            padding: 0.25rem 0 0 0;
        }
        nav#footer-nav {
            display: block;
            position: relative;
            width: 100%;
            padding: 0;
            margin: 0 0 1.5rem 0;
        }
            nav#footer-nav ul#fnav {
                display: flex;
                position: relative;
                justify-content: flex-start;
                align-items: center;
                flex-wrap: wrap;
                column-gap: 2%;
                row-gap: 1rem;
                width: 100%;
                padding: 0;
                margin: 0;
                list-style: none;
            }
                nav#footer-nav ul#fnav li {
                    display: block;
                    position: relative;
                    flex: 0 0 23.5%;
                    max-width: 23.5%;
                    padding: 0;
                    margin: 0;
                }
                    nav#footer-nav ul#fnav li a {
                        display: block;
                        padding: 0.25rem 0;
                    }
        ul.social {
            display: flex;
            position: relative;
            justify-content: flex-start;
            align-items: center;
            flex-wrap: wrap;
            column-gap: 0.5rem;
            row-gap: 0;
            width: 100%;
            padding: 0;
            margin: 0;
        }
            ul.social li {
                display: block;
                position: relative;
                flex: 0 0 30px;
                max-width: 30px;
                padding: 0;
                margin: 0;
            }
                ul.social li a {
                    display: block;
                    position: relative;
                    padding: 0;
                    margin: 0;
                    max-height: 30px;
                }
        p.copyright {
            display: block;
            position: relative;
            flex: 0 0 100%;
            max-width: 100%;
            padding: 1.5rem 0;
            margin: 0;
            border-top: 1px solid #fff;
            text-align: center;
        }

.site-footer h2 { margin-top: 0; font-size: 1.5rem; }

.site-footer a		    { color: #fff; outline: 0; text-decoration: none; }
.site-footer a:hover	{ color: inherit; outline: 0; text-decoration: underline; }
.site-footer a:focus	{ outline: 2px solid #fff;  text-decoration: underline; }
.site-footer a:active   { outline: 0; }

/* ! Error Pages */
.error-header {
	font-size: 50px;
}
.error-code {
	font-size: 12px;
}
