:root {
	--primary-color: #1D5396;
    --default-font-family: "Lato", sans-serif;
}

*,*:before,*:after {
    box-sizing: border-box;
}

body,html { min-height: 100%; height: 100%;  }
body {
	background: var(--primary-color);
	color: var(--primary-color);
	font-feature-settings: "kern";
	-webkit-font-feature-settings: "kern";
	-webkit-font-smoothing: antialiased;
	font-weight: 400;
	margin: 0;
	overflow-x: hidden;
	overscroll-behavior: none;
	padding: 0;
	text-rendering: optimizeLegibility;
	transition: opacity 0.5s linear 0.25s;
}

body, form, textarea, select, input {
	color: var(--primary-color);
    font-family: var(--default-font-family);
    font-size: 16px;
    font-weight: 400;
}

a {
	color: var(--primary-color);
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
    margin: 0 0 30px 0;
    padding: 0;
}

h1 {

}

h2 {

}

h3 {

}

h4 {

}

h5 {
}

h6 {
}

p {
    line-height: 144%;
    margin: 0 0 20px;
    padding: 0;
}

p:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child {
    margin: 0;
}

p strong {
    font-weight: 700;
}

img {

}

iframe {
	
}

.hr {
    background: var(--primary-color);
    height: 1px;
    margin: 10px 0 0;
}

.hr hr {
    display: none;
}

.content-block ul,
.footer ul {
    line-height: 28.8px;
    margin: 0 0 20px 0;
    padding: 0 0 0 18px;
}

.footer ul:last-child,
.content-block ul:last-child {
    margin-bottom: 0;
}

@media (max-width: 1080px) {
	body, form, textarea, select, input {
	}
	
	h1, h2, h3, h4, h5, h6 {
	}
	
	h1 {
		font-size: max(56px, 4.95vw);
	}
	
	h2 {
	}
	
	h3 {
	}
	
	h4 {
		font-size: 12px;
	}
}

@media (max-width: 1024px) {
    body, form, textarea, select, input {
    }
    
    h1 {
    }
    
    h2 {
    }
    
    h3 {
    }

    h4 {
    }
}

@media (max-width: 768px) {
	body {
		padding-top: 85px;
		padding-bottom: 85px;
	}

	body, form, textarea, select, input {
	}

    h1 {
		font-size: 36px;
		letter-spacing: -0.36px;
		line-height: 114%;
	}
   
    h2, 
	.section-wrap.full-bleed-intro-section h1 {
		font-size: 36px;
	}
    
    h3 {
	}

	.br-wrap:before {
		content: ' ';
	}

	.br-wrap br {
		display: none;
	}

	img.mobile-square-aspect-ratio {
		aspect-ratio: 353 / 300;
		object-fit: cover;
		width: 100%;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Header ---------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.header {
	background: #fff;
	border-bottom: 22px solid #08A6E0;
	display: flex;
	height: 154px;
	padding: 0 30px;
	position: relative;
	z-index: 3;
}

.header .wrapper {
	align-items: flex-end;
	display: flex;
	flex: 1;
	margin: 0 auto;
	max-width: 1300px;
	padding: 0 0 14px 285px;
	position: relative;
	width: 100%;
}

.main-logo {
	display: block;
	left: 0;
	position: absolute;
	top: 3px;
	width: 242px;
	z-index: 100;
}

.main-logo img {
	display: block;
	width: 100%;
}

.bank-iowa-logo {
	position: absolute;
	right: 0;
	top: 35px;
	z-index: 1;
}

.bank-iowa-logo img {
	display: block;
	max-height: 50px;
	width: 100%;
}

@media (max-width: 1200px) {
	.header {
		height: 15vw;
	}

	.main-logo {
		width: 22.5vw;
	}

	.header .wrapper {
		background-size: 20vw auto;
		background-position: 100% 15px;
		padding-left: 25vw;
	}
}

@media (max-width: 768px) {
	.header {
		border-bottom: 8px solid #08A6E0;
		height: 85px;
		left: 0;
		padding: 0 25px;
		position: fixed;
		right: 0;
		top: 0;
		z-index: 100;
	}

	.main-logo {
		left: -20px;
		width: 134px;
	}

	.header .wrapper {
		background-position: calc(100% - 60px) 50%;
		background-size: auto 32px;
	}

	.bank-iowa-logo {
		right: 60px;
		top: 50%;
		transform: translateY(-50%);
	}

	.bank-iowa-logo img {
		max-height: 32px;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Main Map -------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.main-map {
	aspect-ratio: 100 / 57.3;
	background: url(/assets/images/iowa-map.webp) 50% 50% no-repeat;
	background-size: contain;
	left: 50%;
	max-height: 100vh;
	max-width: 100vw;
	position: fixed;
	top: 50%;
	width: 100%;
	transform: translate(-50%,-50%);
	z-index: -1;
}
	


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Nav Toggle ------------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.nav-toggle {
	display: none;
}

@media (max-width: 768px) {
	.nav-toggle {
		cursor: pointer;
		display: block;
		height: 35px;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 35px;
		z-index: 3;
	}

	.nav-toggle-lines,
	.nav-toggle:before,
	.nav-toggle:after {
		background: var(--primary-color);
		display: block;
		height: 1px;
		position: absolute;
		top: calc(20% - 0.5px);
		transition: transform 0.3s ease, opacity 0.3s ease;
		width: 100%;
	}

	.nav-toggle:before,
	.nav-toggle:after {
		content: '';
		top: calc(50% - 0.5px);
	}

	.nav-toggle:after {
		top: calc(80% - 0.5px);
	}

	body.show-nav .nav-toggle:before {
		transform: rotate(45deg);
	}

	body.show-nav .nav-toggle:after {
		transform: rotate(-45deg);
		top: calc(50% - 0.5px);
	}

	.nav-toggle-label {
		display: none;
	}

	body.show-nav .nav-toggle-lines {
		opacity: 0;
	}
}



/* ----------------------------------------------------------------------------------------------------------------------- */
/* Primary Navigation ---------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.primary-navigation-wrap {

}

.primary-navigation-wrap ul {
	display: flex;
	gap: 40px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-navigation-wrap a {
	color: var(--primary-color);
	display: block;
	font-size: 23px;
	font-weight: 500;
	position: relative;
	text-decoration: none;
}

.primary-navigation-wrap a:after {
	background: var(--primary-color);
	bottom: -4px;
	content: '';
	height: 2px;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	transition: bottom 0.2s ease, opacity 0.2s ease;
}

.primary-navigation-wrap li.selected a:after,
.primary-navigation-wrap a:hover:after {
	bottom: -1px;
	opacity: 1;
}

@media (max-width: 1200px) {
	.primary-navigation-wrap a {
		font-size: max(16px,1.9vw);
	}
}

@media (max-width: 768px) {
	.primary-navigation-wrap {
		background: var(--primary-color);
		border-bottom: 8px solid #08A6E0;
		box-shadow: 0 8px 16px rgba(0,0,0,0.16);
		position: fixed;
		right: 0;
		top: -400px;
		transition: top 0.3s ease;	
		width: 100%;
		z-index: 99;
	}

	body.show-nav .primary-navigation-wrap {
		top: 85px;
	}

	.primary-navigation-wrap ul {
		align-items: center;
		flex-direction: column;
		justify-content: center;
		padding: 50px 25px;
		text-align: center;
	}

	.primary-navigation-wrap a { 
		color: #fff;
		font-size: 30px;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Global Layouts -------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.main-content {
	padding: 0 25px;
}

.section-wrap {
	margin-bottom: 50px;
}

.content-block {
	display: block;
	margin-bottom: 25px;
	margin-left: 25px;
	margin-right: 25px;
	text-align: left;
	width: calc(100% - 50px);
}

.content-block p:last-child,
.content-block h2:last-child,
.content-block h3:last-child,
.content-block h4:last-child,
.content-block h5:last-child {
	margin-bottom: 0;
}

.content-block img {
	height: auto !important;
	max-width: 100%;
}

.section-wrap-inner {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768.5px) {
	.section-wrap-inner {
		display: flex;
		flex-wrap: wrap;
        margin: 0 auto;
		width: calc(100% - 50px);
	}

	.content-block {
		display: block;
		margin-bottom: 25px;
		margin-left: 25px;
		margin-right: 25px;
		width: calc(100% - 50px);
	}

	.content-block.col-1,
	.content-block.col-2 {
		display: block;
	}

    .content-block.mobile-only {
        display: none;
    }

	.content-block.col-3 {
		width: calc((100% / 3) - 50px);
	}

	.content-block.col-2-3 {
		width: calc(((100% / 3) * 2) - 50px);
	}

	.content-block.col-4,
	.content-block.col-3-4,
	.content-block.col-5,
	.content-block.col-2-5,
	.content-block.col-4-5 {
		width: calc(50% - 50px);
	}

	.content-block.col-2,
	.content-block.col-4 {
		width: calc(50% - 50px);
	}

	.content-block.col-4 {
		width: calc(25% - 50px);
	}

	.content-block.col-3-4 {
		width: calc(75% - 50px);
	}
	
	.content-block.col-5 {
		width: calc(20% - 50px);
	}

	.content-block.col-2-5 {
		width: calc(40% - 50px);
	}

	.content-block.col-3-5 {
		width: calc(60% - 50px);
	}
	
	.content-block.col-4-5 {
		width: calc(80% - 50px);
	}

    .two-column-text {
        columns: 2;
        column-gap: 3vw;
    }
}

#mobile-check-element {
    display: none;
}

@media (min-width: 1024.5px) {
    .desktop-hide {
        display: none;
    }
}

@media (max-width: 1024px) {
    .desktop-only {
        display: none;
    }
}

@media (min-width: 768.5px) {
	.mobile-only {
        display: none;
    }
}

@media (max-width: 768px) {
    #mobile-check-element { 
        display: block;
        opacity: 0;
        pointer-events: none;
        position: fixed;
        visibility: hidden;
        z-index: -999;
    }
    
    .mobile-hide {
        display: none;
    }

    .main-content .wrapper {
        display: flex;
        flex-direction: column;
    }

	.section-wrap {
		margin-bottom: 50px;
	}

    .section-wrap.mobile-first {
        order: 1;
    }

	.content-block {
		margin-left: 25px;
		margin-right: 25px;
		margin-bottom: 30px;
		width: auto;
	}

	.content-block:last-child {
		margin-bottom: 0;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Inline Carousels ------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.slick-slide {
	outline: none;
	position: relative;
}

.slick-slide .image {
	background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.slick-slide .image img {
	display: block;
	margin: 0 auto;
	opacity: 0;
}

.slick-slide .image {
    overflow: hidden;
    position: relative;
}

.slick-prev,
.slick-next {
    background: url(/assets/images/icons/left-arrow.svg) 50% 50% no-repeat;
	background-size: contain;
	border: 0;
	height: 40px;
	left: -30px;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
    cursor: pointer;
    outline: none;
    position: absolute;
    text-indent: -9999px;
    z-index: 51;
}

.slick-next {
	background-image: url(/assets/images/icons/right-arrow.svg);
	left: auto;
	right: -30px;
}

.gallery-with-dots .slick-prev,
.gallery-with-dots .slick-next {
	background: url(/assets/images/icons/white-chevron-left.svg) 50% 50% no-repeat;
	background-size: contain;
	bottom: auto;
	display: block !important;
	height: max(29px, 1.68vw);
	left: max(29px, 1.68vw);
	right: auto;
	top: 50%;
	transform: translateY(-50%);
	width: max(29px, 1.68vw);
}

.gallery-with-dots .slick-next {
	background-image: url(/assets/images/icons/white-chevron-right.svg);
	left: auto;
	right: max(29px, 1.68vw);
}

.gallery-with-dots .slick-arrow.slick-prev,
.gallery-with-dots .slick-arrow.slick-next {
	display: none !important;
}


.embedded-gallery-wrap {
    margin-bottom: 25px;
}

.embedded-gallery-wrap:last-child {
    margin-bottom: 0;
}

ul.slick-dots {
	align-items: center;
	display: flex;
	gap: max(20px, 1.16vw);
	justify-content: center;
	left: 0;
	line-height: 100%;
	list-style: none;
	margin: 1.74vw 0 0 0;
	padding: 0;
	position: absolute;
	right: 0;
	top: 100%;
}

ul.slick-dots li {
}

ul.slick-dots li button {
	background: none;
	border: 1px solid var(--primary-color);
    border-radius: 100%;
	cursor: pointer;
	display: block;
	height: max(12px, 0.69vw);
	margin: 0;
	outline: none;
	padding: 0;
	text-indent: -9999px;
	transition: background 0.2s ease;
    width: max(12px, 0.69vw);
}

ul.slick-dots li button:hover,
ul.slick-dots li.slick-active button {
	background: var(--primary-color);
}

.slick-slide .caption {
	margin-top: 10px;
	font-size: 12px;
}

@media (max-width: 1080px) {
	.slick-next {
		right: 25px;
	}
}

@media (max-width: 768px) {
	.content-block.gallery-with-dots {
		margin-bottom: 60px;
		margin-left: 0;
		margin-right: 0;
	}

	.gallery-with-dots .image {
		background-size: cover;
	}

	.gallery-with-dots img {
		aspect-ratio: 353 / 300;
		object-fit: cover;
		width: 100%;
	}

	.gallery-with-dots ul.slick-dots {
		gap: 10px;
		justify-content: flex-start;
		margin-top: 25px;
		padding-left: 25px;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Buttons --------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.button {
    -webkit-appearance: none;
	align-items: center;
	background: #fff;
	border-radius: 0;
	border: 0;
	font-size: 24px;
	justify-content: center;
	text-align: center;
	text-align: center;
    color: var(--primary-color);
    cursor: pointer;
    display: inline-flex;
    font-weight: 700;
    line-height: 100%;
    padding: 15px 45px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

@media (min-width: 1080.5px) {
	.button:hover {
		background-color: #a4eaff;
		color: var(--primary-color);
		text-decoration: none;
	}
}

@media (max-width: 768px) {
	.button {
		font-size: 18px;
		padding: 13px 30px;
	}
}



/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Editor Template -> Image with Caption -------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
figure.image-with-caption {
    margin: 0 0 20px 0;
    padding: 0;
}

figure.image-with-caption:last-child {
	margin: 0;
}

figure.image-with-caption img {
    display: block;
    width: 100% !important;
    height: auto !important;
}

figure.image-with-caption figcaption {
    margin-top: 10px;
	font-size: max(12px, 1vw);
}

@media (min-width: 768.5px) {
	figure.image-with-caption img.mobile-only {
		display: none;
	}
}

@media (max-width: 768px) {
	figure.image-with-caption img:not(.mobile-only,.mobile-hide) {
		aspect-ratio: 130 / 103;
		object-fit: cover;
	}

	figure.image-with-caption img.mobile-hide {
		display: none;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Editor Template -> Responsive Video Wrap ----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.responsive-video-wrap {
	position: relative;
}

.responsive-video-wrap .video-urls,
.responsive-video-wrap .image {
	display: none;
}

.video-play-toggle {
    bottom: 0;
    color: transparent;
    cursor: pointer;
    display: none;
    left: 0;
    position: absolute;
    right: 0;
    text-indent: -9999px;
    top: 0;
    z-index: 101;
}

.video-play-toggle:before {
    border-radius: 100%;
    border: 2px solid #fff;
    content: '';
    height: 5rem;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 5rem;
}

.video-play-toggle:after {
    border-bottom: 1rem solid transparent;
    border-left: 1.4rem solid #fff;
    border-top: 1rem solid transparent;
    content: '';
    height: 0; 
    left: 50.15%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 0; 
}

.responsive-video-wrap video {
	display: block;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Full Bleed Intro Section --------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */




/* ----------------------------------------------------------------------------------------------------------------------- */
/* Homepage -------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
body.viewing-page-homepage {
	align-items: center;
	display: flex;
	color: #fff;
	justify-content: center;
}

body.viewing-page-homepage .main-content {
	opacity: 0;
	filter: blur(10px);
	transition: opacity 0.7s linear, filter 0.7s linear;
}

body.viewing-page-homepage.loaded .main-content {
	filter: blur(0);
	opacity: 1;
}

body.viewing-page-homepage .header {
	display: none;
}

body.viewing-page-homepage .main-content img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}

body.viewing-page-homepage .main-content p {
	font-size: 24px;
	font-weight: 500;
	margin: 0 auto 50px auto;
	max-width: 1222px;
	width: 100%;
}

body.viewing-page-homepage .main-content p:first-child {
	margin-bottom: -50px;
}

body.viewing-page-homepage .main-content ul {
	align-items: center;
	display: flex;
	gap: 50px;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (max-width: 768px) {
	body.viewing-page-homepage .main-content p {
		font-size: 17px;
		margin-bottom: 25px;
		max-width: 100%;
		width: 100%;
	}

	body.viewing-page-homepage .main-content p:first-child {
		margin-bottom: 0;
	}

	body.viewing-page-homepage .main-content ul {
		flex-wrap: wrap;
		flex-direction: column;
		gap: 18px;
	}

	body.viewing-page-homepage .main-content li {
		width: 100%;
	}

	body.viewing-page-homepage .main-content .button {
		width: 100%;
		min-width: 100%;
	}

	body.viewing-page-homepage .section-wrap {
		margin-bottom: 0;
	}
}

@media (max-height: 750px) {
	body.viewing-page-homepage {
		display: block;
	}

	body.viewing-page-homepage.loaded .main-content {
		padding-bottom: 100px;
	}
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Our History Page ------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
body.viewing-page-history .main-content .wrapper {
	display: flex;
	margin: 0 auto;
	max-width: 1300px;
	opacity: 0;
	transition: opacity 0.5s linear;
}

body.viewing-page-history.loaded .main-content .wrapper {
	opacity: 1;
	padding-bottom: 30vh;
}

body.viewing-page-history .left-col {
	padding-top: 150px;
}

@media (min-width: 768.5px) {
	body.viewing-page-history .right-col {
		margin-left: auto;
		width: calc(100% - 280px);
	}
}

.history-timeline-links {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 0;
	position: sticky;
	top: 50px;
	width: 120px;
}

body.unsticky-timeline-links .history-timeline-links {
	position: static;
}

.history-timeline-links li {
	position: relative;
	margin-bottom: 1vh;
	padding: 0 0 4vh;
}

.history-timeline-links li:not(:last-child):after {
	background: #fff;
	bottom: 0;
	content: '';
	height: 3.25vh;
	left: 50%;
	opacity: 0.7;
	pointer-events: none;
	position: absolute;
	transform: translateX(-50%);
	width: 1px;
}

.history-timeline-links li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}

.history-timeline-links li:nth-child(2n) {
	text-align: right;
}

.history-timeline-links a {
	color: #fff;
	display: block;
	font-family: 'Times New Roman', Times, serif;
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	line-height: 100%;
	height: 18px;
}

.history-timeline-links a:after {
	border-radius: 100%;
	border: 1px solid #fff;
	content: '';
	height: 18px;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	transition: background 0.2s ease;
	width: 18px;
}

.history-timeline-links a.selected:after,
.history-timeline-links a:hover:after {
	background: #fff;
}

.mobile-select-wrap {
	display: none;
}

.timeline-intro-section {
	color: #fff;
	padding-top: 50px;
	font-size: 18px;
	font-weight: 500;
}

.timeline-intro-section img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}

.timeline-wrapper {
	background: url(/assets/images/template/background-repeat-new.webp) 50% 0 repeat-y;
	background-size: 100% auto;
	box-shadow: 0 0 16px rgba(0,0,0,0.6);
}

.section-wrap.timeline-year-break {
	margin: 0 -50px 60px;
	box-shadow: 0 0 16px rgba(0,0,0,0.6);
}

.section-wrap.timeline-year-break .section-wrap-inner {
	width: 100%;
}

.section-wrap.timeline-year-break .content-block {
	margin: 0;
	width: 100%;
}

.section-wrap.timeline-year-break .content-block img {
	display: block;
	width: 100% !important;
}

.timeline-item:not(.section-wrap) {
	align-items: center;
	display: flex;
	gap: 50px;
}

.timeline-item:not(.section-wrap) .image {
	align-items: center;
	display: flex;
	justify-content: center;
	width: 50%;
}

.timeline-item:not(.section-wrap) .image img {
	display: block;
	max-width: 100%;
}

.timeline-item:not(.section-wrap) .image img.special-image-01 {
	transform: scale(1.5);
	margin-bottom: 50px;
}

.timeline-item:not(.section-wrap) .image img.special-image-02 {
	transform: scale(2.5) translateY(-70px) translateX(20px);
	margin-top: 350px;
}

.timeline-item:not(.section-wrap):not(.no-image) .content {
	width: 50%;
	position: relative;
}

.is-odd .timeline-item:not(.section-wrap):not(.no-image) .content {
	margin-left: 100px;
	order: -1;
}

.timeline-item:not(.section-wrap):not(.no-image) .content .alignment {
	display: none;
}

.timeline-item:not(.section-wrap):not(.no-image) .content .year {
	color: var(--primary-color);
	font-family: 'Times New Roman', Times, serif;
	font-size: 52px;
	font-weight: bold;
	left: -81px;
	opacity: 0.25;
	position: absolute;
	top: 0px;
	transform: rotate(-90deg);
}

.timeline-item:not(.section-wrap):not(.no-image) .content .title {
	font-weight: 700;
	margin-bottom: 10px;
}

.timeline-item:not(.section-wrap):not(.no-image) .content .desc {
	color: #707070;
	font-family: 'Times New Roman', Times, serif;
	font-size: 16px;
	max-width: 70%;
}

@media (max-width: 768px) {
	.timeline-wrapper {
		padding-bottom: 80px;
	}

	.section-wrap.timeline-year-break {
		margin: 0 -25px 60px;
	}

	body.viewing-page-history .main-content  {
		max-width: 100vw;
		overflow-x: hidden;
	}

	body.viewing-page-history .main-content .wrapper {
		padding-left: 0;
	}

	body.viewing-page-history .left-col {
		background: #08A6E0;
		color: #fff;
		left: 0;
		padding: 0;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		padding-right: 25px;
		padding-bottom: 8px;
		position: fixed;
		right: 0;
		top: 85px;
		z-index: 99;
	}

	#history-timeline-mobile-select {
		margin-left: 5px;
	}

	.history-timeline-links {
		display: none;
	}

	.mobile-select-wrap {
		display: block;
	}

	.is-odd .timeline-item:not(.section-wrap):not(.no-image) .content {
		margin-left: 20px;
	}

	.timeline-item:not(.section-wrap) {
		flex-direction: column;
	}

	.timeline-item:not(.section-wrap) .image,
	.timeline-item:not(.section-wrap):not(.no-image) .content {
		width: auto;
	}

	.timeline-item:not(.section-wrap):not(.no-image) .content {
		margin-left: 20px;
	}

	.timeline-item:not(.section-wrap) .image {
		order: -1;
	}

	.timeline-item:not(.section-wrap):not(.no-image) .content .title {
		margin-left: 0 !important;
	}

	.timeline-item:not(.section-wrap):not(.no-image) .content .year {
		font-size: 42px;
		left: -64px;
		margin-left: 0 !important;
	}

	.timeline-item:not(.section-wrap):not(.no-image) .content .desc {
		max-width: 100%;
		margin-left: 0 !important;
	}

	.timeline-item:not(.section-wrap):not(.no-image) .content .desc p {
		margin-left: 0 !important;
	}

	.timeline-item:not(.section-wrap) .image img.special-image-01 {
		transform: scale(1.35);
	}
	
	.timeline-item:not(.section-wrap) .image img.special-image-02 {
		margin-top: 20px;
		transform: scale(1.5) translateY(0) translateX(20px);
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Our Communities Page -------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.communities-intro-section {
	align-items: center;
	background: rgba(0,0,0,0.5);
	bottom: 0;
	color: #fff;
	display: flex;
	filter: blur(10px);
	flex-direction: column;
	justify-content: center;
	left: 0;
	margin: 0;
	opacity: 0;
	padding: 50px 30px 150px;
	position: absolute;
	right: 0;
	top: 154px;
	transition: opacity 0.7s linear, filter 0.7s linear;
	z-index: 2;
}

body.loaded .communities-intro-section {
	filter: blur(0);
	opacity: 1;
}

body.loaded.slow-hide-explore .communities-intro-section {
	pointer-events: none;
	opacity: 0;
	filter: blur(10px);
}

body.hide-explore .communities-intro-section {
	display: none;
}

.communities-intro-section h1 {
	color: #fff;
	font-size: 97px;
	font-weight: 900;
	line-height: 100%;
	margin-bottom: 40px;
}

.communities-intro-section h1 small {
	color: #fff;
	display: inline-block;
	font-size: 42px;
	font-weight: 500;
	letter-spacing: 4px;
	margin-bottom: -20px;
	text-transform: uppercase;
}

.communities-intro-section p {
	font-size: 24px;
	margin: 0 auto 50px;
	max-width: 1000px;
}

.location-overlay {
	background: url(/assets/images/template/background-repeat-new.webp) 50% 0 repeat-y;
	background-size: 100% auto;
	box-shadow: 0 0 16px rgba(0,0,0,0.6);
	display: none;
	margin-top: 100px;
	margin: 0 auto;
	max-width: 100%;
	position: relative;
	width: 1020px;
	z-index: 103;
}

body:not(.show-list) .locations-list {
	pointer-events: none;
}

.locations-list {
	background: rgba(0,0,0,0.5);
	bottom: 0;
	color: #fff;
	display: flex;
	flex-direction: column;
	left: -100%;
	overflow-y: auto;
	padding: 304px 50px 50px 50px;
	position: fixed;
	top: 0;
	z-index: 2;
	transition: left 1s ease-out;
}

body.show-list .locations-list {
	left: 0;
}

.locations-list ul {
	list-style: none;
	margin: 0;
	padding: 0 0 0 10px;
}

.locations-list h3,
.locations-list ul {
	filter: blur(5px);
	opacity: 0;
	transition: all 0.75s ease 01s;
} 

body.show-list .locations-list h3,
body.show-list .locations-list ul {
	filter: blur(0);
	opacity: 1;
}

.locations-list ul a {
	color: #fff;
	position: relative;	
	text-decoration: none;
}

.locations-list ul a:after {
	background: #fff;
	bottom: -4px;
	content: '';
	height: 1px;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	transition: bottom 0.2s ease, opacity 0.2s ease;
}

.locations-list ul li.selected a:after,
.locations-list ul a:hover:after {
	bottom: -1px;
	opacity: 1;
}

body.loaded:not(.show-list) .map-marker {
	pointer-events: none;
}

.map-marker {
	aspect-ratio: 1;
	background: url(/assets/images/icons/map-star.svg) 50% 50% no-repeat;
	background-size: contain;
	cursor: pointer;
	filter: blur(10px);
	opacity: 0;
	position: absolute;
	transform: scale(1.1);
	transition: opacity 0.7s linear 1s, filter 0.7s linear 1s, transform 0.5s linear 1s;
	width: calc((28 / 1920) * 100%);
	z-index: 2;
}

body.loaded.show-list .map-marker {
	filter: blur(0);
	opacity: 1;
	transform: none;
}

body.loaded.show-list .main-map {
	z-index: 1;
}

body:not(.show-list) .map-marker .title {
	display: none;
}

body.loaded.show-list .map-marker .title {
	background: #fff;
	border-radius: 5px;
	bottom: calc(100% + 8px);
	font-size: 12px;
	left: 50%;
	margin-bottom: -5px;
	opacity: 0;
	padding: 5px 10px;
	pointer-events: none;
	position: absolute;
	transform: translateX(-50%);
	transition: opacity 0.3s ease, margin 0.3s ease;
	white-space: nowrap;
}

body.loaded.show-list .map-marker .title:after {
	background: #fff;
	bottom: -4px;
	content: '';
	height: 8px;
	left: calc(50% - 4px);
	position: absolute;
	transform: rotate(45deg);
	width: 8px;
}

body.loaded.show-list .map-marker:hover .title {
	opacity: 1;
	margin-bottom: 0;
}

.video-placeholder {
	aspect-ratio: 16 / 9;
	background: #000;
	width: 100%;
}

.video-placeholder iframe {
	display: block;
	width: 100%;
	height: auto !important;
}

.location-overlay .section-wrap-inner {
	width: 100%;
}

.location-overlay .close-x {
	background: url(/assets/images/icons/close-x.svg) 50% 50% no-repeat;
	background-size: contain;
	cursor: pointer;
	height: 29px;
	position: absolute;
	right: 0;
	top: -33px;
	width: 17px;
}

body.show-location-overlay:after {
	background: rgba(29, 83, 150,0.5);
	backdrop-filter: blur(10px);
	bottom: 0;
	content: '';
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 102;
}

@media (max-width: 768px) {
	.communities-intro-section {
		padding: 85px 25px;
		top: 85px;
	}
	
	.communities-intro-section h1 {
		font-size: 40px;
	}

	.communities-intro-section h1 small {
		font-size: 22px;
	}

	.map-section > .section-wrap-inner > .content-block {
		margin-left: 0;
		margin-right: 0;
	}

	.locations-list {
		width: 100%;
		padding: 160px 25px 50px 25px !important;
	}

	.locations-list ul {
		columns: 2;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Bank Intro Section ---------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.section-wrap.bank-intro-section {
	padding-top: 25px;
	position: relative;
}

.section-wrap.bank-intro-section:before {
	background: var(--primary-color);
	bottom: -25px;
	content: '';
	left: 50px;
	position: absolute;
	right: 25px;
	top: 50px;
}

.section-wrap.bank-intro-section .content-block {
	color: #fff;
	position: relative;
	z-index: 1;
}

.section-wrap.bank-intro-section a {
	color: #fff;
}

@media (min-width: 768.5px) {
	.section-wrap.bank-intro-section .content-block:not(.image-block) {
		margin-left: 0;
		margin-right: 50px;
		margin-bottom: 0;
	}
}

.section-wrap.bank-intro-section .content-block:not(.image-block) big {
	color: var(--primary-color);
}

.section-wrap.bank-intro-section .content-block:not(.image-block) h2 {
	font-size: 35px;
	margin-bottom: 0;
}

.section-wrap.bank-intro-section .content-block:not(.image-block) h3 {
	margin-bottom: 15px;
}

.section-wrap.bank-intro-section .content-block:not(.image-block) p:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.section-wrap.bank-intro-section:before {
		left: 0;
		right: 0;
		top: 0;
	}

	.section-wrap.bank-intro-section .content-block:not(.image-block) big {
		color: #fff;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Contribute Form ------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
#contribute-form {
	color: #fff;
	margin: 0 auto;
	max-width: 600px;
	padding: 0;
	position: relative
}

#contribute-form .form-inner-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}

#contribute-form .field-wrap {
	width: calc(50% - 12.5px);
}

#contribute-form .field-wrap.full {
	width: 100%;
}

#contribute-form .field-wrap label {
	color: #fff;
	display: block;
	margin-bottom: 4px;
}

#contribute-form .field-wrap p {
	font-size: 15px;
	margin-top: 10px;
}

#contribute-form .field-wrap p a {
	color: #fff;
}

#contribute-form .submit-wrap {
	margin-left: auto;
}

#contribute-form .submit-wrap .button {
	padding: 21px 45px;
}

#contribute-form .field-wrap input[type=text],
#contribute-form .field-wrap input[type=email],
#contribute-form .field-wrap textarea {
	border-radius: 0;
	border: 3px solid #ccc;
	display: block;
	padding: 10px;
	width: 100%;
}

#contribute-form .field-wrap.error input[type=text],
#contribute-form .field-wrap.error input[type=email],
#contribute-form .field-wrap.error textarea {
	border: 3px solid red;
}

.form-inner-wrap {
	transition: opacity 0.5s linear, visibility 0.5s linear;
}

#contribute-form.submitting .form-inner-wrap {
	opacity: 0.3;
	pointer-events: none;
}

body.show-thank-you .form-inner-wrap {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}

.thank-you {
	background: rgba(8, 166, 224,0.2);
	left: 50%;
	opacity: 0;
	padding: 30px;
	pointer-events: none;
	position: absolute;
	text-align: center;
	transform: translateX(-50%);
	transition: opacity 0.5s linear 0.5s, visibility 0.5s linear 0.5s;
	visibility: hidden;
	width: 100%;
}

body.show-thank-you .thank-you {
	opacity: 1;
	visibility: visible;
}

@media (max-width: 600px) {
	body.loaded .communities-intro-section {
		display: block;
		overflow-y: auto;		
		padding-bottom: 100px;
	}

	#contribute-form .field-wrap.turnstile {
		width: 100%;
	}

	#contribute-form .submit-wrap {
		width: 100%;
		margin: 0;
	}

	#contribute-form .submit-wrap .button {
		width: 100%;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Back to Top Arrow ----------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.back-to-top {
	background: #fff;
	bottom: 25px;
	cursor: pointer;
	height: 40px;
	opacity: 0;
	position: fixed;
	right: 25px;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	visibility: hidden;
	width: 40px;
	z-index: 999;
}

body.show-back-to-top .back-to-top {
	opacity: 1;
	visibility: visible;
}