/*
Theme Name: BLUEPRINT Theme
Author: Blueprint Interactive
Author URI: https://blueprintinteractive.com
Description: Blueprint Interactive Custom Theme.
Version: 1.0
License: GNU General Public License
/* -------------------------------------------------------------- */

/*================== 
  Variables
==================*/
:root {
  --color-blue: rgba(1, 96, 160, 1);
  --color-blue-mid: rgba(3, 69, 134, 1);
  --color-blue-light: rgba(205, 234, 254, 1);
  --color-blue-dark: rgba(0, 48, 108, 1);
  --color-white: rgba(255, 255, 255, 1);
  --color-grey: rgba(73, 76, 80, 1);
  --color-grey-light: rgba(73, 76, 80, 0.3);
  
  /* Adobe Fonts */
  --font-tiller: tiller, sans-serif;

  /* Google Fonts */
  --font-mona: "Mona Sans", sans-serif;
  --font-neuton: "Neuton", serif;
  --font-figtree: "Figtree", sans-serif; 

  /* Github Fonts */
  --font-mona-condensed: "Mona Sans Condensed", sans-serif;
}

::selection {
  background: var(--color-blue); 
  color: var(--color-white); 
}

/* Github Fonts Setup */
@font-face {
	font-family: "Mona Sans Condensed";
	src: url("/wp-content/themes/blueprint/styles/fonts/mona-sans/MonaSansCondensed-Bold.woff2") format("woff2");
	font-weight: 100 900;
	font-stretch: 75% 125%; 
	font-style: normal;
}

-------------------------------------------------------------- */
/* Reset
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td { margin:0; padding:0; }
img { border: 0px; font-family: "Helvetica Neue", Helvetica, arial, sans-serif;}
/* Force the vertical scrollbar in FF */
html { overflow-x:hidden; overflow-y: scroll; }

audio, embed, img, object, video {
    height: auto;
    max-width: 100%; 
}

:focus {
  outline: none;
}

.clearfix:after {content: "."; display: block; height: 0; clear: both; visibility: hidden;}
.clearfix {display: inline-block;}
* html .clearfix { height: 1%;}
.clearfix {display: block;}
.clear { clear: both; }

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
	color: var(--color-grey);
	font-family: var(--font-figtree);
	font-weight: 400;
	word-wrap: break-word;
	width: 100%;
}

.valign {
	position:absolute;
	top:50%;
	transform: translateY(-50%);
	width:100%;
}

/* WAYPOINTS */
.fade-in-from-left {
    opacity: 0;
    animation-timing-function: ease-out;
    -webkit-transform: translateX(-15px);
    -moz-transform: translateX(-15px);
    -o-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fade-in-from-left.animated {
    animation-name: fade-from-left;
    animation-duration: 0.4s;
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

@keyframes fade-from-left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-15px);
        -moz-transform: translateX(-15px);
        -o-transform: translateX(-15px);
        -ms-transform: translateX(-15px);
        transform: translateX(-15px);
    }

    45% {
        opacity: 0.4;
    }

    90% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fade-in-from-bottom {
    opacity: 0;
    animation-timing-function: ease-out;
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -o-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
}

.fade-in-from-bottom.animated {
    animation-name: fade-from-bottom;
    animation-duration: 1s;
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

@keyframes fade-from-bottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(15px);
        -moz-transform: translateY(15px);
        -o-transform: translateY(15px);
        -ms-transform: translateY(15px);
        transform: translateY(15px);
    }
    90% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fade-in-from-right {
    opacity: 0;
    animation-timing-function: ease-out;
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -o-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
}

.fade-in-from-right.animated {
    animation-name: fade-from-right;
    animation-duration: 0.4s;
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

@keyframes fade-from-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(40px);
        -moz-transform: translateX(40px);
        -o-transform: translateX(40px);
        -ms-transform: translateX(40px);
        transform: translateX(40px);
    }

    90% {
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

/* Pulse Pink */ 
@keyframes pulse {
  0% {
   	color: pink;
    transform: scale(1);
  }
  50% {
    color: lightpink;
    transform: scale(1.5);
  }
  100% {
    color: pink;
    transform: scale(1);
  }
}

.element-to-pulse {
	animation: pulse 2s infinite;
	font-weight:bold;
}

@keyframes spin {
	50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/*================== 
  Typography
==================*/
h1, .h1 {
	color: var(--color-blue-dark);
    font-family: var(--font-mona-condensed);
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
}

h2, .h2 {
	font-family: var(--font-tiller);
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 10px;
	text-transform: uppercase;
}

h3, .h3 {
	font-family: var(--font-tiller);
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 10px;
	text-transform: uppercase;
}

h4, .h4 {
	color: var(--color-blue);
	font-family: var(--font-tiller);
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
	text-transform:uppercase;
}

h5, .h5 {
	color: var(--color-blue);
	font-family: var(--font-mona-condensed);
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 10px;
	text-transform:uppercase;
}

p {
	color: var(--color-grey);
	font-size: 18px;
	font-weight: 400;
	line-height: 25px;
	margin-bottom:15px;
}

.main-content ul {
	padding-left: 30px;
}

.main-content ul li {
	color: var(--color-grey);
	font-size: 18px;
	font-weight: 400;
	line-height: 25px;
	margin-bottom:5px;
}

@media (max-width: 1200px){
	h1, .h1 {
		font-size:42px;
	}

	h2, .h2 {
		font-size: 30px;
	}

	h4, .h4 {
		font-size: 18px;
	}

	p {
		font-size: 16px;
		line-height: 22px;
	}
}

a {
	text-decoration:none;
}

.btn { 
	background:var(--color-blue);
	color:#fff; 
	display:inline-block;
	font-size:20px;
	font-weight:bold;
	padding:10px 40px;
	text-align:center; 
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	transition: color 0.4s ease, background-color 0.4s ease;
}
a.btn:hover, 
a.btn.active {
	background:var(--color-blue-dark); 
    box-shadow: 0px 8px 18px -12px #145CB8;
	color:#fff; 
}

/*================== 
  Base
==================*/
.inner { 
	box-sizing: border-box; 
	max-width: 1440px;
	margin: 0 auto;
    width: 90%; 
}

.main {
	min-height:200px;
}

.align-left, .alignleft { float:left; margin:0 20px 20px 0; }
.align-right, .alignright { float:right; margin:0 0 20px 20px; }

.ada-hidden { display:none; }

/*==================
 Mixins
===================*/
/* Underline Effect */
.underline-grow {
	position:relative;
}

.underline-grow::after {
	content: "";
	position:absolute;
	left: 50%;
	bottom: -4px;
	width:0;
	height:2px;
	background: currentColor;
	transition: width 300ms ease, left 300ms ease;
}

.underline-grow--bold::after {
	height: 3px;
}

.underline-grow:hover::after {
	width: 100%;
	left: 0;
}

/* Wiggly Border Effect */
.bordered {
    position: relative;
    display: inline-block;
	width: 100%;
}

.bordered img {
    display: block;
    width: 100%;
    height: auto;
}

.bordered::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: 36px solid transparent;
    -webkit-border-image: url('/wp-content/themes/blueprint/images/icon-border.svg') 30 round;
    border-image: url('/wp-content/themes/blueprint/images/icon-border.svg') 30 round;
	z-index: 2;
}

/*================== 
  Header
==================*/
.header {
	background-color: var(--color-blue);
	padding: 25px 0;
	position:relative;
	width:100%;
	z-index: 5;
}

.header .inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.header__logo {
    display: inline-block;
    max-width: 126px;
	width:100%;
}

.header__logo svg {
    height: auto;
	width: 100%;
}

.header__cta a {
	color:#fff;
	font-size:18px;
	position:relative;
}

/*================== 
  Header Menu
==================*/
.header__menu-wrap {
	position: relative;
	text-align: center;
	vertical-align: top;
	width: 50%;
}

.header__menu-wrap ul {
    list-style: none;
}

.header__menu-wrap ul li {
    display: inline-block;
    margin: 0 3%;
}

.header__menu-wrap ul li a {
	color: var(--color-white);
	font-size:18px;
	transition: color 0.4s ease, background-color 0.4s ease;
	position: relative;
}

.header__menu .menu-item-has-children a {
	position: relative;
	padding-right: 20px;
}

.header__menu .menu-item-has-children a::before {
	border-style: solid;
	border-width: 2px 2px 0 0;
	border-color: var(--color-white);
	content: "";
	height: 7px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) rotate(135deg);
	width: 7px;
}

/* Underline Effect */
.header__menu-wrap ul li a::after,
.header__cta a::after,
.footer ul li a::after {
	content: "";
	position:absolute;
	left: 50%;
	bottom: -4px;
	width:0;
	height:2px;
	background: currentColor;
	transition: width 300ms ease, left 300ms ease;
}

/* Underline Effect on Hover */
.header__menu-wrap ul li a:hover::after,
.header__cta a:hover::after,
.footer ul li a:hover::after {
	width: 100%;
	left: 0;
}

/* Mega Menu */
.mega-menu {
	background-color: var(--color-white);
	inset: 0; 
	opacity: 0;
	overflow-y: auto;
	padding:80px 0;
	place-content: center;
	position: fixed;
	z-index: 999;
	transition: opacity 0.7s ease, visibility 0.7s ease;
	visibility: hidden;
}

.mega-menu.active {
	opacity: 1;
	visibility: visible;
}

.mega-menu-close {
	color: var(--color-blue);
	cursor: pointer;
	font-size: 80px;
    position: absolute;
    right: 1%;
    top: 20px;
}

.mega-menu__grid {
	display:flex;
	flex-wrap: wrap;
	gap: 20px;
}

.mega-menu__entry {
	border:solid 1px var(--color-grey-light);
	display: flex;
	height:150px;
	transition: background-color 0.7s ease;
}

.mega-menu__entry:hover {
	background-color: var(--color-blue-light);
}

.mega-menu__entry--third {
	flex: 0 1 calc(33.333% - 14px);
	width: calc(33.333% - 14px);
}

.mega-menu__entry--full {
	flex: 1 1 calc(100% - 20px);
	width: calc(100% - 20px);
}

.mega-menu__image {
	overflow:hidden;
    width: 50%;
}

.mega-menu__image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.mega-menu__entry--third .mega-menu__image {
	width: 40%;
}

.mega-menu__title {
	align-items: center; 
	color: var(--color-grey);
	display: flex;
	font-family: var(--font-tiller);
	font-size: 20px;
	font-weight: 600;
	justify-content: center;
	padding:20px;
	text-align: center;
	text-transform: uppercase;
	transition: color 0.7s ease;
    width: 50%;
}

.mega-menu__entry:hover .mega-menu__title {
	color: var(--color-blue);
}

.mega-menu__entry--full .mega-menu__title {
	font-size:36px;
}

.mega-menu__entry--third .mega-menu__title {
	width: 60%;
}

/*======================= 
  Header Menu Nav Toggle
=========================*/
.header__menu-toggle {
    cursor: pointer;
    display: none;
    height: 69px;
    margin: 0;
    position: absolute;
    right: 20px;
    top: 9px;
    width: 69px;
    z-index: 5;
}

.header__menu-toggle .inner { margin-top: 12px; position:relative; }

.header__menu-toggle .line {
	background: #fff;
	height: 5px;
	left: 15px;
	position: absolute;
	top: 8px;
	width: 47px;
	transition: 200ms all linear;
	transform-origin: left center;
	-moz-transform-origin: left center;
	-o-transform-origin: left center;
	-webkit-transform-origin: left center;
	-ms-webkit-transform-origin: left center;
	will-change: transform, opacity, left, top;
}
.header__menu-toggle .line-two { top: 19px; }
.header__menu-toggle .line-three { top: 30px; } 

.header__menu-toggle.nav-open {}
.header__menu-toggle.nav-open .line-one { 
    left: 20px;
    top: 6px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
}
.header__menu-toggle.nav-open .line-two { opacity:0; }
.header__menu-toggle.nav-open .line-three {
	left: 19px;
	top: 38px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
}

/*========================= 
  Block - Hero
=========================*/
.hero { 
	align-items: center; 
    display: flex;
	height:880px; 
	position:relative;
}

.hero__bg {
    background-size: cover;
    background-position: center;
	display:none;
	inset: 0;
	position: absolute;
}

.hero__bg--1 {
	display:block;
}

.hero__overlay {
	background-image:
    linear-gradient(180deg,
      rgba(1, 96, 160, 1) 0%,
      rgba(1, 96, 160, 0.85) 9.57%,
      rgba(0, 48, 108, 0.80) 100%
    );
    
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position:absolute;
	height:100%;
	width:100%;
	z-index: 3;
}

.hero__content {
	margin: 0 auto;
	max-width: 1000px;
	padding:20px;
	position:relative;
	text-align: center;
	z-index: 4;
}

.hero__headline h1 {
	color: var(--color-blue-light);
	font-family: var(--font-mona-condensed);
	font-size:64px;
	font-weight:800;
	line-height:77px;
	margin-bottom:10px;
	text-transform:uppercase;
}

.hero__caption {
	color:#fff;
	font-family: var(--font-tiller);
	font-size:38px;
	font-weight:600;
	max-width: 720px;
    margin: 0 auto;
	text-transform: uppercase;
}

/*========================= 
  Block - About
=========================*/
.about .inner {
	max-width: 1000px;
}

.about__caption p {
	color: var(--color-grey);
	font-family: var(--font-neuton);
	font-size: 32px;
	font-weight:300;
	line-height: normal;
	margin-bottom: 40px;
	text-align: center;
}

/*========================= 
  Block - History Gallery
=========================*/
.history-gallery {
	text-align: center;
}

.history-gallery__headline h2 {
	color: var(--color-blue-dark);
}

.history-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-top: 60px;
}

.history-gallery__entry:first-child {
	grid-column: 1 / -1;
	height: 220px;
}

.history-gallery__entry {
	position: relative;
	overflow: hidden;
	height: 190px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: var(--color-white);
	text-decoration: none;
}

.history-gallery__image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.7s ease;
}

.history-gallery__entry:hover .history-gallery__image {
	transform: scale(1.05);
}

.history-gallery__overlay {
	background-color: var(--color-blue);
    height: 100%;
	opacity:0.7;
	position: absolute;
	transition: opacity 0.7s ease;
	width: 100%;
}

.history-gallery__entry:hover .history-gallery__overlay {
	opacity:.9;
}

.history-gallery__title {
	position: relative;
	z-index: 2;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	text-transform: uppercase;
	max-width: 80%;
}

/*================== 
  Hero Text
==================*/
.hero-text {
	background-size: cover; 
	background-position:50% 50%;
	position:relative;
	min-height:880px;
	z-index: 1;
}

.hero-text .inner {
    padding: 90px 0 120px;
    position: relative;
}

.hero-text__overlay {
	background-image:
    linear-gradient(180deg,
      rgba(1, 96, 160, 1) 0%,
      rgba(1, 96, 160, 0.85) 9.57%,
      rgba(0, 48, 108, 0.80) 100%
    );
    
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position:absolute;
	height:100%;
	width:100%;
}

.hero-text__icon {
	margin-bottom: 80px;
}

.hero-text__icon img {
	width:100%;
}

.hero-text__caption p {
	color: var(--color-blue-light);
	font-size: 32px;
	font-family: var(--font-neuton);
	font-style: italic;
	font-weight: 400;
	line-height: normal;
	margin-bottom:40px;
}

.hero-text__sub-title {
	color: var(--color-white);
	font-family: var(--font-tiller);
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
}

.hero-text__content {
	align-items: center;
	display: flex;
    gap: 30px;
	position: relative;
	margin: 0 auto;
	max-width: 1000px;
	z-index: 2;
}

.hero-text__content::before {
	content: "“";
	font-family: var(--font-tiller);
	font-size: 400px;
    font-weight: bold;
    height: 260px;
	line-height: 1;
	color: var(--color-blue); 
	z-index: 0;
}

/*================== 
  Timeline
==================*/
.timeline {
	
}

.timeline__section {
	margin-bottom:80px
}

.timeline__section-label {
	margin-bottom: 25px;
}

.timeline__section-label h2 {
	display: flex;
	align-items: center;
	gap: 30px;
	font-size: 48px;
	font-weight: 600;
	text-transform: lowercase;
	letter-spacing: .06em;
	color: var(--color-blue-dark);
	margin: 0;
}

.timeline__section-label h2::after {
  content: "";
  flex: 1;
  border-bottom: 8px dotted var(--color-blue-light);
}

.timeline__section-inner {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.timeline__section-images {
	flex: 0 0 60%;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.timeline__section-images img {
	width: 100%;
}

.timeline__section-image {
	flex: 1 1 calc(50% - 8px);
	width: calc(50% - 8px);
}

.timeline__section-events {
	flex: 0 0 40%;
}

.timeline__section-event {
	margin-bottom: 30px;
}

.timeline__section-event-year h3 {
	color: var(--color-blue);
	font-family: var(--font-tiller);
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
}

.timeline__section-event-description {
	font-size: 18px;
	font-weight: 400;
	line-height:24px;
}

.timeline__section-back-to-top {
	bottom: 10%;
    display: flex;
    justify-content: flex-end;
	position: fixed;
    right: 5%;
}

.timeline__section-back-to-top a {
    position: relative;
    border: 1px solid var(--color-grey-light);
    border-radius: 30px;
    color: var(--color-blue);
    font-size: 18px;
    padding: 12px 22px 12px 25px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
	transition: color 0.5s ease, background-color 0.5s ease;
}

.timeline__section-back-to-top a:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.timeline__section-back-to-top a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-left: 4px solid var(--color-blue);
    border-bottom: 4px solid var(--color-blue);
    transform: rotate(135deg);
    margin-right: 6px;
    display: inline-block;
    margin-top: 6px;
    transition: border-color 0.5s ease;
}

.timeline__section-back-to-top a:hover::before {
    border-color: var(--color-white);
}

/*================== 
  Exhibit Nav
==================*/
.exhibit-nav {
	font-family: var(--font-tiller);
    position: relative;
}

.exhibit-nav__top {
	background-color: var(--color-blue-light);
	background-image:
        url("/wp-content/themes/blueprint/images/exhibit-bg-1.png"),
        url("/wp-content/themes/blueprint/images/exhibit-bg-2.png");

    background-repeat: no-repeat, no-repeat;
    background-position: left top, right top;
    background-size: 12% auto, auto 100%;
    padding: 32px 0;
	transition: background-color 0.5s ease;
}

.exhibit-nav__top .inner {
	align-items: center;
    display: flex;
	gap: 4%;
    justify-content: space-between;
}

.exhibit-nav__item-count {
	color:var(--color-blue);
	font-size:20px;
	font-weight:600;
	text-transform:uppercase;
}

.exhibit-nav__next {
	color:var(--color-blue);
	display:flex;
	align-items: center;
	gap: 6px;
	font-size:20px;
	font-weight:600;
	text-transform:uppercase;
}

.exhibit-nav__item-col--dots {
    flex: 1;
	opacity:0;
	transition: opacity .5 ease;
}

.exhibit-nav__item-col--dots::before {
    content: "";
    display: block;
    border-bottom: 8px dotted #1172a7;
    width: 100%;
}

.exhibit-nav__icon {
	font-family: var(--font-figtree);
	font-size: 30px;
    margin-top: -4px;	
}

.exhibit-nav__bottom {
    padding: 24px 0;
	transition: background-color 0.5s ease;
}

.exhibit-nav__bottom .inner {
	display: flex;
	align-items: center;
	gap: 6px;
}

.exhibit-nav__prev {
	color:var(--color-blue);
	display:flex;
	align-items: center;
	gap: 6px;
	font-size:20px;
	font-weight:600;
	text-transform:uppercase;
}

.exhibit-nav__prev-title {
	color:var(--color-grey);
	font-size:20px;
	font-weight:600;
	text-transform:uppercase;
    margin-left: 5px;
}

/* Hover States */
.exhibit-nav--link .exhibit-nav__top:hover,
.exhibit-nav--link .exhibit-nav__bottom:hover {
	background-color: var(--color-blue);
	background-image:none;
	cursor: pointer;
}

.exhibit-nav--link .exhibit-nav__top:hover h1,
.exhibit-nav--link .exhibit-nav__bottom:hover .exhibit-nav__prev-title {
	color: var(--color-white);
}

.exhibit-nav--link .exhibit-nav__top:hover .exhibit-nav__item-count,
.exhibit-nav--link .exhibit-nav__top:hover .exhibit-nav__next,
.exhibit-nav--link .exhibit-nav__bottom:hover .exhibit-nav__prev {
	color: var(--color-blue-light);
}

.exhibit-nav--link .exhibit-nav__top:hover .exhibit-nav__item-col--dots {
	opacity:1;
}

/*================== 
  Three Column Images
==================*/
.three-column-images .inner {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

.three-column-images .image-item {
	flex: 1 1 calc(33% - 8px);
	width: calc(33% - 8px);
}

.three-column-images .image-item img {
	display: block;
	width: 100%;
}

/*================== 
  Image With Content
==================*/
.image-with-content .inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	gap: 3%;
}

.image-with-content .inner.is-reversed {
	flex-direction: row-reverse;
}

.image-with-content__image {
	flex: 0 0 50%;
}

.image-with-content__image.no-content {
	flex: 0 0 100%;
}

.image-with-content__image img {
	display: block;
	width: 100%;
}

.image-with-content__caption {
	background-color: var(--color-blue-mid);
    margin-top: -5px;
	padding: 20px;
}

.image-with-content__caption p {
	color: var(--color-white);
	font-size: 14px;
	line-height: 21px;
}

.image-with-content__caption p:last-child {
	margin-bottom: 0;
}

.image-with-content__headline {
	color: var(--color-blue);
	font-size: 48px;
	font-weight: 700;
	text-transform: uppercase;
}

.image-with-content__content.no-image {
	margin: 0 auto;
	max-width: 1000px;
}

/*================== 
  Image With Sidebar
==================*/
.image-with-sidebar .inner {
	align-items: flex-start;
	display: flex;
	justify-content: space-between;
}

.image-with-sidebar .inner.is-reversed {
	flex-direction: row-reverse;
}

.image-with-sidebar__image {
	flex: 0 0 80%;
}

.image-with-sidebar__image img {
	display: block;
	width: 100%;
}

.image-with-sidebar__caption {
	background-color: var(--color-blue-mid);
	flex: 0 0 20%;
	padding: 20px;
}

.image-with-sidebar__caption p {
	color: var(--color-white);
	font-size: 14px;
	line-height: 21px;
}

/*================== 
  Image Gallery Cards
==================*/
.image-gallery-cards .inner {
	align-items: start;
	display: flex;
	justify-content: space-between;
	gap: 3%;
}

.image-gallery-cards__image {
	flex: 1 1 50%;
	width: 50%;
}

.left-wide .image-gallery-cards__image {
	flex: 0 1 66%;
	width: 66%;
}

.left-wide .image-gallery-cards__image:nth-child(2) {
	flex: 0 1 33%;
	width: 33%;
}

.right-wide .image-gallery-cards__image {
	flex: 0 1 33%;
	width: 33%;
}

.right-wide .image-gallery-cards__image:nth-child(2) {
	flex: 0 1 66%;
	width: 66%;
}

.image-gallery-cards__image a {
	position: relative;
}

.image-gallery-cards__count {
	display: flex;
    align-items: center;
    gap: 5px;
	position: absolute;
	right: 20px;
	bottom: 20px;
	font-size: 14px;
	color: black;
	font-weight: 600;
}

.image-gallery-cards__count svg {
    margin-top: 3px;
}

.image-gallery-cards__image a::after {
	background-image: url("/wp-content/themes/blueprint/images/icon-zoom-large.svg");
	background-position: left -35px top -17px;
	background-repeat: no-repeat;
	background-size: 100%;
	content: "";
	opacity: 0;
	height: 100px;
	left: 20px;
	position: absolute;
	top: 20px;
	transition: opacity 0.5s ease;
	width:230px;	
}

.image-gallery-cards__image:hover a::after {
	opacity: 1;
}

.image-gallery-cards__image img {
	display: block;
	width: 100%;
}

.image-gallery-cards__additional-images {
	display:none;
}

.image-gallery-cards__caption {
	background-color: var(--color-blue-mid);
    margin-top: -5px;
	padding: 20px;
	position: relative;
}

.image-gallery-cards__caption p {
	color: var(--color-white);
	font-size: 14px;
	line-height: 21px;
}

.image-gallery-cards__caption p:last-child {
	margin-bottom: 0;
}

/*================== 
  Enhanced Video
==================*/
.enhanced-video__video {
	position: relative;
}

.enhanced-video__video video {
	display: block;
	width: 100%;
}

.enhanced-video__video-play {
	background: none;
	border: none;
	box-shadow: none;
	cursor: pointer;
	outline: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-appearance: none;
}

/*================== 
  Featured Quote
==================*/
.featured-quote .inner {
	align-items: center;
	display: flex;
    gap: 30px;
	position: relative;
	margin: 0 auto;
	max-width: 1000px;
	z-index: 2;
}

.featured-quote .inner::before {
	content: "“";
	color: var(--color-blue-light);
	font-family: var(--font-tiller);
	font-size: 450px;
    font-weight: bold;
    height: 260px;
	line-height: 1;
	z-index: 0;
}

.featured-quote__content p {
	color: var(--color-grey);
    font-family: var(--font-neuton);
	font-size: 32px;
	font-style: italic;
	font-weight: 400;
	line-height: normal;
	margin-bottom:40px;
}

.featured-quote__attribution {
	color: var(--color-blue);
	font-size: 20px;
	font-family: var(--font-tiller);
	font-weight: 600;
	text-transform: uppercase;
}

/*================== 
  Page Header
==================*/
.page-header {
	background-color: var(--color-blue-light);
	background-image:
        url("/wp-content/themes/blueprint/images/exhibit-bg-1.png"),
        url("/wp-content/themes/blueprint/images/exhibit-bg-2.png");

    background-repeat: no-repeat, no-repeat;
    background-position: left top, right top;
    background-size: 12% auto, 23% auto;
    padding: 50px 0;
}

.page-header .inner {
	align-items: center;
    display: flex;
    justify-content: space-between;
}

/*==================
  Error 404
==================*/
.error-404 {
	padding:100px 0;
	text-align: center;
}

.error-404 svg,
.error-404 img {
	height: auto;
	max-width: 800px;
	width:100%;
}

/*==================
  Lightbox Custom
==================*/
.gslide-counter {
	bottom: 40px;   
	color: #fff;
	font-size: 14px;
	letter-spacing: 0.03em;
    opacity: 0.9;
    pointer-events: none;
    position: absolute;
    right: 40px;
}

.glightbox-clean .gdesc-inner {
	padding:20px 0;
}

.glightbox-clean .gslide-description {
	background:transparent;
}

.glightbox-clean .gslide-title,
.glightbox-clean .gslide-description p {
	color: var(--color-white);
	font-size: 14px;
	line-height: 21px;
	text-transform:none;
}

/*================== 
  Footer
==================*/
.footer { 
	background:var(--color-blue-dark);
	color: var(--color-white);
	font-size: 16px;
	padding:100px 0;
	position: relative;
}

.footer__top {
	align-items: flex-start;
	display: flex;
	justify-content: space-between;
	margin-bottom:50px;
}

.footer__bottom {
	border-top: 1px solid var(--color-blue);
	display: flex;
	justify-content: space-between;
	padding-top:30px;
}

.footer__col--col1 {
	max-width: 320px;
}

.footer__logo {
	display:block;
	margin-bottom:25px;
}

.footer__address {
	color:var(--color-blue-light);
	font-size:14px;
	line-height: 25px;
}

.footer__col--col2 {
	display: flex;
	gap: 80px;
}

.footer__heading {
	font-family:var(--font-tiller);
	font-size:20px;
	font-weight:600;
	margin-bottom:6px;
	opacity:.4;
	text-transform:uppercase;
}

.footer__nav-group {
	min-width: 220px;
}

.footer__nav-group ul {
	list-style:none;
}

.footer__nav-group ul li {
	margin-bottom:10px;
}

.footer__nav-group ul li a {
	color:var(--color-blue-light);
	font-size:18px;
	position:relative;
}

.footer__bottom-left {
	display:flex;
	gap:25px;
}

.footer__bottom span {
	color:var(--color-blue-light);
	font-size:18px;
}

.footer__bottom a {
	color:var(--color-blue-light);
	font-size:18px;
}

/*==========================
  Rich Content Typography
==========================*/
.wysiwyg h1 { 
    color: var(--color-blue);
    line-height: 70px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.wysiwyg h2 { color: var(--color-blue-dark); margin-bottom:25px; text-transform: uppercase; }
.wysiwyg h3 { color: var(--color-grey); margin-bottom:20px; }
.wysiwyg h4 { color:#000; margin-bottom:20px; }
.wysiwyg h5 { color:var(--color-blue); text-transform: uppercase; margin-bottom:20px; }
.wysiwyg p { color:var(--color-grey); line-height:30px; margin-bottom:30px; }
.wysiwyg p:last-child { margin-bottom:0; }
.wysiwyg p a { color:var(--color-blue); }
.wysiwyg p a:hover { color:var(--color-blue-dark); }

.wysiwyg ul, 
.wysiwyg ol { color:#012D3B; line-height: 30px; margin-bottom:35px; padding-left:40px; }

.wysiwyg ul li {
	margin-bottom:10px;
}

.wysiwyg ul li strong {
	font-weight:bold;
}

.wysiwyg ul li a {
	color:var(--color-blue);
	font-weight:bold;
	text-decoration:underline;
}

.wysiwyg ul li a:hover {
	color:var(--color-blue-dark);
}

.wysiwyg ul li::marker {
    color: var(--color-blue);
}

.wysiwyg ol li { counter-increment: list; list-style-type: none; position: relative; }
.wysiwyg ol li:before { 
	color: var(--color-blue); 
	content: counter(list) "."; 
	font-weight:bold; 
	left:-34px; 
	position: absolute; 
	text-align: 
	right; 
	width: 26px; 
}

.wysiwyg hr { border: 0; height: 0; border-bottom: 1px solid var(--color-grey); margin:35px 0; width:100%; }

.wysiwyg .btn, 
.wysiwyg .btn:hover { color:#fff; }

/*==============================
  Custom Lightbox Zoom Effect
==============================*/
.ginner-container .zoom-lens {
	background: rgba(255,255,255,0.15);
	background-repeat: no-repeat;
	background-size: 1400%; /* zoom factor */
	border: 1px solid rgba(255,255,255,0.8);
	box-sizing: border-box;
	height:200px;
	position: absolute;
	pointer-events: none;
	transform: translate(-50%, -50%);	
	width:200px;	
}
