/*
* Heritage Mississagua (2022) Styles
*/


/* Table of contents

- Font Declarations
- Base Styles
- Bootstrap Modifications + Page Wrapper Adjustments
- Base Colour Declarations + Colour Specific Styling Modifications
- Accent Colour Declarations + Colour Specific Styling Modifications
- Typography
- Heading Styles
- Form Styles
- Button Styles
- Utilities
- Content Grid (Padding & Styling)
- Content Sidebar
- Notification Bar
- Header
- Megamenus
- Ask An Historian (Homepage) + Sub-Footers
- Footer
- HOMEPAGE
- LANDING PAGES
- INTERIOR PAGES
- BLOG PAGES
- SECTION OR PAGE-SPECIFIC
- EVENTS CALENDAR STYLING (The Events Calendar)
- EVENT DETAIL STYLING (The Events Calendar)
- 404 PAGE
- MEMBERS ONLY (Landing)

*/


/* Font Declarations */

@font-face {
    font-family: 'Crimson Text';
    src: url('fonts/CrimsonText-Roman.eot');
    src: url('fonts/CrimsonText-Roman.eot?#iefix') format('embedded-opentype'),
        url('fonts/CrimsonText-Roman.woff2') format('woff2'),
        url('fonts/CrimsonText-Roman.woff') format('woff'),
        url('fonts/CrimsonText-Roman.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Crimson Text';
    src: url(fonts/'CrimsonText-Italic.eot');
    src: url('fonts/CrimsonText-Italic.eot?#iefix') format('embedded-opentype'),
        url('fonts/CrimsonText-Italic.woff2') format('woff2'),
        url('fonts/CrimsonText-Italic.woff') format('woff'),
        url('fonts/CrimsonText-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}


/* Base Styles */

html {
	position: relative;
	min-height: 100%;
}
body {
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
	font-size: 17px;
	line-height: 24px;
	color: #27313f;
	background-color: #fff;
  
    text-rendering: optimizeLegibility;     /* emphasizes in legibility over rendering speed */    
    -webkit-font-smoothing: antialiased;    /* apply font anti-aliasing */    
    -moz-osx-font-smoothing: grayscale;     /* optimize font rendering */

    -moz-font-feature-settings:"kern" 1;    /* turn on kerning, highly recomened */ 
    -ms-font-feature-settings:"kern" 1;     /* turn on kerning, highly recomened */ 
    -o-font-feature-settings:"kern" 1;      /* turn on kerning, highly recomened */
    -webkit-font-feature-settings:"kern" 1; /* turn on kerning, highly recomened */
    font-feature-settings:"kern" 1;         /* turn on kerning, highly recomened */
    font-kerning: normal;                   /* turn on kerning, highly recomened */

    font-feature-settings: "liga" on;      /* ligatures: on or off */
    font-feature-settings: "dlig" off;      /* discretionary-ligatures: on or off */
    font-feature-settings: "tnum" off;      /* tabular figures: on or off */        
    font-feature-settings: "onum" off;      /* old-style-figures: on or off */
    font-feature-settings: "ss01" off;      /* alternate glyphs (stylistic Set): on or off */
}
a, a:visited {
	color: inherit;
	text-decoration: none;
}
a:hover, a:focus, a:active {
	color: #d2181d;
	text-decoration: none;
}

@media screen and (-webkit-min-device-pixel-ratio:0) and (min-resolution:.001dpcm) {
    img {
        image-rendering: -webkit-optimize-contrast !important;
    }
}

/* Unset for Safari 11+ */
@media not all and (min-resolution:.001dpcm) {
	@supports (-webkit-appearance:none) and (stroke-color:transparent) {
        img {
            image-rendering: unset !important;
        }
    }
}


/* Bootstrap Modifications + Page Wrapper Adjustments */

#page-wrapper {
	margin-top: 60px;
}
#page-wrapper.show-notifications {
	margin-top: 100px;
}

@media (max-width: 575px) {
	.container {
		padding-left: 24px; /* Adjust default Bootstrap container padding on mobile */
		padding-right: 24px; /* Adjust default Bootstrap container padding on mobile */
	}
}

@media (min-width: 768px) {
	#page-wrapper.show-notifications {
		margin-top: 120px;
	}
}

@media (min-width: 992px) {
	#page-wrapper {
		margin-top: 130px;
	}
	#page-wrapper.show-notifications {
		margin-top: 190px;
	}
}


/* Base Colour Declarations + Colour Specific Styling Modifications */

.bckgnd-teal {
	color: #fff;
	background-color: #008f9c;
}

.bckgnd-grey {
	color: #fff;
	background-color: #1f2f44;
}

.bckgnd-red {
	color: #fff;
	background-color: #d2181d;
}

.bckgnd-cream {
	background-color: #f9f4e8;
}


/* Accent Colour Declarations + Colour Specific Styling Modifications */

.bckgnd-ltgold {
	background-color: #fde5b6;
}
.bckgnd-ltgold a:hover,
.bckgnd-ltgold a:active,
.bckgnd-ltgold a:focus {
	color: #27313f !important;
}

.bckgnd-gold {
	background-color: #ffc16a;
}
.bckgnd-gold a:hover,
.bckgnd-gold a:active,
.bckgnd-gold a:focus {
	color: #27313f !important;
}

.bckgnd-ltred {
	background-color: #ffb597;
}
.bckgnd-ltred a:hover,
.bckgnd-ltred a:active,
.bckgnd-ltred a:focus {
	color: #27313f !important;
}

.bckgnd-ltteal {
	background-color: #ccf6d5;
}
.bckgnd-ltteal a:hover,
.bckgnd-ltteal a:active,
.bckgnd-ltteal a:focus {
	color: #27313f !important;
}

.bckgnd-mint {
	background-color: #a1e1c5;
}
.bckgnd-mint a:hover,
.bckgnd-mint a:active,
.bckgnd-mint a:focus {
	color: #27313f !important;
}

.bckgnd-ltgreen {
	background-color: #d9f3b6;
}
.bckgnd-ltgreen a:hover,
.bckgnd-ltgreen a:active,
.bckgnd-ltgreen a:focus {
	color: #27313f !important;
}

.bckgnd-green {
	background-color: #b5e292;
}
.bckgnd-green a:hover,
.bckgnd-green a:active,
.bckgnd-green a:focus {
	color: #27313f !important;
}

.bckgnd-dkblue {
	color: #fff;
	background-color: #005671;
}
.bckgnd-dkblue a:hover,
.bckgnd-dkblue a:active,
.bckgnd-dkblue a:focus,
.bckgnd-dkblue #breadcrumb,
.bckgnd-dkblue #breadcrumb a:link,
.bckgnd-dkblue #interior-breadcrumb,
.bckgnd-dkblue #interior-breadcrumb a:link,
.bckgnd-dkblue #breadcrumb a:hover,
.bckgnd-dkblue #breadcrumb a:active,
.bckgnd-dkblue #breadcrumb a:focus,
.bckgnd-dkblue #interior-breadcrumb a:hover,
.bckgnd-dkblue #interior-breadcrumb a:active,
.bckgnd-dkblue #interior-breadcrumb a:focus {
    color: #fff !important;
}
#landing-hero.bckgnd-dkblue #landing-hero-text #hero-lede hr {
    background-color: #fff !important;
}
.bckgnd-dkblue button.landing-quicklinks-button {
	color: #fff !important;
	border-bottom: 1px solid #fff !important;
}

.bckgnd-dkteal {
	color: #fff;
	background-color: #115965;
}
.bckgnd-dkteal a:hover,
.bckgnd-dkteal a:active,
.bckgnd-dkteal a:focus,
.bckgnd-dkteal #breadcrumb,
.bckgnd-dkteal #breadcrumb a:link,
.bckgnd-dkteal #interior-breadcrumb,
.bckgnd-dkteal #interior-breadcrumb a:link,
.bckgnd-dkteal #breadcrumb a:hover,
.bckgnd-dkteal #breadcrumb a:active,
.bckgnd-dkteal #breadcrumb a:focus,
.bckgnd-dkteal #interior-breadcrumb a:hover,
.bckgnd-dkteal #interior-breadcrumb a:active,
.bckgnd-dkteal #interior-breadcrumb a:focus {
    color: #fff !important;
}
#landing-hero.bckgnd-dkteal #landing-hero-text #hero-lede hr {
    background-color: #fff !important;
}
.bckgnd-dkteal button.landing-quicklinks-button {
	color: #fff !important;
	border-bottom: 1px solid #fff !important;
}

.bckgnd-dkred {
	color: #fff;
	background-color: #872d2c;
}
.bckgnd-dkred a:hover,
.bckgnd-dkred a:active,
.bckgnd-dkred a:focus,
.bckgnd-dkred #breadcrumb,
.bckgnd-dkred #breadcrumb a:link,
.bckgnd-dkred #interior-breadcrumb,
.bckgnd-dkred #interior-breadcrumb a:link,
.bckgnd-dkred #breadcrumb a:hover,
.bckgnd-dkred #breadcrumb a:active,
.bckgnd-dkred #breadcrumb a:focus,
.bckgnd-dkred #interior-breadcrumb a:hover,
.bckgnd-dkred #interior-breadcrumb a:active,
.bckgnd-dkred #interior-breadcrumb a:focus {
    color: #fff !important;
}
#landing-hero.bckgnd-dkred #landing-hero-text #hero-lede hr {
    background-color: #fff !important;
}
.bckgnd-dkred button.landing-quicklinks-button {
	color: #fff !important;
	border-bottom: 1px solid #fff !important;
}

@media (max-width: 991px) {
    .bckgnd-dkblue #content-sidebar .content-sidebar-wrapper {
	    border-top: 1px solid #80abb8 !important;
    }
	
    .bckgnd-dkteal #content-sidebar .content-sidebar-wrapper {
	    border-top: 1px solid #5f9098 !important;
    }
	
    .bckgnd-dkred #content-sidebar .content-sidebar-wrapper {
	    border-top: 1px solid #b27877 !important;
    }
}

@media (min-width: 992px) {
    .bckgnd-dkblue #content-sidebar {
	    border-left: 1px solid #80abb8 !important;
    }
	
    .bckgnd-dkteal #content-sidebar .content-sidebar-wrapper {
	    border-top: 1px solid #5f9098 !important;
    }
	
    .bckgnd-dkred #content-sidebar .content-sidebar-wrapper {
	    border-top: 1px solid #b27877 !important;
    }
}


/* Typography */

.page-grouping {
    font-family: 'Raleway', sans-serif;
	font-weight: 500;
	font-size: 21px;
	line-height: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
	color: #666;
}
.page-grouping + br {
	margin-bottom: 10px;
}
.page-title {
    font-family: 'Raleway', sans-serif;
	font-weight: 400;
	font-size: 28px;
	line-height: 29px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.sansserif-allcaps-small,
.sansserif-allcaps-medium,
.sansserif-allcaps-large {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.sansserif-allcaps-small {
    font-weight: 600;
    font-size: 14px !important;
    line-height: 15px !important;
}
.content-mainstage-cta .sansserif-allcaps-small,
.content-mainstage-cta-image .mainstage-cta-text .sansserif-allcaps-small {
	font-weight: 600 !important;
}
.sansserif-allcaps-medium {
    font-weight: 600;
    font-size: 15px;
    line-height: 16px;
}
.sansserif-allcaps-large {
	margin-bottom: 20px;
    font-weight: 500;
    font-size: 21px;
    line-height: 22px;
}
.blog-callout-text,
.blog-callout-text p,
.contents-list-text,
.contents-list-text p,
.timeline-callout-text,
.timeline-callout-text p {
	font-size: 15px;
	line-height: 20px;
}
.blog-callout-text p {
	margin-bottom: 10px;
}
.serif-small,
.blog-callout-text .blog-callout-title,
.contents-list-text .contents-list-title {
	margin-bottom: 15px;
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
	font-size: 24px;
	line-height: 28px;
	letter-spacing: -0.02em;
	color: #27313f;
}
.blog-callout-text .blog-callout-title {
	margin-top: 15px;
}
.list-lede-text,
.list-lede-text p,
.image-caption-description,
.image-caption-description p,
p.team-member-role,
p.team-member-contact {
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
	font-size: 19px;
	line-height: 22px;
	letter-spacing: -0.02em;
}
.image-caption-description p {
	margin-bottom: 0;
}
.image-caption-description p + p {
	margin-top: 1rem;
}
.image-caption-title,
.mainstage-image-caption .image-caption-title
#content-mainstage h4.image-caption-title {
	margin-bottom: 10px !important;
    font-family: 'Raleway', sans-serif !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	line-height: 15px !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
}
.image-caption-title:before {
	margin-left: -2px;
	margin-right: 5px;
	content: '\25b2';
}
#blog-hero-article-title p {
	margin: 0;
}

@media (min-width: 576px) and (max-width: 991px) {
    #content-three-columns #content-sidebar .image-caption-title:before,
    #content-two-columns #content-sidebar .image-caption-title:before,
	#content-left-bias #content-sidebar .image-caption-title:before {
	    content: '\25C0'; /* rotate arrow for adjacent caption */
    }
    #content-split-columns #content-sidebar .image-caption-title:before {
	    content: '\25C0'; /* rotate arrow for adjacent caption */
    }
}

@media (min-width: 768px) {
    .page-title {
		font-size: 31px;
		line-height: 32px;
    }
	.serif-small,
    .blog-callout-text .blog-callout-title,
	.contents-list-text .contents-list-title {
		font-size: 28px;
		line-height: 32px;
	}
    .blog-callout-text .blog-callout-title,
	.contents-list-text .contents-list-title {
	    margin-bottom: 20px;
	}
    .blog-callout-text .blog-callout-title {
	    margin-top: 20px;
	}
}

@media (min-width: 992px) {
    .page-grouping {
		font-weight: 400;
		font-size: 24px;
		line-height: 26px;
    }
    .page-title {
		font-size: 35px;
		line-height: 35px;
    }
    .sansserif-allcaps-medium {
        font-size: 17px;
        line-height: 18px;
	}
    .sansserif-allcaps-large {
	    margin-bottom: 30px;
        font-weight: 400;
        font-size: 24px;
        line-height: 25px;
	}
}


/* Heading Styles */

h1 {
	margin: 0;
	font-size: 17px;
	line-height: 24px;
}
#home-hero-overlay #home-hero-textbox h2 {
	margin-bottom: 15px;
	color: #fff;
}
#home-hero-overlay #home-hero-textbox h3 {
	margin-bottom: 20px;
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
	font-size: 33px;
	line-height: 33px;
	letter-spacing: -0.04em;
	color: #fff;
}
.program-link-wrapper .program-link-textbox .program-link-description h3,
.program-link-wrapper .program-link-textbox .program-link-description h4 {
	margin: 0;
}
.program-link-wrapper .program-link-textbox .program-link-description h3,
.related-link-wrapper .related-link-textbox .related-link-description h3 {
	margin-bottom: 8px;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
	font-size: 11px;
	line-height: 12px;
}
.program-link-wrapper .program-link-textbox .program-link-description h4,
.related-link-wrapper .related-link-textbox .related-link-description h4 {
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
	font-size: 22px;
	line-height: 22px;
	letter-spacing: -0.02em;
}
#home-donate-membership h2 {
	margin-bottom: 35px;
}
#home-mailinglist-sponsors h2 {
	margin-bottom: 20px;
}
#content-mainstage .content-col-main h3,
#content-mainstage.content-col-main h3,
.sidebar-text h3,
.contact-sidebar-wrapper h3,
.content-blog #content-mainstage .content-col-main h4,
.content-blog #content-mainstage.content-col-main h4,
.content-blog .sidebar-text h4 {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
#blog-hero-article-title h3 {
	margin-bottom: 25px;
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
	font-size: 31px;
	line-height: 31px;
	letter-spacing: -0.02em;
}
.sidebar-text h3,
.content-blog .sidebar-text h4 {
	margin-bottom: 15px;
    font-weight: 600;
    font-size: 14px !important;
    line-height: 15px !important;
}
#content-mainstage .content-col-main h3,
#content-mainstage.content-col-main h3,
.contact-sidebar-wrapper h3,
.content-blog #content-mainstage .content-col-main h4,
.content-blog #content-mainstage.content-col-main h4,
.content-blog .contact-sidebar-wrapper h4 {
	margin-bottom: 30px;
    font-weight: 500;
    font-size: 21px;
    line-height: 22px;
}
#content-mainstage .content-col-main p + h3,
#content-mainstage.content-col-main p + h3,
.contact-sidebar-wrapper p + h3,
.content-blog #content-mainstage .content-col-main p + h4,
.content-blog #content-mainstage.content-col-main p + h4,
.content-blog .contact-sidebar-wrapper p + h4 {
	margin-top: 40px;
}
h3 + .list-lede-text {
	margin-top: 20px;
}
#events-notification h3 {
	margin-bottom: 30px;
}
#content-mainstage h4,
.contact-sidebar-wrapper h4,
.content-blog #content-mainstage h5,
.content-blog .contact-sidebar-wrapper h5 {
	margin-bottom: 15px;
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
	font-size: 24px;
	line-height: 28px;
	letter-spacing: -0.02em;
}
.content-blog #content-mainstage h5 {
	text-transform: none;
}
#content-mainstage h4 + h5,
.contact-sidebar-wrapper h4 + h5,
.content-blog #content-mainstage h5 + h6,
.content-blog .contact-sidebar-wrapper h5 + h6 {
	margin-top: 20px;
}
#content-mainstage h5,
.contact-sidebar-wrapper h5,
.content-blog #content-mainstage h6,
.content-blog .contact-sidebar-wrapper h6 {
	margin-bottom: 15px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.sidebar-text h4,
.content-blog .sidebar-text h5 {
	margin-bottom: 15px;
    font-family: 'Raleway', sans-serif;
	font-weight: 500;
	font-size: 23px;
	line-height: 26px;
}

@media (min-width: 768px) {
	#home-programs-title h2 {
		margin-bottom: 20px;
	}
    h3 + .list-lede-text {
	    margin-top: 30px;
    }
    #blog-hero-article-title h3 {
		margin-bottom: 30px;
	    font-size: 43px;
	    line-height: 43px;
    }
	#content-mainstage h4,
    .contact-sidebar-wrapper h4,
    .content-blog #content-mainstage h5,
    .content-blog .contact-sidebar-wrapper h5 {
		font-size: 28px;
		line-height: 32px;
	}
}

@media (min-width: 992px) {
    #home-hero-overlay #home-hero-textbox h2 {
		margin-bottom: 20px;
	}
    #home-hero-overlay #home-hero-textbox h3 {
		margin-bottom: 25px;
		font-size: 42px;
		line-height: 40px;
	}
	#home-programs-title h2 {
		margin-bottom: 40px;
	}
    #content-mainstage .content-col-main h3,
	#content-mainstage.content-col-main h3,
    .contact-sidebar-wrapper h3,
    .content-blog #content-mainstage .content-col-main h4,
    .content-blog #content-mainstage.content-col-main h4,
    .content-blog .contact-sidebar-wrapper h4 {
        font-weight: 400;
        font-size: 24px;
        line-height: 25px;
	}
    #content-mainstage .content-col-main p + h3,
	#content-mainstage.content-col-main p + h3,
    .contact-sidebar-wrapper p + h3,
    .content-blog #content-mainstage .content-col-main p + h4,
    .content-blog #content-mainstage.content-col-main p + h4,
    .content-blog .contact-sidebar-wrapper p + h4 {
	    margin-top: 45px;
    }
	#content-mainstage h5,
    .contact-sidebar-wrapper h5,
    .content-blog #content-mainstage h6,
    .content-blog .contact-sidebar-wrapper h6 {
		font-size: 17px;
		line-height: 18px;
	}
}


/* Form Styles */

.contact-sidebar-wrapper form {
	margin-top: 50px;
}
.contact-sidebar-wrapper form input[type=text],
.contact-sidebar-wrapper form input[type=email],
.contact-sidebar-wrapper form input[type=tel],
.contact-sidebar-wrapper form textarea,
.contact-sidebar-wrapper form select {
	margin-bottom: 5px;
	padding: 9px 15px 7px 15px;
	max-width: 100%;
	border-radius: 0;
	border: 1px solid #939598;
}
.contact-sidebar-wrapper form input[type=text],
.contact-sidebar-wrapper form input[type=email],
.contact-sidebar-wrapper form input[type=tel],
.contact-sidebar-wrapper form textarea,
.contact-sidebar-wrapper form select,
.contact-sidebar-wrapper form label {
	width: 100%;
}
.contact-sidebar-wrapper form label {
	font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.contact-sidebar-wrapper form label input,
.contact-sidebar-wrapper form label textarea {
	margin-top: 5px;
}
.contact-sidebar-wrapper form input[type=submit] {
	display: inline-block;
	margin-top: 15px;
	padding: 15px 50px;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 15px;
	letter-spacing: 0.04em;
	color: #27313f;
	text-transform: uppercase;
	background-color: transparent;
	border: 1px solid #27313f;
	text-decoration: none !important;
}
.contact-sidebar-wrapper form input[type=submit]:hover {
	color: #fff;
	background-color: #27313f;
}


/* Button Styles */

a.text-button {
	display: block;
	margin-top: 0;
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
	font-size: 21px;
    line-height: 24px;
	font-style: normal;
	letter-spacing: -0.02em;
	text-transform: none;
	text-decoration: underline !important;
}
a.boxed-button,
button.boxed-button {
	display: inline-block;
	margin-top: 15px;
	padding: 15px 50px;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 15px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background-color: transparent;
	text-decoration: none !important;
}
a.boxed-button:hover,
a.boxed-button:active {
	text-decoration: none !important;
}
a.boxed-button.boxed-border-white,
button.boxed-button.boxed-border-white {
	color: #fff;
	border: 1px solid #fff;
}
a.boxed-button.boxed-border-white:hover,
a.boxed-button.boxed-border-white:active,
a.boxed-button.boxed-border-white:focus,
button.boxed-button.boxed-border-white:hover {
	background-color: #fff;
}
/* Highlight buttont text as grey is background is grey (set as default) */
a.boxed-button.boxed-border-white:hover,
a.boxed-button.boxed-border-white:active,
a.boxed-button.boxed-border-white:focus,
button.boxed-button.boxed-border-white:hover,
.bckgnd-grey a.boxed-button.boxed-border-white:hover,
.bckgnd-grey a.boxed-button.boxed-border-white:active,
.bckgnd-grey a.boxed-button.boxed-border-white:focus {
	color: #27313f !important;
}
/* Highlight buttont text as red is background is red */
.bckgnd-red a.boxed-button.boxed-border-white:hover,
.bckgnd-red a.boxed-button.boxed-border-white:active,
.bckgnd-red a.boxed-button.boxed-border-white:focus,
.bckgnd-red button.boxed-button.boxed-border-white:hover {
	color: #d2181d !important;
}
/* Highlight buttont text as teal is background is teal OR if button appears within the sub-footer */
#sub-footer a.boxed-button.boxed-border-white:hover,
#sub-footer a.boxed-button.boxed-border-white:active,
#sub-footer a.boxed-button.boxed-border-white:focus,
#sub-footer button.boxed-button.boxed-border-white:hover,
.bckgnd-teal a.boxed-button.boxed-border-white:hover,
.bckgnd-teal a.boxed-button.boxed-border-white:active,
.bckgnd-teal a.boxed-button.boxed-border-white:focus {
	color: #008f9c !important;
}
a.boxed-button.boxed-border-grey,
button.boxed-button.boxed-border-grey {
	color: #27313f;
	background-color: transparent;
	border: 1px solid #27313f;
}
a.boxed-button.boxed-border-grey:hover,
a.boxed-button.boxed-border-grey:active,
a.boxed-button.boxed-border-grey:focus,
button.boxed-button.boxed-border-grey:hover {
	color: #fff !important;
	background-color: #1f2f44;
}
a.directional-button,
p.directional-button {
	display: inline-block;
	position: relative;
	padding-right: 25px;
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
	font-size: 21px;
    line-height: 24px;
	font-style: normal;
	letter-spacing: -0.02em;
	text-transform: none;
}
p.directional-button {
	margin-bottom: 0;
}
p.directional-button:after {
	margin-top: -2px;
}
a.directional-button:after,
p.directional-button:after {
	position: absolute;
	right: 0;
	width: 25px;
	height: 28px;
	content: '';
	background-size: 25px 28px;
	background-repeat: no-repeat;
	background-position: right center;
	-webkit-transition: right .20s ease-in-out;
	-moz-transition: right .20s ease-in-out;
	-o-transition: right .20s ease-in-out;
	transition: right .20s ease-in-out;
}
a.directional-button:hover:after,
a.directional-button:active:after,
a.directional-button:focus:after {
	right: -8px;
}
a.directional-button-grey:hover,
a.directional-button-grey:active,
a.directional-button-grey:focus {
	color: #27313f !important;
}
a.button-grey,
a.directional-button-grey {
	color: #27313f !important;
}
a.directional-button-grey:after {
	background-image: url(../imgs/heritage-mississauga-link-arrow-grey.png);
}
a.back-button {
	display: inline-block;
	position: relative;
	margin-top: 20px;
	padding-left: 25px;
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
	font-size: 21px;
    line-height: 24px;
	font-style: normal;
	letter-spacing: -0.02em;
	text-transform: none;
}
a.back-button:before {
	position: absolute;
	left: 0;
	width: 25px;
	height: 28px;
	content: '';
	background-image: url(../imgs/heritage-mississauga-link-arrow-back.png);
	background-size: 25px 28px;
	background-repeat: no-repeat;
	background-position: left center;
	-webkit-transition: left .20s ease-in-out;
	-moz-transition: left .20s ease-in-out;
	-o-transition: left .20s ease-in-out;
	transition: left .20s ease-in-out;
}
a.back-button:hover:before,
a.back-button:active:before,
a.back-button:focus:before {
	left: -8px;
}
a.back-button:hover,
a.back-button:active,
a.back-button:focus {
	color: #27313f !important;
}
a.button-grey:hover,
a.button-grey:active,
a.button-grey:focus {
	color: #d2181d !important;
}
a.button-white,
a.directional-button-white {
	color: #fff !important;
}
a.directional-button-white:after,
p.directional-button-white:after {
	background-image: url(../imgs/heritage-mississauga-link-arrow-white.png);
}
a.button-white:hover,
a.button-white:active,
a.button-white:focus,
a.directional-button-white:hover,
a.directional-button-white:active,
a.directional-button-white:focus {
	color: #fff !important;
}
a.button-teal, a.directional-button-teal {
	color: #008f9c !important;
}
a.directional-button-teal:after {
	background-image: url(../imgs/heritage-mississauga-link-arrow-teal.png);
}
a.button-teal:hover,
a.button-teal:active,
a.button-teal:focus,
a.directional-button-teal:hover,
a.directional-button-teal:active,
a.directional-button-teal:focus {
	color: #008f9c !important;
}


/* Utilities */

.anchor-bump {
	scroll-margin-top: 90px; /* Match value to header height + 30px */
}
#page-wrapper.show-notifications .anchor-bump {
	scroll-margin-top: 130px; /* Match value to header height + 30px */
}
.dropdown-menu {
	border-radius: 0 !important;
}
#breadcrumb,
#interior-breadcrumb {
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	font-size: 12px;
	line-height: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
#interior-breadcrumb {
	margin-top: 42px;
}
#breadcrumb,
#breadcrumb a:link,
#interior-breadcrumb,
#interior-breadcrumb a:link {
	color: #27313f;
	text-decoration: none;
}
#breadcrumb a:hover,
#breadcrumb a:active,
#breadcrumb a:focus,
#interior-breadcrumb a:hover,
#interior-breadcrumb a:active,
#interior-breadcrumb a:focus {
	color: #007d8a !important;
	text-decoration: underline;
}
#breadcrumb .breadcrumb-active,
#interior-breadcrumb .breadcrumb-active {
	font-weight: 600;
}
#interior-breadcrumb ul.breadcrumb-ancestors {
	display: inline-block;
	margin: 0;
	padding: 0;
	list-style: none;
}
#interior-breadcrumb ul.breadcrumb-ancestors li {
	display: inline-block;
	padding-right: 5px;
}
#interior-breadcrumb ul.breadcrumb-ancestors li:before {
	padding-right: 8px;
	content: '>'
}
button.landing-quicklinks-button {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
	padding-bottom: 10px;
	width: 100%;
	text-align: left;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 15px;
	line-height: 16px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #27313f;
	background-color: transparent;
	border: 0;
	border-bottom: 1px solid #27313f;
	text-decoration: none !important;
}
#landing-hero button.landing-quicklinks-button {
	margin-top: 45px;
}
button.landing-quicklinks-button:after {
    position: absolute;
	right: 0;
    content: '\25bc';
}
#quicklinks-list ul {
	margin: 0;
	margin-top: 10px;
	padding: 0;
	list-style: none;
}
#quicklinks-list ul li {
	display: block;
	margin-top: 0;
	width: 100%;
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
	font-size: 21px;
	line-height: 24px;
	font-style: normal;
	letter-spacing: -0.02em;
	text-transform: none;
}
#quicklinks-list ul li a {
	text-decoration: underline;
}
#interior-related {
	padding-top: 15px;
	padding-bottom: 45px;
}
.interior-related-title {
	padding-bottom: 20px;
}
.program-link-wrapper,
.related-link-wrapper {
	position: relative;
	width: 100%;
	height: 350px;
	background-color: #27313f;
}
.program-link-wrapper .program-link-image,
.related-link-wrapper .related-link-image {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.program-link-wrapper .program-link-image img,
.related-link-wrapper .related-link-image img {
	object-fit: cover;
	width: 100%;
	min-width: 100%;
	height: auto;
	min-height: 100%;
}
.program-link-wrapper .program-link-textbox,
.related-link-wrapper .related-link-textbox {
	position: absolute;
	padding-top: 15px;
	padding-bottom: 15px;
	bottom: 6px;
	left: 6px;
	width: calc(100% - 12px);
	max-width: calc(100% - 12px);
	min-height: 90px;
	background-color: #fff;
}
.program-link-wrapper .program-link-textbox .program-link-date {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	height: 100%;
	min-height: 60px;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.program-link-wrapper .program-link-textbox .program-link-description,
.related-link-wrapper .related-link-textbox .related-link-description {
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
	height: 100%;
	min-height: 60px;
	border-left: 1px solid #b2b2b2;
}
.content-mainstage-text ul,
.content-mainstage-text ol {
	padding-left: 1em;
}
.content-mainstage-cta,
.content-mainstage-cta-image {
	margin-bottom: 65px;
}
.content-mainstage-text + .content-mainstage-cta,
.content-mainstage-cta + .content-mainstage-cta,
.content-mainstage-cta-image + .content-mainstage-cta,
.content-mainstage-image-single + .content-mainstage-cta,
.content-mainstage-image-pair + .content-mainstage-cta,
.content-mainstage-video + .content-mainstage-cta,
.content-mainstage-button + .content-mainstage-cta,
.content-mainstage-text + .content-mainstage-cta-image,
.content-mainstage-cta + .content-mainstage-cta-image,
.content-mainstage-cta-image + .content-mainstage-cta-image,
.content-mainstage-image-single + .content-mainstage-cta-image,
.content-mainstage-image-pair + .content-mainstage-cta-image,
.content-mainstage-video + .content-mainstage-cta-image,
.content-mainstage-button + .content-mainstage-cta-image {
	margin-top: 65px;
}
.content-mainstage-cta + ,
.content-mainstage-cta-image {
	margin-top: 65px;
}
.content-mainstage-cta,
.content-mainstage-cta-image .mainstage-cta-text {
	padding: 35px 40px 40px 40px;
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
	font-size: 24px;
    line-height: 28px;
	font-style: normal;
	letter-spacing: -0.02em;
	text-transform: none;
}
.content-mainstage-image-single,
.content-mainstage-image-pair {
	margin-bottom: 60px;
}
.content-mainstage-text + .content-mainstage-image-single,
.content-mainstage-cta + .content-mainstage-image-single,
.content-mainstage-cta-image + .content-mainstage-image-single,
.content-mainstage-image-single + .content-mainstage-image-single,
.content-mainstage-image-pair + .content-mainstage-image-single,
.content-mainstage-video + .content-mainstage-image-single,
.content-mainstage-button + .content-mainstage-image-single,
.content-mainstage-text + .content-mainstage-image-pair,
.content-mainstage-cta + .content-mainstage-image-pair,
.content-mainstage-cta-image + .content-mainstage-image-pair,
.content-mainstage-image-single + .content-mainstage-image-pair,
.content-mainstage-image-pair + .content-mainstage-image-pair,
.content-mainstage-video + .content-mainstage-image-pair,
.content-mainstage-button + .content-mainstage-image-pair {
	margin-top: 65px;
}
.content-mainstage-image-single {
	border-bottom: 1px solid #b2b2b2;
}
.content-mainstage-image-single .mainstage-image-caption {
	padding-top: 15px;
	padding-bottom: 15px;
}
.content-mainstage-image-pair .pair-left,
.content-mainstage-image-pair .pair-right {
	height: 100%;
}
.content-mainstage-image-pair .mainstage-image-caption {
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #b2b2b2;
}
.content-mainstage-video {
	margin-bottom: 55px;
}

.content-mainstage-text + .content-mainstage-video,
.content-mainstage-cta + .content-mainstage-video,
.content-mainstage-cta-image + .content-mainstage-video,
.content-mainstage-image-single + .content-mainstage-video,
.content-mainstage-image-pair + .content-mainstage-video,
.content-mainstage-video + .content-mainstage-video,
.content-mainstage-button + .content-mainstage-video,
.content-mainstage-text iframe {
	margin-top: 65px;
}
.content-mainstage-video iframe {
	width: 100%;
}
.content-mainstage-button hr {	
	margin: 30px auto 25px 0;
	width: 30px;
	height: 4px;
	background-color: #008f9c;
	border: 0;
	opacity: 1;
}
.content-mainstage-button h3.mainstage-button-heading,
.content-mainstage-button .mainstage-button-text {
	color: #008f9c;
}
.content-mainstage-button h3.mainstage-button-heading {
	margin-bottom: 10px !important;
}
#content-split-columns .content-mainstage-video iframe,
#content-left-bias .content-mainstage-video iframe,
#content-three-columns .content-mainstage-video iframe {
	height: calc((100vw - 64px)* .56);
}

@media (min-width: 576px) {
    #interior-related {
	    padding-top: 35px;
    }
    #content-split-columns .content-mainstage-video iframe,
	#content-left-bias .content-mainstage-video iframe,
	#content-three-columns .content-mainstage-video iframe {
		height: 290px;
    }
}

@media (min-width: 768px) {
	#page-wrapper.show-notifications .anchor-bump {
	    scroll-margin-top: 150px; /* Match value to header height + 30px */
    }
    #interior-related {
	    padding-top: 45px;
	    padding-bottom: 45px;
    }
    .interior-related-title {
		padding-bottom: 25px;
    }
    .content-mainstage-cta,
    .content-mainstage-cta-image .mainstage-cta-text {
		font-size: 28px;
		line-height: 32px;
    }
	#content-split-columns .content-mainstage-video iframe {
		height: 178px;
	}
    #content-left-bias .content-mainstage-video iframe {
		height: 390px;
    }
	#content-three-columns .content-mainstage-video iframe {
		height: 254px;
    }
}

@media (max-width: 991px) {
    #interior-hero-subnav {
	    margin-top: 15px;
		padding-bottom: 10px;
    }
    .program-link-wrapper,
	.related-link-wrapper {
		margin-bottom: 25px;
	}
    .content-mainstage-image-pair .pair-left {
		margin-bottom: 65px;
    }
}

@media (min-width: 992px) {
	.anchor-bump {
	    scroll-margin-top: 160px; /* Match value to header height + 30px */
    }
	#page-wrapper.show-notifications .anchor-bump {
	    scroll-margin-top: 210px; /* Match value to header height + 30px */
    }
    #interior-hero-subnav {
		padding-top: 50px;
		padding-left: 8px;
		padding-bottom: 40px;
	}
    #interior-related {
	    padding-bottom: 70px;
    }
    .content-mainstage-cta-image .mainstage-cta-image {
	    display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
    }
	.content-mainstage-cta-image .mainstage-cta-image img {
		object-fit: cover;
		min-width: 100%;
		min-height: 100%;
	}
	#content-split-columns .content-mainstage-video iframe {
		height: 210px;
	}
    #content-left-bias .content-mainstage-video iframe {
		height: 298px;
    }
	#content-three-columns .content-mainstage-video iframe {
		height: 164px;
    }
}

@media (min-width: 1200px) {
	#content-split-columns .content-mainstage-video iframe {
		height: 252px;
	}
    #content-left-bias .content-mainstage-video iframe {
		height: 358px;
    }
	#content-three-columns .content-mainstage-video iframe {
		height: 200px;
    }
}

@media (min-width: 1400px) {
	#content-split-columns .content-mainstage-video iframe {
		height: 294px;
	}
    #content-left-bias .content-mainstage-video iframe {
		height: 418px;
    }
	#content-three-columns .content-mainstage-video iframe {
		height: 232px;
    }
}


/* Content Grid (Padding and Styling) */

#content-split-columns,
#content-left-bias {
	padding-top: 65px;
}
#content-split-columns,
#content-left-bias,
#content-two-columns,
#content-three-columns,
#content-mainstage .content-col-main,
#content-mainstage.content-col-main {
	padding-bottom: 40px;
}
#content-two-columns,
#content-three-columns {
	padding-top: 74px;
}
#content-mainstage a:link {
	text-decoration: underline;
}
#content-mainstage a:hover,
#content-mainstage a:active,
#content-mainstage a:focus {
	color: #008f9c;
}
#content-two-columns #content-mainstage .col-subtitle-wrapper,
#content-three-columns #content-mainstage .col-subtitle-wrapper {
	padding-top: 20px;
	padding-bottom: 30px;
	border-top: 1px solid #27313f;
}
#content-two-columns #content-mainstage .content-col-subtitle .sansserif-allcaps-medium,
#content-three-columns #content-mainstage .content-col-subtitle .sansserif-allcaps-medium {
	font-weight: 500;
}

@media (max-width: 767px) {	
    #content-split-columns #content-mainstage,
	#content-left-bias #content-mainstage,
	#content-split-columns #content-mainstage {
	    padding-bottom: 55px;
	}
}

@media (min-width: 767px) and (max-width: 991px) {
	#content-split-columns #content-mainstage {
		padding-right: 30px;
	}
}

@media (min-width: 768px) {
    #content-split-columns {
	    padding-top: 65px;
	}
	#content-two-columns,
    #content-three-columns {
	    padding-top: 68px;
	}
	#content-two-columns #content-mainstage .col-subtitle-wrapper,
    #content-three-columns #content-mainstage .col-subtitle-wrapper {
		margin-top: 6px;
	    padding-bottom: 40px;
    }
    #content-mainstage.content-mainstage-trim {
	    padding-bottom: 0 !important;
    }
    #content-mainstage.content-mainstage-trim p:last-child {
		margin-bottom: 0;
	}
}

@media (max-width: 991px) {
	#content-two-columns #content-mainstage,
	#content-three-columns #content-mainstage {
	    padding-bottom: 15px;
	}
}

@media (min-width: 992px) {
	#content-two-columns #content-mainstage.content-col-main,
	#content-three-columns #content-mainstage.content-col-main {
		padding-left: 20px;
	}
}


/* Content Sidebar */

#content-sidebar {
	margin-bottom: 50px;
}
#content-sidebar a:hover,
#content-sidebar a:active,
#content-sidebar a:focus {
	color: #d2181d;
}
#content-sidebar .sidebar-image,
#content-sidebar .sidebar-text,
#content-sidebar .sidebar-cta {
	padding-bottom: 60px;
}
#content-sidebar .sidebar-image:last-child,
#content-sidebar .sidebar-text:last-child {
	padding-bottom: 0;
}
#content-sidebar .sidebar-image-caption {
	padding-top: 15px;
}
#content-sidebar .sidebar-text,
#content-sidebar .sidebar-text p {
	font-family: 'Crimson Text', 'Crimson Pro', serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 22px;
    letter-spacing: -0.02em;
}
#content-sidebar .sidebar-image a:hover,
#content-sidebar .sidebar-image a:active,
#content-sidebar .sidebar-image a:focus,
#content-sidebar .sidebar-text a:hover,
#content-sidebar .sidebar-text a:active,
#content-sidebar .sidebar-text a:focus {
	color: #008f9c;
}
#content-sidebar iframe {
	margin-top: 20px;
	width: 100%;
	max-width: 100%;
	height: calc((100vw - 63px)* .5625);
}

@media (min-width: 576px) {
	#content-sidebar iframe {
	    height: 290px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    #content-split-columns #content-sidebar .sidebar-image {
	    padding-bottom: 65px
    }
    #content-split-columns #content-sidebar .sidebar-image .sidebar-image-caption {
		margin-top: -3px;
	    padding-top: 0;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    #content-two-columns #content-sidebar .sidebar-image,
    #content-three-columns #content-sidebar .sidebar-image {
	    padding-bottom: 65px
    }
    #content-two-columns #content-sidebar .sidebar-image .sidebar-image-caption,
    #content-three-columns #content-sidebar .sidebar-image .sidebar-image-caption,
	#content-left-bias #content-sidebar .sidebar-image .sidebar-image-caption,
	#content-split-columns #content-sidebar .sidebar-image .sidebar-image-caption {
		margin-top: -3px;
	    padding-top: 0;
    }
}

@media (min-width: 768px) {
	#content-sidebar iframe {
	    height: 390px;
    }
}

@media (max-width: 991px) {
    #content-two-columns #content-sidebar .content-sidebar-wrapper,
    #content-three-columns #content-sidebar .content-sidebar-wrapper,
	#content-left-bias #content-sidebar .content-sidebar-wrapper,
	#content-split-columns #content-sidebar .content-sidebar-wrapper {
		padding-top: 20px;
		border-top: 1px solid #b2b2b2;
    }
}

@media (min-width: 992px) {
    #content-sidebar {
		padding-left: 20px !important;
		border-left: 1px solid #b2b2b2;
	}
    #content-split-columns #content-sidebar .content-sidebar-wrapper,
	#content-split-columns #content-sidebar .contact-sidebar-wrapper {
		padding-left: calc(8.33333333% + 3px);
	}
    #content-left-bias #content-sidebar {
		padding-left: 20px !important;
		border-left: 1px solid #b2b2b2;
	}
	#content-sidebar iframe {
	    height: 160px;
    }
}

@media (min-width: 1200px) {
    #content-split-columns #content-sidebar .content-sidebar-wrapper {
		padding-left: calc(8.33333333% + 18px);
	}
	#content-sidebar iframe {
	    height: 195px;
    }
}

@media (min-width: 1400px) {
	#content-sidebar iframe {
	    height: 228px;
    }
}


/* Notifications Bar */

#notifications-bar {
	position: fixed;
	padding-top: 5px;
	padding-bottom: 5px;
	top: 0;
	left: 0;
	z-index: 2000;
	width: 100%;
	height: 40px;
	color: #fff;
	background-color: #008f9c;
	overflow: hidden;
}
#notifications-bar .row,
#notifications-bar #notifications-bar-text-wrapper,
#notifications-bar #notifications-bar-button-wrapper,
#notifications-bar #notifications-bar-text,
#notifications-bar #notifications-bar-button {
	height: 30px;
}
#notifications-bar #notifications-bar-text {
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 15px;
	color: #fff;
}
#notifications-bar #notifications-bar-button {
	padding-left: 10px;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	font-size: 24px;
	line-height: 24px;
	text-transform: uppercase;
	color: #fff;
	border-left: 1px solid #fff;
}

@media (min-width: 768px) {
    #notifications-bar {
	    padding-top: 10px;
	    padding-bottom: 10px;
	    height: 60px;
    }
    #notifications-bar .row,
	#notifications-bar #notifications-bar-text-wrapper,
	#notifications-bar #notifications-bar-button-wrapper,
	#notifications-bar #notifications-bar-text,
	#notifications-bar #notifications-bar-button {
	    height: 40px;
    }
    #notifications-bar #notifications-bar-text {
	    font-size: 17px;
	    line-height: 18px;
    }
    #notifications-bar #notifications-bar-button {
	    padding-left: 20px;
	    font-weight: 600;
	    font-size: 14px;
	    line-height: 15px;
	    letter-spacing: 0.1em;
	}
}


/* Header */

header {
	position: fixed;
	left: 0;
	z-index: 2000;
	width: 100%;
	height: 60px;
	max-height: 60px;
	background-color: #fff;
}
header {
	top: 0;
}
header.header-notifications {
	top: 40px;
}
header .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 39, 49, 63' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
header #navigation-top,
header #navigation-bottom {
	padding-top: 0;
	padding-bottom: 0;
}
header #navigation-top li.nav-item {
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
	letter-spacing: -0.02em;
	color: #27313f;
}
header #navigation-bottom {
	min-height: 60px;
}
header #navigation-bottom .navbar-logo {
	margin-top: 0px;
	width: 88px;
	height: 46px;
}
header #navigation-bottom li a.nav-link,
#navbar-nav-mobile li.nav-item {
	padding-top: 4px;
	padding-bottom: 4px;
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
	letter-spacing: 0.06em;	
	text-transform: uppercase;
	color: #008f9c;
}
header #navigation-bottom li.active a.nav-link,
header #navigation-bottom li a.nav-link:hover,
header #navigation-bottom li a.nav-link:active,
header #navigation-bottom li a.nav-link:focus,
#navbar-nav-mobile li.nav-item.nav-link a,
#navbar-nav-mobile li.nav-item a:hover,
#navbar-nav-mobile li.nav-item a:active,
#navbar-nav-mobile li.nav-item a:focus {
	color: #27313f;
}
header button.navbar-toggler {
	padding: .25em 0;
	right: 21px;
	border-radius: 0 !important;
	border: 0 !important;
}
header button.navbar-toggler:focus {
	box-shadow: none;
}

@media (max-width: 575px) {
	#navigation-bottom-wrapper.row {
		margin-left: calc(-1 * var(--bs-gutter-x)) !important;
		margin-right: calc(-1 * var(--bs-gutter-x)) !important;
	}
	#navigation-bottom-wrapper.row #navigation-bottom {
		padding-left: calc(var(--bs-gutter-x)) !important;
		padding-right: calc(var(--bs-gutter-x)) !important;
	}
}

@media (min-width: 576px) and (max-width: 767px) {
	#navigation-bottom-wrapper.row {
		margin-left: calc((540px - 100vw)/ 2 - 5px) !important;
		width: calc(100vw - 15px);
	}
	#navigation-bottom-wrapper.row #navigation-bottom {
		padding-left: calc((100vw - 540px)/ 2 + 5px) !important;
		padding-right: calc((100vw - 540px)/ 2 + 5px) !important;
	}
}

@media (min-width: 576px) {
    header button.navbar-toggler {
		right: calc((100vw - 540px)/ 2 + 1px);
	}
}

@media (min-width: 768px) {
	header {
		top: 0;
	}
	header.header-notifications {
		top: 60px;
	}
    header button.navbar-toggler {
		right: calc((100vw - 720px)/ 2 + 1px);
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	#navigation-bottom-wrapper.row {
		margin-left: calc((720px - 100vw)/ 2 - 5px) !important;
		width: calc(100vw - 15px);
	}
	#navigation-bottom-wrapper.row #navigation-bottom {
		padding-left: calc((100vw - 720px)/ 2 + 5px) !important;
		padding-right: calc((100vw - 720px)/ 2 + 5px) !important;
	}
}

@media (max-width: 991px) {
    header #navigation-bottom {
		min-height: 60px;
	    background-color: #fff;
	    border-bottom: 1px solid #e1e1e1;
    }
	header #navigation-bottom #navbar-nav-desktop {
		display: none;
	}
	header #navigation-bottom .navbar-nav {
		padding-top: 25px;
		padding-bottom: 30px;
	}
	header .navbar-brand,
	header button.navbar-toggler {
		position: absolute;
	}
	header .navbar-brand {
		top: 2px;
	}
    header button.navbar-toggler {
		top: 10px;
	}
	header #main_nav {
		margin-top: 60px;
	}
}

@media (min-width: 992px) {
	header {
		height: 130px;
		max-height: 130px;
	    border-bottom: 1px solid #e1e1e1;
	}
	header #navigation-top {
		padding-top: 20px;
		padding-bottom: 10px;
	}
    header #navigation-top ul.navbar-nav {
	    margin-right: 15px;
    }
	header #navigation-top li.nav-item {
		padding-left: 15px;
		padding-right: 15px;
		font-size: 21px;
		line-height: 24px;
	}
	header #navigation-top li.header-podcast {
		margin-right: 15px;
		padding-top: 3px;
		padding-left: 15px;
		padding-right: 15px;
	}
	header #navigation-top li.header-podcast img {
		width: 20px;
	}
	.nav-link {
		transition: none !important;
	}
	header #navigation-top .header-search .form-control {
		padding: 0 !important;
	}
	header #navigation-top .header-search input[type=text] {
		margin-top: 2px;
		width: 85px;
		font-family: 'Crimson Text', 'Crimson Pro', serif;
		font-weight: 300;
		font-size: 21px;
		line-height: 24px;
		letter-spacing: -0.02em;
		color: #27313f;
		background-image: url(../imgs/heritage-mississauga-header-search.png);
		background-size: 20px 31px;
		background-repeat: no-repeat;
		background-position: right;
		border-radius: 0;
		border: 0;
		border-bottom: 1px solid #fff !important;
		-webkit-transition: all 0.4s ease-in-out;
		transition: all 0.4s ease-in-out;
	}
	header #navigation-top .header-search input[type=text]:focus {
		width: 285px;
		border-bottom: 1px solid #27313f !important;
        border-color: #fff;
        box-shadow: none;
	}
	header #navigation-top .header-search ::-webkit-input-placeholder {
		font-family: 'Crimson Text', 'Crimson Pro', serif;
		font-weight: 300;
		font-size: 21px;
		line-height: 24px;
		letter-spacing: -0.02em;
		color: #27313f;
		opacity: 1;
	}
	header #navigation-top .header-search ::-moz-placeholder {
		font-family: 'Crimson Text', 'Crimson Pro', serif;
		font-weight: 300;
		font-size: 21px;
		line-height: 24px;
		letter-spacing: -0.02em;
		color: #27313f;
		opacity: 1;
	}
	header #navigation-top .header-search :-ms-input-placeholder {
		font-family: 'Crimson Text', 'Crimson Pro', serif;
		font-weight: 300;
		font-size: 21px;
		line-height: 24px;
		letter-spacing: -0.02em;
		color: #27313f;
		opacity: 1;
	}
	header #navigation-top .header-search :-moz-placeholder {
		font-family: 'Crimson Text', 'Crimson Pro', serif;
		font-weight: 300;
		font-size: 21px;
		line-height: 24px;
		letter-spacing: -0.02em;
		color: #27313f;
		opacity: 1;
	}
	header #navigation-bottom .navbar-logo {
		margin-top: -70px;
		width: 153px;
		height: 80px;
	}
	header #navigation-bottom.navbar {
		position: static;
	}
	header #navigation-bottom #navbar-nav-mobile,
	header #navigation-bottom a.dropdown-toggle::after {
		display: none;
	}
	header #navigation-bottom li a.nav-link {
		padding: 22px 20px 25px 20px;
		font-size: 18px;
		line-height: 24px;
	}
	header #navigation-bottom li.nav-item:last-child a.nav-link {
		padding-right: 0;
	}
	header #navigation-bottom a.nav-link.show,
	header #navigation-bottom a.nav-link.show:hover {
		color: #fff !important;
	}
	header #navigation-bottom a.nav-link.show {
		background-color: #1f2f44;
	}
}


/* Megamenus */

.navbar .megamenu {
	padding: 0;
}
header .dropdown-menu {
	border: none;
	border-radius: 0 !important;
}

@media (max-width: 991px) {
	.navbar.fixed-top .navbar-collapse,
	.navbar.sticky-top .navbar-collapse {
		overflow-y: auto;
	    max-height: 90vh;
	    margin-top: 10px;
	}
}

@media all and (min-width: 992px) {
	.navbar .has-megamenu {
		position: static !important;
	}
	.navbar .megamenu {
	    padding: 1rem;
		left: 0;
		right: 0;
		width: 100%;
		margin-top: 0;
	}
    header .navbar .megamenu {
		padding-top: 40px;
		padding-left: calc((100% - 960px)/2 + 10px) !important;
		padding-right: calc((100% - 960px)/2 + 10px) !important;
		padding-bottom: 50px;
	    font-family: 'Crimson Text', 'Crimson Pro', serif;
	    font-weight: 300;
		font-size: 21px;
		line-height: 21px;
	    letter-spacing: -0.02em;
		color: #fff;
	    background-color: #1f2f44;
    }
    header .navbar .megamenu .megamenu-context {
		padding-right: calc(8.33333333% + 40px);
		font-style: italic;
		font-size: 26px;
		line-height: 32px;
		color: #80d9dd;
	}
    header .navbar .megamenu .megamenu-context a:hover,
	header .navbar .megamenu .megamenu-context a:active,
	header .navbar .megamenu .megamenu-context a:focus {
		color: #80d9dd;
	}
    header .navbar .megamenu h2,
	header .navbar .megamenu .megamenu-context h2 {
	    font-family: 'Raleway', sans-serif;
	    font-weight: 400;
		font-style: normal;
		font-size: 24px;
		line-height: 25px;
	    letter-spacing: 0.1em;
	    text-transform: uppercase;
		color: #80d9dd;
	}
	header .navbar .megamenu .megamenu-context hr {
		margin-top: 15px;
		margin-bottom: 35px;
		width: 40px;
		height: 1px;
		background-color: #80d9dd;
		border: 0;
		opacity: 1;
	}
    header .navbar .megamenu .megamenu-context .megamenu-context-prompt {
	    font-weight: 300;
		font-size: 21px;
		line-height: 21px;
		font-style: normal;
	    letter-spacing: -0.02em;
		text-decoration: underline;
		color: #80d9dd;
	}
    header .navbar .megamenu h3 {
		margin-top: 8px;
		margin-bottom: 30px;
	    font-family: 'Raleway', sans-serif;
	    font-weight: 600;
		font-size: 14px;
		line-height: 15px;
	    letter-spacing: 0.1em;
	    text-transform: uppercase;
		color: #80d9dd;
	}
    header .navbar .megamenu h3 a:hover,
	header .navbar .megamenu h3 a:active,
	header .navbar .megamenu h3 a:focus {
		color: #fff;
	}
    header .navbar .megamenu .col-megamenu {
		padding-left: 20px;
		padding-right: 20px;
		height: calc(100% - 5px);
		border-left: 1px solid #4e5662;
	}
    header .navbar .megamenu li + li {
		margin-top: 10px;
	}
    header .navbar .megamenu li a:link,
	header .navbar .megamenu li a:visited {
		color: #fff;
	}
    header .navbar .megamenu li a:hover,
	header .navbar .megamenu li a:active,
	header .navbar .megamenu li a:focus {
		color: #80d9dd;
	}
}

@media (min-width: 1200px) {
    header .navbar .megamenu {
		padding-left: calc((100% - 1140px)/2 + 10px) !important;
		padding-right: calc((100% - 1140px)/2 + 10px) !important;
    }
}

@media (min-width: 1400px) {
    header .navbar .megamenu {
		padding-left: calc((100% - 1320px)/2 + 10px) !important;
		padding-right: calc((100% - 1320px)/2 + 10px) !important;
    }
}


/* Ask An Historian (Homepage) + Sub-Footers */

#ask-historian,
#sub-footer {
	padding-top: 65px;
	color: #fff;
	background-color: #008f9c;
}
#ask-historian a:link,
#ask-historian a:visited,
#ask-historian a:hover,
#ask-historian a:active,
#ask-historian a:focus,
#sub-footer a:link,
#sub-footer a:visited,
#sub-footer a:hover,
#sub-footer a:active,
#sub-footer a:focus {
	color: #fff;
	text-decoration: underline;
}
#ask-historian h2,
#sub-footer h2 {
	font-weight: 600;
	color: #fff;
}
#ask-historian form .row,
#sub-footer form .row {
	position: relative;
}
#ask-historian .form-control:focus,
#sub-footer .form-control:focus,
#ask-historian form input[type=checkbox]:focus,
#sub-footer form input[type=checkbox]:focus {
    border-color: #fff;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.075), 0 0 8px rgba(255, 255, 255, 0.6);
}
#ask-historian ::-webkit-input-placeholder,
#sub-footer ::-webkit-input-placeholder {
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
    font-size: 24px;
	line-height: 28px;
	letter-spacing: -0.02em;
    color: #b3dee1;
}
#ask-historian ::-moz-placeholder,
#sub-footer ::-moz-placeholder {
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
    font-size: 24px;
	line-height: 28px;
	letter-spacing: -0.02em;
    color: #b3dee1;
}
#ask-historian :-ms-input-placeholder,
#sub-footer :-ms-input-placeholder {
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
    font-size: 24px;
	line-height: 28px;
	letter-spacing: -0.02em;
    color: #b3dee1;
}
#ask-historian :-moz-placeholder,
#sub-footer :-moz-placeholder {
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
    font-size: 24px;
	line-height: 28px;
	letter-spacing: -0.02em;
    color: #b3dee1;
}
#ask-historian form input,
#sub-footer form input {
	background-color: transparent;
	border: 1px solid #fff;
	border-radius: 0;
}
#ask-historian form input[type=text],
#ask-historian form input[type=email],
#sub-footer form input[type=text],
#sub-footer form input[type=email] {
	padding: 10px 126px 14px 20px;
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
    font-size: 24px;
	line-height: 28px;
	letter-spacing: -0.02em;
	color: #fff;
}
#ask-historian form button[type=submit],
#sub-footer form button[type=submit] {
	position: absolute;
	padding-left: 20px;
	padding-right: 20px;
	top: calc(50% - (50% - 10px));
	right: 15px;
	height: calc(100% - 35px);
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 15px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	background-color: transparent;
	border: 0;
	border-left: 1px solid #fff;
	border-radius: 0;
}
#ask-historian form input[type=checkbox],
#sub-footer form input[type=checkbox] {
	width: 20px;
	height: 20px;
}
#ask-historian form .form-check,
#ask-historian form .form-link,
#sub-footer form .form-check,
#sub-footer form .form-link {
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	line-height: 16px;
	color: #fff;
}
#ask-historian form .form-check label,
#sub-footer form .form-check label {
    float: left;
	padding-top: 6px;
	padding-left: 10px;
}
#ask-historian,
#sub-footer.sub-footer-mailing-list,
#sub-footer.sub-footer-ask-historian {
	padding-bottom: 40px;
}
#sub-footer.sub-footer-donations-membership {
	padding-bottom: 10px;
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
    font-size: 24px;
	line-height: 28px;
	letter-spacing: -0.02em;
}
#sub-footer.sub-footer-donations-membership .col-sub-footer {
	padding-left: 4vw;
	padding-right: 4vw;
}
#sub-footer.sub-footer-donations-membership hr {
	margin: 10px auto 25px auto;
	width: 30px;
	height: 1px;
	background-color: #fff;
	border: 0;
	opacity: 1;
}

@media (max-width: 767px) {
    #sub-footer.sub-footer-donations-membership .col-sub-footer {
	    padding-bottom: 60px;
    }
}

@media (min-width: 768px) {
    #sub-footer.sub-footer-donations-membership {
		padding-bottom: 70px;
	}
	#sub-footer.sub-footer-donations-membership .col-sub-footer {
		padding-left: 2vw;
		padding-right: 2vw;
	}
}

@media (min-width: 992px) {
    #ask-historian,
	#sub-footer.sub-footer-mailing-list,
	#sub-footer.sub-footer-ask-historian {
		padding-top: 95px;
	    padding-bottom: 70px;
    }
    #ask-historian h2,
	#sub-footer h2 {
	    font-weight: 500;
    }
	#ask-historian ::-webkit-input-placeholder,
	#sub-footer ::-webkit-input-placeholder {
        font-size: 28px;
		line-height: 32px;
	}
	#ask-historian ::-moz-placeholder,
	#sub-footer ::-moz-placeholder {
        font-size: 28px;
		line-height: 32px;
	}
	#ask-historian :-ms-input-placeholder,
	#sub-footer :-ms-input-placeholder {
        font-size: 28px;
		line-height: 32px;
	}
	#ask-historian :-moz-placeholder,
	#sub-footer :-moz-placeholder {
        font-size: 28px;
		line-height: 32px;
	}
    #ask-historian form input[type=text],
	#ask-historian form input[type=email],
	#sub-footer form input[type=text],
	#sub-footer form input[type=email] {
        font-size: 28px;
		line-height: 32px;
	}
    #sub-footer.sub-footer-donations-membership {
        font-size: 28px;
	    line-height: 32px;
	}
}

@media (min-width: 1200px) {
	#sub-footer.sub-footer-donations-membership .col-sub-footer {
		padding-left: 4vw;
		padding-right: 4vw;
	}
}

@media (min-width: 1400px) {
	#sub-footer.sub-footer-donations-membership .col-sub-footer {
		padding-left: 5vw;
		padding-right: 5vw;
	}
}


/* Footer */

footer {
	padding-top: 65px;
	padding-bottom: 25px;
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
    font-size: 21px;
	line-height: 24px;
	letter-spacing: -0.02em;
	color: #fff;
	background-color: #1f2f44;
}
footer #footer-nav {
	margin-bottom: 20px;
}
footer #footer-nav h2 {
	margin-bottom: 25px;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 15px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #80d9dd;
}
footer #footer-nav .col-footer h2 {
	margin-bottom: 27px;
}
footer a:link,
footer a:visited {
	color: #fff;
}
footer a:hover,
footer a:active,
footer a:focus,
footer li a:hover,
footer li a:active,
footer li a:focus {
	color: #80d9dd;
}
footer #footer-nav li {
    font-size: 21px;
	line-height: 21px;
}
footer #footer-nav li + li {
	margin-top: 10px;
}
footer #footer-nav .footer-nav-contact {
	margin-top: 45px;
    margin-bottom: 50px;
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
	font-size: 17px;
	line-height: 24px;
	color: #fff;
}
footer #footer-legal li,
footer #footer-social li {
	display: inline-block;
	color: #fff;
}
footer #footer-copyright,
footer #footer-legal,
footer #footer-legal li {
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
	font-size: 12px;
	line-height: 13px;
}
footer #footer-legal li,
footer #footer-social li {
	margin-right: 15px;
}
footer #footer-social li {
	padding: 0;
}
footer #footer-social li a.footer-social-icon,
footer #footer-social li a.footer-social-icon img {
	height: 20px;
}
footer #footer-social li a.footer-social-icon {
	display: inline-block;
	margin: 0;
	padding: 0;
	background-color: #fff;
}
footer #footer-social li a.footer-social-icon:hover {
	background-color: #80d9dd;
}
footer #footer-social li a.footer-social-icon img {
	vertical-align: top;
	width: auto;
}

@media (min-width: 576px) {
    footer #footer-nav h2 {
	    margin-bottom: 30px;
	}
	footer #footer-copyright,
    footer #footer-legal,
	footer #footer-legal li {
	    font-size: 14px;
	    line-height: 15px;
    }
    footer #footer-social li {
	    margin-right: 20px;
    }
    footer #footer-nav .col-footer h2 {
	    margin-bottom: 32px;
    }
    footer #footer-social li a.footer-social-icon,
	footer #footer-social li a.footer-social-icon img {
		height: 25px;
    }
}

@media (min-width: 768px) {
    footer {
		padding-top: 95px;
		padding-bottom: 45px;
	}
}

@media (max-width: 991px) {
	footer #footer-nav .col-footer {
		margin-bottom: 53px;
	}
    footer #footer-social {
		margin-bottom: 30px;
	}
}

@media (min-width: 992px) {
    footer #footer-nav {
	    margin-bottom: 25px;
    }
    footer #footer-legal li {
		padding-top: 10px;
		height: 25px;
	}
}


/* HOMEPAGE */
	
#home-hero {
	width: 100%;
	height: 350px;
	overflow: hidden;
}
#home-hero-overlay {
	position: relative;
}
#home-hero-overlay #home-hero-textbox {
	padding: 30px;
	color: #fff;
}
#home-hero-overlay #home-hero-textbox p.text-button {
	margin: 0;
	margin-top: -5px;
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
	font-size: 21px;
	line-height: 24px;
	font-style: normal;
	letter-spacing: -0.02em;
	text-decoration: underline;
}
#home-hero img {
	object-fit: cover;
	width: 100%;
	min-width: 100%;
	height: auto;
	min-height: 100%;
}
#home-programs #home-programs-title {
	padding-bottom: 30px;
}
#home-programs #home-programs-lede {
	padding-bottom: 35px;
}
#home-donate-membership {
	padding-top: 65px;
	padding-bottom: 35px;
}
#home-donate-membership a:link,
#home-donate-membership a:visited,
#home-donate-membership a:hover,
#home-donate-membership a:active,
#home-donate-membership a:focus {
	color: #27313f;
}
#home-programs-lede,
#home-programs-lede p,
#home-donate-membership,
#home-donate-membership p,
#home-mailinglist-sponsors #home-mailinglist-text-wrapper form input[type=text],
#home-mailinglist-sponsors #home-mailinglist-text-wrapper form input[type=email] {
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
	font-size: 24px;
	line-height: 28px;
	letter-spacing: -0.02em;
}
#home-mailinglist-sponsors #home-mailinglist-image-wrapper img {
	object-fit: cover;
	width: 100%;
	min-width: 100%;
	min-height: 100%;
}
#home-mailinglist-sponsors #home-mailinglist-text-wrapper {
	padding-top: 20px;
	padding-bottom: 30px;
}
#home-mailinglist-sponsors #home-mailinglist-text-wrapper form .row {
	position: relative;
}
#home-mailinglist-sponsors #home-mailinglist-text-wrapper .form-control:focus,
#home-mailinglist-sponsors #home-mailinglist-text-wrapper form input[type=checkbox]:focus {
    border-color: #b2b2b2;
    box-shadow: inset 0 1px 1px rgba(0, 143, 156, 0.075), 0 0 8px rgba(0, 143, 156, 0.6);
}
#home-mailinglist-sponsors #home-mailinglist-text-wrapper ::-webkit-input-placeholder {
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
    font-size: 24px;
	line-height: 28px;
	letter-spacing: -0.02em;
    color: #5e5e5e;
}
#home-mailinglist-sponsors #home-mailinglist-text-wrapper ::-moz-placeholder {
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
    font-size: 24px;
	line-height: 28px;
	letter-spacing: -0.02em;
    color: #5e5e5e;
}
#home-mailinglist-sponsors #home-mailinglist-text-wrapper :-ms-input-placeholder {
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
    font-size: 24px;
	line-height: 28px;
	letter-spacing: -0.02em;
    color: #5e5e5e;
}
#home-mailinglist-sponsors #home-mailinglist-text-wrapper :-moz-placeholder {
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
    font-size: 24px;
	line-height: 28px;
	letter-spacing: -0.02em;
    color: #5e5e5e;
}
#home-mailinglist-sponsors #home-mailinglist-text-wrapper form input {
	background-color: transparent;
	border: 1px solid #b2b2b2;
	border-radius: 0;
}
#home-mailinglist-sponsors #home-mailinglist-text-wrapper form input[type=text],
#home-mailinglist-sponsors #home-mailinglist-text-wrapper form input[type=email] {
	padding: 10px 126px 14px 20px;
	color: #27313f;
}
#home-mailinglist-sponsors #home-mailinglist-text-wrapper form button[type=submit] {
	position: absolute;
	padding-left: 20px;
	padding-right: 20px;
	top: calc(50% - (50% - 10px));
	right: 15px;
	height: calc(100% - 20px);
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 15px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #27313f;
	background-color: transparent;
	border: 0;
	border-left: 1px solid #27313f;
	border-radius: 0;
}
#home-mailinglist-sponsors #home-mailinglist-text-wrapper form input[type=checkbox] {
	width: 20px;
	height: 20px;
}
#home-mailinglist-sponsors #home-mailinglist-text-wrapper form .form-check,
#home-mailinglist-sponsors #home-mailinglist-text-wrapper form .form-link {
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	line-height: 16px;
	color: #5e5e5e;
}
#home-mailinglist-sponsors #home-mailinglist-text-wrapper form .form-check-input:checked {
    background-color: #27313f;
    border-color: #27313f;
}
#home-mailinglist-sponsors #home-mailinglist-text-wrapper form .form-check label {
    float:left;
	padding-top: 6px;
	padding-left: 10px;
}
#home-mailinglist-sponsors #home-mailinglist-text-wrapper {
	padding-bottom: 40px;
}
#home-mailinglist-sponsors #home-sponsors {
	padding-top: 30px;
	padding-bottom: 35px;
}
#home-mailinglist-sponsors #home-sponsors .sponsor-wrapper {
	text-align: center;
}
#home-mailinglist-sponsors #home-sponsors .sponsor-wrapper img {
	width: 100%;
	height: auto;
}
#home-programs,
#home-blog {
	padding-top: 50px;
	padding-bottom: 40px;
}
#home-blog #home-blog-content {
	padding-top: 40px;
}
#home-blog #home-blog-title {
	margin-top: 4px;
}
#home-blog #home-blog-button {
	text-align: right;
}
#home-blog #home-blog-image-wrapper .home-blog-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 320px;
	overflow: hidden;
}
#home-blog #home-blog-image-wrapper .home-blog-image img {
	object-fit: cover;
	width: 100%;
	min-width: 100%;
	height: auto;
	min-height: 100%;
}

@media (max-width: 575px) {
    #home-donate-membership #home-membership {
		padding-bottom: 35px;
		border-bottom: 1px solid #b2b2b2;
    }
    #home-mailinglist-sponsors #home-mailinglist {
	    background-color: #fff;
    }
    #home-mailinglist-sponsors #home-mailinglist-text-wrapper {
		padding-left: 24px;
		padding-right: 24px;
	}
}

@media (min-width: 576px) {
    #home-hero-overlay #home-hero-textbox {
		padding: 35px 40px;
    }
	#home-mailinglist-sponsors #home-mailinglist {
		margin-left: 0;
		margin-right: 0;
	}
    #home-mailinglist-sponsors #home-mailinglist-text-wrapper,
	#home-mailinglist-sponsors #home-mailinglist-image-wrapper {
	    background-color: #fff;
    }
    #home-mailinglist-sponsors #home-mailinglist-text-wrapper {
		padding-left: 30px;
		padding-right: 30px;
	}
    #home-mailinglist-sponsors #home-mailinglist-text-wrapper {
	    padding-top: 50px;
    }
    #home-mailinglist-sponsors .container {
	    padding-left: 24px !important;
		padding-right: 24px !important;
    }
}

@media (max-width: 767px) {
	#home-hero-overlay #home-hero-textbox {
		margin-top: -80px;
    }
    #home-donate-membership #home-donate {
		padding-bottom: 35px;
		border-bottom: 1px solid #b2b2b2;
    }
    #home-donate-membership #home-membership {
		padding-top: 65px;
	}
	#home-blog #home-blog-feature-text .blog-callout-text {
		padding-bottom: 45px;
		border-bottom: 1px solid #b2b2b2;
	}
	#home-blog #home-blog-second-text .blog-callout-text {
		padding-top: 30px;
	}
}

@media (min-width: 768px) {
	#home-hero {
	    height: 60vw;
    }
    #home-hero-overlay {
	    margin-left: calc((720px - 100vw)/ 2 - 5px);
	    margin-top: -110px;
	    width: calc((100vw - 720px)/ 2 + 100%);
	    height: 110px;
	    background-color: #fff;
    }
    #home-hero-overlay #home-hero-textbox {
		position: absolute;
	    padding: 30px;
		bottom: 0;
		left: calc((100vw - 720px)/ 2 + 5px);
		width: 336px;
	}
    #home-hero-overlay #home-hero-textbox:hover p.directional-button:after {
	    right: -8px;
	}
    #home-hero-overlay #home-hero-lozenge {
		position: absolute;
		padding-top: 45px;
		padding-left: 3px;
		top: -52px;
		right: -52px;
		width: 104px;
		height: 104px;
		text-align: center;
		font-family: 'Raleway', sans-serif;
		font-weight: 600;
		font-size: 14px;
		line-height: 14px; 
		letter-spacing: .13em;
		text-transform: uppercase;
		color: #fff;
		background-color: #008f9c;
		border-radius: 50%;
		overflow: hidden;
	}
    #home-hero-overlay #home-hero-lozenge .home-hero-lozenge-arrow {
		position: absolute;
		bottom: 15px;
	    -webkit-transition: bottom .20s ease-in-out;
	    -moz-transition: bottom .20s ease-in-out;
	    -o-transition: bottom .20s ease-in-out;
	    transition: bottom .20s ease-in-out;
	}
    #home-hero-overlay #home-hero-lozenge:hover .home-hero-lozenge-arrow {
		bottom: 10px;
	}
    #home-programs {
	    padding-top: 85px;
	    padding-bottom: 50px;
    }
    #home-programs #home-programs-title,
	#home-programs #home-programs-lede {
		padding-bottom: 60px;
	}
    #home-programs #home-programs-title {
		padding-top: 4px;
	}
    #home-donate-membership {
		padding-top: 95px;
		padding-bottom: 80px;
    }
    #home-donate-membership #home-donate {
		padding-right: 40px;
    }
    #home-donate-membership #home-membership {
		padding-left: 40px;
		border-left: 1px solid #b2b2b2;
    }
    #home-mailinglist-sponsors #home-sponsors {
	    padding-top: 50px;
	    padding-bottom: 55px;
    }
    #home-blog {
	    padding-top: 65px;
	    padding-bottom: 70px;
    }
	#home-blog #home-blog-title,
	#home-blog #home-blog-button {
		margin-top: 0;
	}
    #home-blog #home-blog-content {
	    padding-top: 55px;
    }
	#home-blog #home-blog-second-text {
		padding-left: 20px;
		border-left: 1px solid #b2b2b2;
	}
}

@media (max-width: 991px) {
    #home-mailinglist-sponsors #home-mailinglist-image-wrapper {
		padding-left: 0;
		padding-right: 0;
	}
	#home-blog #home-blog-image-wrapper img {
		margin-bottom: 30px;
	}
}

@media (min-width: 992px) {
	#home-hero {
	    height: 52vw;
    }
    #home-hero-overlay {
	    margin-left: calc((960px - 100vw)/ 2 - 5px);
	    width: calc((100vw - 960px)/ 2 + 100%);
    }
    #home-hero-overlay #home-hero-textbox {
		padding: 35px 40px;
		left: calc((100vw - 960px)/ 2 + 5px);
		width: 456px;
	}
    #home-programs {
	    padding-bottom: 75px;
    }
    #home-programs #home-programs-title {
		padding-top: 5px;
	}
    #home-programs #home-programs-title,
	#home-programs #home-programs-lede {
		padding-bottom: 80px;
	}
    #home-donate-membership #home-donate {
		padding-right: 75px;
    }
    #home-donate-membership #home-membership {
		padding-left: 75px;
    }
    #home-programs-lede,
    #home-programs-lede p,
    #home-donate-membership,
	#home-donate-membership p {
	    font-size: 28px;
		line-height: 32px;
    }
	#home-mailinglist-sponsors #home-mailinglist-text-wrapper ::-webkit-input-placeholder {
		font-size: 28px;
		line-height: 32px;
	}
	#home-mailinglist-sponsors #home-mailinglist-text-wrapper ::-moz-placeholder {
		font-size: 28px;
		line-height: 32px;
	}
	#home-mailinglist-sponsors #home-mailinglist-text-wrapper :-ms-input-placeholder {
		font-size: 28px;
		line-height: 32px;
	}
	#home-mailinglist-sponsors #home-mailinglist-text-wrapper :-moz-placeholder {
		font-size: 28px;
		line-height: 32px;
	}
	#home-mailinglist-sponsors #home-mailinglist-text-wrapper form input[type=text],
	#home-mailinglist-sponsors #home-mailinglist-text-wrapper form input[type=email] {
		font-size: 28px;
		line-height: 32px;
	}
    #home-mailinglist-sponsors #home-mailinglist-image-wrapper {
		padding-right: 0;
	}
	#home-blog #home-blog-button {
		margin-top: 3px;
	}
	#home-blog #home-blog-image-wrapper img {
		object-fit: cover;
		min-height: 100%;
	}
}

@media (max-width: 1199px) {
    #home-programs a.program-link-toggle:last-child {
	   display: none;
    }
}

@media (min-width: 1200px) {
	#home-hero {
	    height: 42vw;
		min-height: 660px;
    }
    #home-hero-overlay {
	    margin-left: calc((1140px - 100vw)/ 2 - 5px);
	    width: calc((100vw - 1140px)/ 2 + 100% - 3px);
    }
    #home-hero-overlay #home-hero-textbox {
		left: calc((100vw - 1140px)/ 2 + 5px);
		width: 546px;
	}
    #home-mailinglist-sponsors #home-mailinglist-text-wrapper {
		padding-top: 70px;
		padding-right: 70px;
	}
}

@media (min-width: 1400px) {
    #home-hero-overlay {
	    margin-left: calc((1320px - 100vw)/ 2 - 5px);
	    width: calc((100vw - 1320px)/ 2 + 100% - 8px);
    }
    #home-hero-overlay #home-hero-textbox {
		left: calc((100vw - 1320px)/ 2 + 5px);
		width: 634px;
	}
}


/* LANDING PAGES */

#landing-hero #breadcrumb {
	padding-bottom: 45px;
}
#landing-hero a {
	text-decoration: underline;
}
#landing-hero #hero-lede,
#landing-hero #hero-lede p,
#landing-feature,
#landing-feature p,
#landing-history .history-node .history-node-title,
#landing-contents .contents-list-text .contents-list-title {
	font-family: 'Crimson Text', 'Crimson Pro', serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.02em;
}
#landing-main h3,
#landing-main h4,
#landing-main h5,
#landing-main h6 {
	font-family: raleway,sans-serif;
    text-transform: uppercase;
}
#landing-main h3 {
	margin-bottom: 20px;
    font-weight: 500;
    font-size: 21px;
    line-height: 22px;
    letter-spacing: .08em;
}
#landing-main h4,
#landing-main h5,
#landing-main h6 {
    font-weight: 600;
	font-size: 17px;
    line-height: 18px;
}
#landing-main p + h3,
#landing-main p + h4,
#landing-main p + h5,
#landing-main p + h6 {
	margin-top: 50px;
}
#landing-main ul {
	padding-left: 1em;
}
#landing-hero #landing-hero-text,
#landing-hero #landing-hero-image,
#landing-history #history-list-lede,
#landing-history .history-node {
	position: relative;
}
#landing-hero #landing-hero-text {
	padding-top: 42px;
	padding-bottom: 55px;
}
#landing-hero #landing-hero-text #hero-lede {
	padding-top: 40px;
}
#landing-hero #landing-hero-text #hero-lede hr {
	margin-top: 0;
	margin-bottom: 10px;
	width: 40px;
	height: 1px;
	background-color: #27313f;
	border: 0;
	opacity: 1;
}
#landing-hero #landing-hero-image .landing-hero-image-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
#landing-hero #landing-hero-image .landing-hero-image-wrapper img {
	object-fit: cover;
	min-width: 100%;
	min-height: 100%;
}
#landing-main,
#landing-feature,
#landing-history,
#landing-contents {
	padding-top: 65px;
	padding-bottom: 55px;
}
#landing-main a {
	text-decoration: underline;
}
#landing-feature .col-landing-feature {
	text-align: center;
}
#landing-feature .col-landing-feature .boxed-button {
	margin-bottom: 20px;
	min-width: 160px;
}
#landing-history .history-node {
	padding-left: 20px;
	height: calc(100vw + 60px);
	border-left: 1px solid #a9adb2;
}
#landing-history .history-node .history-node-date {
	font-family: 'Work Sans', sans-serif;
	font-weight: 500;
	font-size: 12px;
	line-height: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
#landing-history .history-node .history-node-image {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	width: calc(100vw - 98px);
	height: calc(100vw - 98px);
	overflow: hidden;
}
#landing-history .history-node .history-node-image img {
	object-fit: cover;
	min-width: calc(100vw - 98px);
	min-height: calc(100vw - 98px);
}
#landing-history .history-node .history-node-title {
	margin-bottom: 20px;
	color: #fff;
}
#landing-history .history-node .history-node-description {
	position: absolute;
	bottom: 0;
}
#landing-history .history-node .history-node-description,
#landing-history .history-node .history-node-description p {
	font-size: 15px;
    line-height: 20px;
}
#landing-history .history-node .history-node-description p {
	margin-bottom: 0;
}
#landing-history #history-mobile-button {
	padding-top: 55px;
}
#landing-feature .col-landing-feature hr {
    margin: 10px auto 15px auto;
    width: 30px;
    height: 1px;
    background-color: #fff;
    border: 0;
    opacity: 1;
}
#landing-contents .contents-list-text .contents-list-title {
	color: #27313f;
}
#landing-contents .contents-list-text .contents-list-title + p {
	margin-top: 15px;
}
#landing-contents h4 a:hover,
#landing-contents h4 a:active,
#landing-contents h4 a:focus {
	text-decoration: underline;
}

@media (max-width: 575px) {
    #landing-hero #landing-hero-image .landing-hero-image-wrapper {
		margin-left: -24px;
		margin-right: -24px;
    }
}

@media (min-width: 576px) {
    #landing-history .history-node {
	    height: 460px;
	}
    #landing-history .history-node .history-node-image {
		width: 225px;
		height: 225px;
    }
    #landing-history .history-node .history-node-image img {
	    min-width: 100%;
	    min-height: 100%;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    #landing-hero #landing-hero-image .landing-hero-image-wrapper {
		margin-left: calc((540px - 100vw)/ 2 - 5px);
		margin-right: calc((540px - 100vw)/ 2 - 5px);
    }
}

@media (max-width: 767px) {
	#landing-feature .col-landing-feature {
		padding-bottom: 40px;
	}
	#landing-feature .col-landing-feature:last-child {
		padding-bottom: 0;
	}
	#landing-contents #contents-list-lede {
		padding-bottom: 20px;
	}
	#landing-contents .contents-list-text {
		padding-top: 20px;
		padding-bottom: 30px;
		border-bottom: 1px solid #b2b2b2;
	}
	#landing-contents .contents-list-wrapper:last-child .contents-list-text {
		padding-bottom: 0;
		border-bottom: 0;
	}
}

@media (min-width: 768px) {
	#landing-hero #breadcrumb {
	    padding-bottom: 60px;
    }
	#landing-history #history-list-lede,
	#landing-contents #contents-list-lede {
		padding-right: 30px;
	}
    #landing-feature .col-landing-feature hr {
        margin: 10px auto 25px auto;
    }
	#landing-contents {
		padding-top: 65px;
		padding-bottom: 25px;
	}
	#landing-contents .contents-list-wrapper {
		padding-bottom: 70px;
	}
	#landing-contents .contents-list-text {
	    margin-top: -4px;
		padding-left: 20px !important;
		height: 100%;
		border-left: 1px solid #b2b2b2;
    }
    #landing-history .history-node .history-node-image {
		width: 195px;
		height: 195px;
    }
	#landing-history .history-node .history-node-title,
	#landing-contents .contents-list-text .contents-list-title {
		font-size: 28px;
		line-height: 32px;
	}
	#landing-contents .contents-list-text .contents-list-title + p {
	    margin-top: 30px;
	}
	#landing-contents .contents-list-text ul {
		margin-bottom: 5px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
    #landing-hero #landing-hero-image .landing-hero-image-wrapper {
		margin-left: calc((720px - 100vw)/ 2 - 5px);
		margin-right: calc((720px - 100vw)/ 2 - 5px);
    }
	#landing-contents #contents-list-lede {
		padding-bottom: 50px;
	}
}

@media (max-width: 991px) {
	#landing-history #history-list-lede {
		padding-bottom: 50px;
	}
}

@media (min-width: 992px) {
    #landing-hero #landing-hero-text,
	#landing-hero #landing-hero-text #hero-lede {
		padding-right: 30px;
	}
	#landing-hero #landing-hero-text #hero-lede,
	#landing-hero #landing-hero-image .landing-hero-image-wrapper {
		position: absolute;
	}
	#landing-hero #landing-hero-text #hero-lede {
		padding-top: 0;
		bottom: 45px;
	}
    #landing-hero #landing-hero-image .landing-hero-image-wrapper {
	    width: calc(50vw - 20px);
	    height: 100%;
    }
	#landing-hero, #landing-hero #landing-hero-image {
		height: 560px;
	}
	#landing-hero #landing-hero-text #hero-lede,
	#landing-hero #landing-hero-text #hero-lede p {
		font-size: 28px;
		line-height: 32px;
	}
	#landing-main {
		padding-top: 90px;
		padding-bottom: 80px;
	}
	#landing-feature {
		padding-top: 95px;
		padding-bottom: 80px;
	}
    #landing-main h3 {
	    margin-bottom: 30px;
        font-weight: 400;
        font-size: 24px;
        line-height: 25px;
    }
    #landing-feature,
	#landing-feature p {
		font-size: 28px;
        line-height: 32px;
    }
    #landing-history #history-list-lede .list-lede-button {
	    position: absolute;
		bottom: 4px;
    }
    #landing-history {
		padding-bottom: 100px;
    }
	#landing-history .history-node {
		padding-top: 1px;
	}
	#landing-history #history-slider-navigation {
		margin-top: 45px;
	}
	#landing-history #history-slider-navigation button {
		margin: 0;
		margin-right: 40px;
		padding: 0;
		background-color: transparent;
		border: 0;
	}
	#landing-contents .contents-list-text {
		padding-right: 20px;
	}
}

@media (min-width: 1200px) {
    #landing-hero #landing-hero-text,
	#landing-hero #landing-hero-text #hero-lede {
		padding-right: 40px;
	}
    #landing-feature .col-landing-feature {
	    padding-left: 40px;
	    padding-right: 40px;
    }
	#landing-history #history-list-lede,
	#landing-contents #contents-list-lede {
		padding-right: 50px;
	}
    #landing-history .history-node .history-node-image {
		width: 240px;
		height: 240px;
    }
	#landing-contents .contents-list-text {
		padding-right: 30px;
	}
}

@media (min-width: 1400px) {
    #landing-hero #landing-hero-text,
	#landing-hero #landing-hero-text #hero-lede {
		padding-right: 50px;
	}
    #landing-history .history-node {
	    height: 505px;
	}
    #landing-history .history-node .history-node-image {
		width: 287px;
		height: 287px;
    }
    #landing-feature .col-landing-feature {
	    padding-left: 60px;
	    padding-right: 60px;
    }
}


/* INTERIOR PAGES */

#interior-hero #interior-breadcrumb
#page-wrapper.wrapper-account #interior-breadcrumb {
	padding-top: 30px;
	padding-bottom: 15px;
}
#interior-hero #interior-hero-title {
	position: relative;
	padding-top: 30px;
	padding-bottom: 40px
}
#interior-hero #interior-hero-text {
	position: relative;
}
#interior-hero #hero-lede,
#interior-hero #hero-lede p {
	font-family: 'Crimson Text', 'Crimson Pro', serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.02em;
}
#interior-hero #interior-hero-text #hero-lede hr {
	margin-top: 0;
	margin-bottom: 10px;
	width: 40px;
	height: 1px;
	background-color: #27313f;
	border: 0;
	opacity: 1;
}

@media (min-width: 768px) {
	#interior-hero #interior-hero-title {
		padding-bottom: 60px;
	}
    #interior-hero #interior-hero-text,
	#interior-hero #interior-hero-text #hero-lede {
		padding-right: 20px;
	}
	#interior-hero #interior-hero-share {
		text-align: right;
	}
	#interior-hero #interior-hero-share .boxed-button {
		margin-top: 0;
	}
}

@media (min-width: 992px) {
	#interior-hero #interior-hero-title {
		padding-top: 45px;
		padding-bottom: 80px;
	}
    #interior-hero #interior-hero-text,
	#interior-hero #interior-hero-text #hero-lede {
		padding-right: 30px;
	}
	#interior-hero #interior-hero-text #hero-lede,
	#interior-hero #interior-hero-text #hero-lede p {
		font-size: 28px;
		line-height: 32px;
	}
}

@media (min-width: 1200px) {
    #interior-hero #interior-hero-text,
	#interior-hero #interior-hero-text #hero-lede {
		padding-right: 40px;
	}
}

@media (min-width: 1400px) {
    #interior-hero #interior-hero-text,
	#interior-hero #interior-hero-text #hero-lede {
		padding-right: 50px;
	}
}


/* BLOG PAGES */

#interior-hero #blog-hero-title {
	padding-top: 30px;
	padding-bottom: 20px
}
#interior-hero #blog-hero-back a.back-button {
	margin-top: 0;
	padding-bottom: 25px;
}
#interior-hero #blog-hero-article-title {
	padding-top: 30px;
	padding-bottom: 15px;
}
#interior-hero hr.blog-hero-divider {
	margin-top: 0;
    margin-bottom: 10px;
    width: 100%;
    height: 1px;
    background-color: #27313f;
    border: 0;
    opacity: 1;
}
#interior-hero.blog-hero {
	padding-bottom: 25px;
}
#blog-filter {
	position: relative;
}
#blog-taxonomy {
	color: #fff;
    background-color: #d2181d;
}
#blog-taxonomy #blog-taxonomy-wrapper {
	padding-top: 35px;
	padding-bottom: 40px;
	font-family: 'Crimson Text', 'Crimson Pro', serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 19px;
    letter-spacing: -0.02em;
}
#blog-taxonomy #blog-taxonomy-wrapper .termslug {
	margin-bottom: 10px;
}
#blog-taxonomy #blog-taxonomy-wrapper a:hover,
#blog-taxonomy #blog-taxonomy-wrapper a:active,
#blog-taxonomy #blog-taxonomy-wrapper a:focus {
	color: #fff !important;
	text-decoration: underline;
}
#blog-list {
	padding-top: 25px;
}
#blog-list .blog-callout {
	margin-bottom: 55px;
}
#blog-list .blog-callout .blog-callout-wrapper .blog-callout-image {
	margin-bottom: 12px;
	width: 100%;
	height: 265px;
	overflow: hidden;
}
#blog-list .blog-callout .blog-callout-wrapper .blog-callout-image img {
	object-fit: cover;
	width: 100%;
	min-width: 100%;
	height: auto;
	min-height: 100%;
}
#blog-paging {
	margin-bottom: 45px;
}
#blog-paging #blog-paging-wrapper {
	text-align: center;
}
#blog-paging #blog-paging-wrapper ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#blog-paging #blog-paging-wrapper ul li.blog-nav,
#blog-paging #blog-paging-wrapper ul li.blog-previous,
#blog-paging #blog-paging-wrapper ul li.blog-next {
	display: inline-block;
	vertical-align: top;
	margin: 0;
	width: 40px;
	height: 40px;
	text-align: center;
	font-family: 'Crimson Text', 'Crimson Pro', serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 19px;
    letter-spacing: -0.02em;
	border: 1px solid #bfbfbf;
	cursor: pointer;
}
#blog-paging #blog-paging-wrapper ul li.blog-nav:hover,
#blog-paging #blog-paging-wrapper ul li.blog-previous:hover,
#blog-paging #blog-paging-wrapper ul li.blog-next:hover {
	border: 1px solid #d2181d;
}
#blog-paging #blog-paging-wrapper ul li.blog-nav a.blog-nav-link,
#blog-paging #blog-paging-wrapper ul li.blog-previous a.blog-nav-link,
#blog-paging #blog-paging-wrapper ul li.blog-next a.blog-nav-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
#blog-paging #blog-paging-wrapper ul li.blog-nav a.blog-nav-link {
	padding-bottom: 3px;
}
#blog-paging #blog-paging-wrapper ul li.blog-previous a.blog-nav-link,
#blog-paging #blog-paging-wrapper ul li.blog-next a.blog-nav-link {
	padding-bottom: 7px;
}
#blog-paging #blog-paging-wrapper ul li.active,
#blog-paging #blog-paging-wrapper ul li.active:hover {
	background-color: #27313f;
	border: 1px solid #27313f;
}
#blog-paging #blog-paging-wrapper ul li.active a.blog-nav-link,
#blog-paging #blog-paging-wrapper ul li.active:hover a.blog-nav-link {
	color: #fff !important;
}
#blog-list .loadbtn {
	padding-bottom: 30px;
	text-align: center;
}
#blog-list .loadbtn a {
	display: inline-block;
	margin-top: 15px;
	padding: 15px 50px;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 15px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #27313f;
	background-color: transparent;
	border: 1px solid #27313f;
	text-decoration: none !important;
}
#blog-list .loadbtn a:hover,
#blog-list .loadbtn a:active {
	color: #fff;
	text-decoration: none !important;
	background-color: #27313f;
}
@media (min-width: 576px) {
    #blog-list .blog-callout .blog-callout-wrapper {
	    padding-left: 20px;
	    border-left: 1px solid #b2b2b2;
    }
}

@media (max-width: 767px) {
	#blog-filter {
		margin-top: 10px;
	}
    #blog-paging {
	    margin-top: 25px;
    }
}

@media (min-width: 768px) {
	#interior-hero #interior-hero-share a.boxed-button {
		margin-top: 20px;
	}
	#interior-hero #interior-hero-share.blog-hero-share a.boxed-button,
	#interior-hero #interior-hero-share.blog-hero-share button.boxed-button {
		margin-top: 39px;
	}
    #interior-hero.blog-hero {
	    padding-bottom: 35px;
    }
    #blog-filter #blog-filter-button {
	    position: absolute;
	    bottom: 20px;
	    right: 12px;
    }
    #blog-taxonomy #blog-taxonomy-wrapper {
	    padding-top: 45px;
	    padding-bottom: 50px;
	}
	#blog-list {
		padding-top: 35px;
	}
    #blog-list .blog-callout {
		margin-bottom: 80px;
	}
    #blog-paging {
	    margin-bottom: 55px;
    }
    #blog-paging #blog-paging-wrapper {
	    text-align: right;
    }
}

@media (min-width: 992px) {
	#interior-hero #blog-hero-title {
		padding-top: 45px;
	    padding-bottom: 31px
    }
    #interior-hero #blog-hero-article-title {
	    padding-top: 50px;
    }
	#interior-hero #interior-hero-share.blog-hero-share a.boxed-button,
	#interior-hero #interior-hero-share.blog-hero-share button.boxed-button {
		margin-top: 60px;
	}
    #interior-hero.blog-hero {
	    padding-bottom: 40px;
    }
    #blog-taxonomy #blog-taxonomy-wrapper {
	    padding-top: 55px;
	    padding-bottom: 60px;
	}
	#blog-list {
		padding-top: 40px;
	}
    #blog-list .blog-callout {
		margin-bottom: 100px;
	}
}


/* SECTION OR PAGE-SPECIFIC */

#interior-hero.events-hero {
	padding-bottom: 50px; /* Modified interior hero as Events and Blog hero */
}
#events-notification {
	display: none;
	padding-top: 40px;
	padding-bottom: 25px;
}
#events-notification.events-notification-show {
	display: block;
}
#contact-map {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	height: 300px;
	background-color: #ccc;
}
#sponsors-list {
	padding-bottom: 55px;
}
#sponsors-list #sponsors-list-title {
	padding-bottom: 20px;
}
#sponsors-list .sponsor-logo {
	margin-bottom: 25px;
}
#content-left-bias.team-presidents-message {
	margin-top: 30px;
	padding-bottom: 70px;
}
#team-board-of-directors,
#team-staff {
	padding-top: 60px;
	padding-bottom: 80px;
}
.team-member {
	margin-top: 35px;
}
.team-member .board-member-image,
.team-member .staff-member-image {
	width: 100%;
	text-align: center;
}
.team-member .board-member-image img,
.team-member .staff-member-image img {
	width: 70%;
	height: auto;
}
.team-member .team-member-ID {
	padding-top: 15px;
	border-top: 1px solid #27313f;
}
.team-member p.team-member-role {
	margin-top: -5px;
}

@media (min-width: 576px) {
    .team-member .board-member-image img,
    .team-member .staff-member-image img {
	    width: 100%;
    }
}

@media (max-width: 767px) {
    #sponsors-list #sponsors-list-title {
	    padding-top: 10px;
    }
}

@media (min-width: 768px) {
	#contact-map {
	    margin-bottom: 35px;
		height: 440px;
	}
    #sponsors-list {
		padding-bottom: 30px;
    }
    #sponsors-list #sponsors-list-title {
		padding-top: 10px;
		padding-bottom: 25px;
		text-align: center;
    }
    #content-left-bias.team-presidents-message {
	    margin-top: 75px;
		padding-top: 95px;
		padding-bottom: 80px;
    }
    #team-board-of-directors,
    #team-staff {
	    padding-top: 65px;
	    padding-bottom: 80px;
    }
    .team-member .board-member-image img,
    .team-member .staff-member-image img {
	    width: 80%;
    }
}

@media (max-width: 991px) {
	#content-left-bias.team-presidents-message #content-mainstage {
		padding-bottom: 55px;
	}
	
}

@media (min-width: 992px) {
	#interior-hero.events-hero {
	    padding-bottom: 65px; /* Modified interior hero as Events and Blog hero */
    }
    .team-member .board-member-image img {
	    width: 100%;
    }
    .team-member .staff-member-image img {
	    width: 75%;
    }
}

@media (min-width: 1200px) {
    .team-member .board-member-image img {
	    width: 90%;
    }
    .team-member .staff-member-image img {
	    width: 65%;
    }
}
	

/* CALENDAR STYLING (The Events Calendar) */

#events-calendar,
.tribe-common .tribe-common-b2 {
	font-family: 'Raleway', sans-serif !important;
}
#events-calendar header,
.tribe-common-l-container header,
.tribe-events-l-container header {
	position: relative; /* kill conflicting styles */
	top: auto; /* kill conflicting styles */
	left: auto; /* kill conflicting styles */
	z-index: auto; /* kill conflicting styles */
	width: auto; /* kill conflicting styles */
	height: auto; /* kill conflicting styles */
	max-height: none; /* kill conflicting styles */
	background-color: transparent; /* kill conflicting styles */
}
#events-calendar .tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container,
#events-calendar .tribe-common--breakpoint-medium.tribe-common .tribe-common-l-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
	padding-bottom: 40px !important;
	max-width: 100% !important;
}
.tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container,
.tribe-common--breakpoint-medium.tribe-common .tribe-common-l-container {
	padding-bottom: 40px !important;
}
.tribe-common .tribe-common-c-btn-border,
.tribe-common a.tribe-common-c-btn-border,
.tribe-common .tribe-common-c-btn-border-small,
.tribe-common a.tribe-common-c-btn-border-small {
    padding: 11px 20px;
    width: 100%;
    font-family: 'Raleway', sans-serif !important;
    font-size: 14px !important;
    line-height: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    color: #27313f !important;
	text-transform: uppercase !important;
    background-color: transparent !important;
    border: 1px solid #27313f !important;
    border-radius: 0 !important;
    cursor: pointer;
}
.tribe-common .tribe-common-c-btn-border:hover,
.tribe-common a.tribe-common-c-btn-border:hover,
.tribe-common .tribe-common-c-btn-border-small:hover,
.tribe-common a.tribe-common-c-btn-border-small:hover {
	color: #fff !important;
    background-color: #27313f !important;
}
.tribe-common .tribe-common-c-btn,
.tribe-common a.tribe-common-c-btn {
    padding: 15px 20px !important;
    font-family: 'Raleway', sans-serif !important;
    font-size: 14px !important;
    line-height: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
	text-transform: uppercase !important;
    color: #fff !important;
    background-color: #27313f !important;
    border-radius: 0 !important;
}
.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-view-selector--labels .tribe-events-c-view-selector__button-text {
    font-family: 'Raleway', sans-serif !important;
    font-size: 14px !important;
    line-height: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
	text-transform: uppercase !important;
    color: #27313f !important;
}
.tribe-events-c-subscribe-dropdown__button,
.tribe-events-c-subscribe-dropdown__button-text {
    font-weight: 600 !important;
	text-transform: uppercase !important;
    letter-spacing: 0.04em;
}
.tribe-events .tribe-events-calendar-month__day {
    border-radius: 0 !important;
}
.tribe-events .tribe-events-calendar-month__day-cell--selected,
.tribe-events .tribe-events-calendar-month__day-cell--selected:focus,
.tribe-events .tribe-events-calendar-month__day-cell--selected:hover {
	color: #fff !important;
    background-color: #d2181d !important;
	border-radius: 0 !important;
}
.tribe-events .tribe-events-calendar-month__day-cell--selected .tribe-events-calendar-month__day-date-daynum,
.tribe-events .tribe-events-calendar-month__day-cell--selected:focus .tribe-events-calendar-month__day-date-daynum,
.tribe-events .tribe-events-calendar-month__day-cell--selected:hover .tribe-events-calendar-month__day-date-daynum {
    color: #fff !important;
}
.tribe-events .tribe-events-calendar-month__day-cell--mobile:focus,
.tribe-events .tribe-events-calendar-month__day-cell--mobile:hover {
    background-color: #fff !important;
}
.tribe-events .tribe-events-calendar-month__day-cell--mobile:focus .tribe-events-calendar-month__day-date-daynum, .tribe-events .tribe-events-calendar-month__day-cell--mobile:hover .tribe-events-calendar-month__day-date-daynum {
    color: #27313f !important;
}
.tribe-events .tribe-events-calendar-month__body {
    border: 1px solid #c3c0b9 !important;
}
.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-month__body {
    border-top: 1px solid #c3c0b9 !important;
}
.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-month__week {
    border-left: 1px solid #c3c0b9 !important;
}
.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-month__day {
    border-color: #c3c0b9 !important;
}
.tribe-events-pro .tribe-events-pro-week-grid__events-day,
.tribe-events-pro .tribe-events-pro-week-grid__multiday-events-day {
    border-left: 1px solid #c3c0b9 !important;
}
.tribe-events-pro .tribe-events-pro-week-grid__header-column {
    border-color: #c3c0b9 !important;
}
.tribe-events-pro .tribe-events-pro-week-grid__events-time-tag::after {
    background-color: #c3c0b9 !important;
}
.tribe-events-pro .tribe-events-pro-week-grid__header-row {
    border-right: 1px solid #c3c0b9 !important;
}
.tribe-events-pro .tribe-events-pro-week-grid__events-row-outer-wrapper {
    border-bottom: 1px solid #c3c0b9 !important;
}
.tribe-events-pro .tribe-events-pro-week-grid__events-scroll-wrapper {
    border-right: 1px solid #c3c0b9 !important;
}
.tribe-events-c-top-bar__datepicker-mobile,
.tribe-events-c-top-bar__datepicker-desktop {
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
    font-size: 21px;
    line-height: 22px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.tribe-events-calendar-month__header-column-title-mobile,
.tribe-events-calendar-month__header-column-title-desktop,
.tribe-common .tribe-common-h7,
.tribe-common .tribe-common-h8 {	
	font-family: 'Raleway', sans-serif !important;
	font-weight: 600 !important;
}
.tribe-events-pro .tribe-events-pro-week-grid__events-time-tag {	
	font-family: 'Raleway', sans-serif !important;
	font-weight: 400 !important;
}
.tribe-events-pro .tribe-events-pro-week-grid__header-column--current .tribe-events-pro-week-grid__header-column-daynum, .tribe-events-pro .tribe-events-pro-week-grid__header-column--current .tribe-events-pro-week-grid__header-column-daynum-link {
    color: #d2181d !important;
}
.tribe-events-calendar-month__day-date-daynum,
.tribe-common .tribe-common-h4 {
	font-family: 'Crimson Text', 'Crimson Pro', serif !important;
	font-weight: 300 !important;
	font-size: 21px !important;
	letter-spacing: -0.02em !important;
}
.tribe-events .tribe-events-c-messages__message {
  border-radius: 0 !important;
}
.tribe-common .tribe-common-form-control-text__input::placeholder {
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
	font-size: 21px;
	letter-spacing: -0.02em;
    color: #27313f !important;
}
#tribe-events #legend li,
.tribe-events #legend li {
	padding: 10px 10px 7px 15px !important;
	color: #fff !important;
}
#tribe-events #legend li .tribe-common a,
#tribe-events #legend li .tribe-common a:active,
#tribe-events #legend li .tribe-common a:focus,
#tribe-events #legend li .tribe-common a:hover,
#tribe-events #legend li .tribe-common a:visited,
.tribe-events #legend li .tribe-common a,
.tribe-events #legend li .tribe-common a:active,
.tribe-events #legend li .tribe-common a:focus,
.tribe-events #legend li .tribe-common a:hover,
.tribe-events #legend li .tribe-common a:visited {
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
    color: #fff !important;
}
.tribe-events-calendar-list .tribe-events-category-event-category a,
.tribe-events-calendar-list .tribe_events_cat-event-category a {
	color: #27313f !important;
}
.tribe-events-calendar-latest-past__heading,
.tribe-common-h5 .tribe-common-h3--min-medium {
	font-family: 'Raleway', sans-serif !important;
	font-weight: 400 !important;
	font-size: 28px !important;
	line-height: 29px !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
    color: #27313f !important;
}
.tribe-events-calendar-latest-past__event-title-link,
.tribe-common-anchor-thin {
	font-family: 'Crimson Text', 'Crimson Pro', serif !important;
	font-weight: 300 !important;
	font-size: 24px !important;
	line-height: 28px !important;
	letter-spacing: -0.02em !important;
}
.tribe-events-calendar-latest-past__event-venue-title,
.tribe-events-calendar-latest-past__event-description,
.tribe-events-calendar-day__event-venue-title,
.tribe-events-calendar-day__event-description {
	font-family: 'Raleway', sans-serif !important;
	font-weight: 500 !important;
	font-size: 17px !important;
	line-height: 24px !important;
	color: #27313f !important;
}
.tribe-events-calendar-latest-past__event-date-tag-month,
.tribe-events-calendar-latest-past__event-date-tag-year {
	margin-top: 4px !important;
	font-family: 'Raleway', sans-serif !important;
    font-size: 14px !important;
    line-height: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
    color: #27313f !important;
}
.tribe-events-calendar-latest-past__event-date-tag-daynum {
	font-family: 'Crimson Text', 'Crimson Pro', serif !important;
	font-weight: 300 !important;
	font-size: 48px !important;
	line-height: 64px !important;
	letter-spacing: -0.02em !important;
    color: #27313f !important;	
}
.tribe-events-calendar-day__type-separator-text {
    font-family: 'Raleway', sans-serif !important;
    font-size: 14px !important;
    line-height: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    color: #27313f !important;
	text-transform: uppercase !important;
}

@media (min-width: 768px) {
    #events-calendar .tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container,
    #events-calendar .tribe-common--breakpoint-medium.tribe-common .tribe-common-l-container,
	.tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container,
    .tribe-common--breakpoint-medium.tribe-common .tribe-common-l-container {
	    padding-bottom: 70px !important;
    }
    .tribe-events-calendar-month__day-date-daynum,
    .tribe-common .tribe-common-h4 {
		font-size: 32px !important;
		color: #27313f !important;
	}
    .tribe-events-calendar-latest-past__heading,
    .tribe-common-h5 .tribe-common-h3--min-medium {
		font-size: 31px !important;
		line-height: 32px !important;
    }
}

@media (min-width: 992px) {
    .tribe-events .tribe-events-calendar-month__body {
        border: none !important;
    }
    .tribe-events-c-top-bar__datepicker-desktop {
		font-weight: 500;
		font-size: 24px;
		line-height: 25px;
        color: #27313f !important;
	}
    .tribe-events-calendar-latest-past__heading,
    .tribe-common-h5 .tribe-common-h3--min-medium {
		font-size: 35px !important;
		line-height: 35px !important;
    }
    .tribe-events-calendar-latest-past__event-title-link,
    .tribe-common-anchor-thin {
		font-size: 28px !important;
		line-height: 32px !important;
	}
}
	

/* EVENT DETAIL STYLING (The Events Calendar) */

#tribe-events-pg-template {
	padding-top: 130px;
}
#tribe-events-pg-template .tribe-events-back,
#tribe-events-pg-template .tribe-events-back a {
	font-family: 'Crimson Text', 'Crimson Pro', serif !important;
    font-weight: 300 !important;
	font-size: 21px !important;
	line-height: 24px !important;
    letter-spacing: -0.02em !important;
    color: #27313f !important;
}
#tribe-events-pg-template .tribe-events-notices {
    border-bottom: 1px solid #27313f !important;
}
#tribe-events-pg-template .tribe-events-single-event-title {
	margin-top: 35px !important;
	font-family: 'Raleway', sans-serif !important;
	font-weight: 400 !important;
	font-size: 28px !important;
	line-height: 29px !important;
	letter-spacing: 0.06em !important;
	text-transform: uppercase !important;
    color: #27313f !important;
}
#tribe-events-pg-template .tribe-events-schedule,
#tribe-events-pg-template .tribe-events-schedule h2 {
	font-family: 'Raleway', sans-serif !important;
	font-weight: 500 !important;
	font-size: 17px !important;
	line-height: 24px !important;
	color: #27313f !important;
}
#tribe-events-pg-template .tribe-events-single-event-description {
	max-width: 800px;
}
#tribe-events-pg-template .tribe-events-single-event-description,
#tribe-events-pg-template .tribe-events-single-event-description p {
	font-family: 'Raleway', sans-serif !important;
	font-weight: 500 !important;
	font-size: 17px !important;
	line-height: 24px !important;
	color: #27313f !important;
}
#tribe-events-pg-template .tribe-events-button {	
	font-family: 'Raleway', sans-serif !important;
	font-weight: 500 !important;
}
#tribe-events-pg-template .tribe-events-cal-links {
	margin-top: 20px;
}
#tribe-events-pg-template .tribe-events-event-meta::before,
#tribe-events-pg-template .tribe-events-event-meta ~ div:not(.tribe-events-event-meta, .event-tickets) {
    border-top: 1px solid #27313f !important;
}
#tribe-events-pg-template .tribe-events-single-section-title {	
	font-family: 'Raleway', sans-serif !important;
    font-size: 14px !important;
    line-height: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
    color: #27313f !important;
}
#tribe-events-pg-template .tribe-events-meta-group,
#tribe-events-pg-template .tribe-events-meta-group-details {
	font-family: 'Raleway', sans-serif !important;
	font-weight: 500 !important;
}
#tribe-events-pg-template .tribe-events-meta-group {
	width: 33% !important;
}
#tribe-events-footer {
	border-top: 1px solid #27313f !important;
}
#tribe-events-pg-template .tribe-events-nav-pagination ul {
	padding-left: 0 !important;
	font-family: 'Raleway', sans-serif !important;
	font-weight: 500 !important;
	font-size: 17px !important;
	line-height: 24px !important;
	color: #27313f !important;
}

@media (max-width: 767px) {
    #tribe-events-pg-template .tribe-events-event-image img {
		margin-bottom: 30px !important;
	    width: 100% !important;
	    max-width: 100% !important;
	    height: auto !important;
    }
}

@media (min-width: 768px) {
    #tribe-events-pg-template {
	    padding-top: 150px;
		padding-bottom: 30px;
    }
	#tribe-events-pg-template .tribe-events-single-event-title {
		font-size: 31px !important;
		line-height: 32px !important;
	}
}

@media (min-width: 992px) {
    #tribe-events-pg-template {
	    padding-top: 210px;
		padding-bottom: 50px;
    }
	#tribe-events-pg-template .tribe-events-single-event-title {
		font-size: 35px !important;
		line-height: 35px !important;
	}
}


/* 404 PAGE */

#interior-hero-text.interior-404-text,
#interior-hero-text.interior-404-text p {
	font-size: 33px !important;
	line-height: 33px !important;
}
#interior-hero-text.interior-404-text {
	margin-bottom: 80px;
}
#interior-hero-text.interior-404-text p {
	margin-bottom: 20px;
}

@media (min-width: 768px) {
    #interior-hero-text.interior-404-text,
	#interior-hero-text.interior-404-text p {
		font-size: 42px !important;
		line-height: 40px !important;
    }
    #interior-hero-text.interior-404-text {
		margin-bottom: 110px;
    }
    #interior-hero-text.interior-404-text p {
		margin-bottom: 40px;
    }
}


/* SEARCH RESULTS */
.search-results-posts,
.search-results-pages {
	padding-bottom: 25px;
}


/* MEMBERPRESS */
#page-wrapper.wrapper-accounts {
	padding-bottom: 35px;
}
#page-wrapper.wrapper-accounts .content-accounts {
	padding-top: 40px;
	padding-bottom: 50px;
}
header.entry-header {
	position: relative; /* kill conflicting styles */
	top: auto; /* kill conflicting styles */
	left: auto; /* kill conflicting styles */
	z-index: auto; /* kill conflicting styles */
	width: auto; /* kill conflicting styles */
	height: auto; /* kill conflicting styles */
	max-height: none; /* kill conflicting styles */
	background-color: transparent; /* kill conflicting styles */
	border-bottom: none;
}
h1.entry-title {
	margin-bottom: 15px;
	font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 29px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
div#mepr-account-nav {
	margin-bottom: 50px !important;
}
div#mepr-account-nav .mepr-nav-item,
div#mepr-account-nav .mepr-nav-item a {
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-size: 21px;
    line-height: 24px;
	font-weight: 300;
	letter-spacing: -0.02em;
	color: #008f9c;
}
div#mepr-account-nav .mepr-nav-item a:hover,
div#mepr-account-nav .mepr-nav-item a:active
div#mepr-account-nav .mepr-nav-item a:focus {
	text-decoration: underline;
}
div#mepr-account-nav .mepr-active-nav-tab,
div#mepr-account-nav .mepr-active-nav-tab a {	
	color: #27313f;
}
.mp_wrapper label {
	font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.mp_wrapper form input[type=submit] {
	display: inline-block;
	margin-top: 15px;
	padding: 15px 50px;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 15px;
	letter-spacing: 0.04em;
	color: #27313f;
	text-transform: uppercase;
	background-color: transparent;
	border: 1px solid #27313f;
	text-decoration: none !important;
}
.mp_wrapper form input[type=submit]:hover {
	color: #fff;
	background-color: #27313f;
}
.mp_wrapper .mepr-account-change-password,
.mp_wrapper .mepr-account-change-password a {
	color: #008f9c;
}
.mp_wrapper .mepr-account-change-password a {
	text-decoration: underline;
}
.mp_wrapper .mepr-account-change-password a:hover,
.mp_wrapper .mepr-account-change-password a:active
.mp_wrapper .mepr-account-change-password a:focus {
	color: #27313f;
}

@media (max-width: 991px) {
	#page-wrapper.wrapper-accounts #content-sidebar .content-sidebar-wrapper {
		border-top: 1px solid #b2b2b2;
		padding-top: 20px;
	}
	#page-wrapper.wrapper-accounts #content-sidebar .content-sidebar-wrapper h1 {
		margin-bottom: 50px;
	}
}

@media (min-width: 992px) {
	h1.entry-title {
		margin-bottom: 20px;
		font-size: 35px;
		line-height: 35px;
	}
	#page-wrapper.wrapper-accounts #content-sidebar {
		margin-top: 40px;
	}
	#page-wrapper.wrapper-accounts #content-sidebar .content-sidebar-wrapper h1 {
		margin-bottom: 60px;
	}
}


/* MEMBERS ONLY (Landing) */
#members-highlights {
	padding-top: 65px;
	padding-bottom: 70px;
}
#members-highlights #members-highlights-preface {
	padding-bottom: 40px;
	text-align: center;
}
#members-highlights #members-highlights-preface h2 {
    margin-bottom: 25px;
}
#members-highlights #members-highlights-preface p,
#content-left-bias.members-mondays .members-mondays-article h3 {
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
	font-size: 33px;
	line-height: 33px;
	letter-spacing: -0.04em;
}
#members-highlights #members-highlights-navigation {
	position: relative;
	padding-bottom: 20px;
}
#members-highlights #members-highlights-navigation #highlights-next-wrapper button {
	position: absolute;
	right: 10px;
}
#members-highlights #members-highlights-navigation button {
	display: flex;
	align-items: center;
	font-family: 'Crimson Text', 'Crimson Pro', serif;
	font-weight: 300;
	font-size: 21px;
	line-height: 21px;
	letter-spacing: -0.03em;	
	background-color: transparent;
	border: 0;
}
#members-highlights .highlights-article {
	padding-top: 30px;
	padding-bottom: 25px;
	height: 250px;
	border-top: 3px solid #000;
	border-bottom: 3px solid #000;
}
#members-highlights .highlights-article,
#members-highlights .highlights-article p {
	font-size: 15px;
	line-height: 20px;
}
#members-highlights .highlights-article h3 {
	margin-bottom: 20px;
}
#content-left-bias.members-mondays {
	background-color: #f9f4e8;
}
#content-left-bias.members-mondays #members-mondays-preface h2 {
    margin-bottom: 35px;
}
#content-left-bias.members-mondays #members-mondays-preface p,
#members-highlights .highlights-article h3 {
	font-family: 'Crimson Text', 'Crimson Pro', serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.02em;
}
#content-left-bias.members-mondays #members-mondays-preface hr,
#members-benefits #members-benefits-lede hr {
	margin-top: 20px;
	width: 50px;
	height: 3px;
	background-color: #000;
	border: 0;
	opacity: 1;
}
#content-left-bias.members-mondays .members-mondays-article {
	padding-top: 45px;
}
#content-left-bias.members-mondays .members-mondays-article:last-child {
	border-bottom: 0;
}
#content-left-bias.members-mondays .members-mondays-article h3 {
	text-transform: none;
}
#members-new {
	padding-top: 65px;
	padding-bottom: 40px;
	color: #fff;
	background-color: #d2181d;
}
#members-new hr {
	margin-bottom: 35px;
	width: 30px;
	height: 1px;
	background-color: #fff;
	border: 0;
	opacity: 1;
}
#members-new .members-new-image {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 50px;
	margin-bottom: 50px;
	width: calc(100vw - 164px);
	height: calc(100vw - 164px);
	border-radius: 50%;
	overflow: hidden;
}
#members-new .members-new-image img {
	object-fit: cover;
}
#members-new .members-new-bio,
#members-new .members-new-quote {
	margin-bottom: 25px;
	font-family: 'Crimson Text', 'Crimson Pro', serif;
    font-weight: 300;
    letter-spacing: -0.02em;
}
#members-new .members-new-bio {
	font-size: 22px;
	line-height: 24px;
}
#members-new .members-new-quote {
    font-size: 24px;
    line-height: 28px;
}
#blog-list.members-blog #members-blog-title {
    padding-top: 25px;
    padding-bottom: 30px;
}
#members-benefits {
	padding-top: 25px;
	padding-bottom: 50px;
}
#members-benefits .contents-list-text {
	padding-top: 25px;
	padding-bottom: 30px;
	border-bottom: 1px solid #b2b2b2;
}
#members-benefits .contents-list-wrapper:last-child .contents-list-text {
	border-bottom: 0;
}

@media (min-width: 576px) {	
	#members-highlights .highlights-article {
		height: 310px;
	}
    #members-new .members-new-image {
	    width: 416px;
	    height: 416px;
    }
}
@media (min-width: 576px) and (max-width: 991px) {
	#blog-list.members-blog .blog-callout:last-child {
		display: none;
	}
}

@media (max-width: 767px) {
    #members-new {
	  text-align: center;
	}
    #members-new hr {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 768px) {
	#members-highlights .highlights-article {
		height: 270px;
	}
    #members-new {
	    padding-top: 100px;
	    padding-bottom: 75px;
	}
    #members-new .members-new-image {
	    margin-bottom: 30px;
	    width: 236px;
	    height: 236px;
    }
    #blog-list.members-blog #members-blog-title {
        padding-top: 50px;
        padding-bottom: 35px;
    }
}

@media (max-width: 991px) {
	#members-benefits #members-benefits-lede {
		padding-bottom: 10px;
	}
}

@media (min-width: 992px) {
    #members-highlights {
		padding-top: 100px;
	}
	#members-highlights #members-highlights-preface p,
    #content-left-bias.members-mondays .members-mondays-article h3 {
		margin-bottom: 25px;
		font-size: 42px;
		line-height: 40px;
	}
	#members-highlights .highlights-article {
		height: 300px;
	}
    #content-left-bias.members-mondays #members-mondays-preface p,
	#members-highlights .highlights-article h3 {
		font-size: 28px;
        line-height: 32px;
	}
    #members-new .members-new-image {
	    width: 220px;
	    height: 220px;
    }
    #members-new .members-new-quote {
        font-size: 28px;
        line-height: 32px;
    }
	#members-benefits #members-benefits-lede {
		padding-top: 5px;
	}
    #members-benefits .contents-list-wrapper:first-child .contents-list-text {
		padding-top: 0;
	}
}

@media (min-width: 1200px) {
	#members-highlights .highlights-article {
		height: 280px;
	}
    #members-new .members-new-image {
	    width: 280px;
	    height: 280px;
    }
}

@media (min-width: 1400px) {
	#members-highlights .highlights-article {
		height: 260px;
	}
    #members-new .members-new-image {
	    margin-left: 80px;
    }
}