:root {
  --g-ff-primary: 'museo-sans', sans-serif;
  --g-ff-secondary: 'cheap-pine-sans', sans-serif;
	--g-ff-fallback: sans-serif;
  --g-fw-light: 300;
	--g-fw-regular: 500;
	--g-fw-semibold: 700;
	--g-fw-bold: 900;
	--g-fz-base: 16px;
  --g-color-green: #96BD87;
  --g-color-white: #FFFFFF;
	--g-text-color: #1B0800;
  --g-text-color-heading: #1B0800;
  --g-link-color: #2D8289;
  --g-link-color-hover: #266f76;
	--g-bg-primary: #FFFFFF;
  --g-bg-footer: #F1F0E2;
  --g-bg-button: #C65326;
  --g-bg-button-secondary: #2D8289;
  --g-bg-button-hover: #72C4C4;
  --g-bg-button-secondary-hover: #C65326;
  --g-bg-button-text: #FFFFFF;
  --g-bg-button-text-secondary: #FFFFFF;
  --g-bg-button-text-hover: #303030;
  --g-bg-button-text-secondary-hover: #FFFFFF;
	--g-content-width: 1200px;
}

/* Reset some default browser styles */
*, *::after, *::before {
  box-sizing: border-box;
}
* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  background-color: var(--g-bg-body, white);
}
html,
body {
	height: 100%;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main, form legend {
	display: block;
}
ol, ul, menu {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
img, video, svg {
  display: block;
	height: auto;
	max-width: 100%;
}
embed,
iframe,
object {
	max-width: 100%;
}

/* Custom Styles */
body {
  font-family: var(--g-ff-fallback);
  font-size: var(--g-fz-base);
  background-color: var(--g-color-white);
  color: var(--g-text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

.wf-active body {
  font-family: var(--g-ff-secondary);
}

.screen-reader-text {
  border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}
.screen-reader-text:focus {
  background-color: #eee;
  clip: auto;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.container {
  position: relative;
  width: 100%;
  height: 100vh;

  min-block-size: 100vh;
  min-block-size: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;

  grid-template-areas:
    "header"
    "main"
    "footer";
}

.ps-inner {
  max-width: var(--g-content-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
}

.ps-header {
  background-color: var(--g-color-white);
  border-top: 10px solid #F1F0E1;
  grid-area: header;
  position: relative;
}
.ps-header--nav {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin: 0;
  padding: 20px;
  position: relative;
  width: 100%;
}
.ps-header--utility {
  font-family: var(--g-ff-primary);
  padding: 10px 20px;
  width: 100%;
}
.ps-header--utility .ps-inner {
  display: flex;
  justify-content: flex-end;
}
.ps-header--utility-link:link,
.ps-header--utility-link:visited {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: var(--g-fw-semibold);
  color: var(--g-color-white);
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  transition: all 0.2s ease;
}
.ps-header--utility-link:hover,
.ps-header--utility-link:active,
.ps-header--utility-link:focus {
  color: var(--g-color-gold);
}
.ps-header--utility .icon-svg {
  width: 16px;
  height: 16px;
  fill: var(--g-color-gold);
  flex-shrink: 0;
  margin-right: 5px;
}

.logo {
  display: block;
  width: 100%;
  max-width: 285px;
}
.logo > img {
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.ps-footer {
  grid-area: footer;
  background-color: var(--g-bg-footer);
  padding: 1.25rem;
}
.ps-footer .ps-inner {
  align-items: center;
}
.ps-footer--nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.ps-footer--logos {
  display: flex;
  gap: 10px;
}
.ps-footer--logos_wrap {
  display: flex;
  flex-direction: column;
  font-family: var(--g-ff-primary);
  gap: 10px;
}
.ps-footer--logos_wrap p {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 0;
}
.ps-footer--info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}

.ps-main {
  background-color: var(--g-color-green);
  background-image: url('images/bg_pattern.svg');
  background-repeat: no-repeat;
  background-size: 140%;
  background-position: center 25%;
  grid-area: main;
  padding: 1.25rem;
}

.ps-main .ps-inner {
  align-items: center;
  height: 100%;
}

.copyright {
  display: flex;
  align-items: center;
  gap: 10px;
}
.copyright img {
  height: 33px;
}
.copyright p {
  font-size: 12px;
  font-weight: var(--g-fw-regular);
  line-height: 1.25;
  margin: 0;
}

.flex-content {
  background-color: #ffffff;
  color: var(--g-text-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 60px;
  width: 60%;
}

.text-component {
  color: var(--g-text-color);
  font-family: var(--g-ff-primary);
  width: 60%;
  max-width: 780px;
  text-align: center;
  padding: 30px;
}
.text-component a:not(.co-button):link,
.text-component a:not(.co-button):visited {
  color: var(--g-color-white);
  text-decoration: underline;
}
.text-component a:not(.co-button):hover,
.text-component a:not(.co-button):active {
  text-decoration: none;
}

.text-component--heading {
  font-family: var(--g-ff-primary);
  font-size: 1.25rem;
  font-weight: var(--g-fw-bold);
  line-height: 1.25;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.text-component--subheading {
  color: var(--g-text-color-heading);
  font-family: var(--g-ff-secondary);
  font-size: 4rem;
  font-weight: var(--g-fw-regular);
  line-height: 1;
  margin-bottom: 20px;
}

p {
  font-size: 1.25rem;
  font-weight: var(--g-fw-semibold);
  margin-bottom: 20px;
}

p strong {
  font-weight: var(--g-fw-bold);
}

.co-button {
  background-color: var(--g-bg-button);
  border: 2px solid var(--g-color-white);
  border-radius: 0;
  color: var(--g-bg-button-text);
  font-family: var(--g-ff-secondary);
  font-weight: 400;
  font-size: 24px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}
.co-button--secondary {
  background-color: var(--g-bg-button-secondary);
  border: 2px solid var(--g-color-white);
  color: var(--g-bg-button-text-secondary);
}
.co-button:link,
.co-button:visited,
.co-button--secondary:link,
.co-button--secondary:visited {
  text-decoration: none !important;
}
.co-button:hover,
.co-button:active,
.co-button:focus {
  background-color: var(--g-bg-button-hover);
  border: 2px solid var(--g-color-white);
  color: var(--g-bg-button-text-hover);
}
.co-button--secondary:hover,
.co-button--secondary:active,
.co-button--secondary:focus {
  background-color: var(--g-bg-button-secondary-hover);
  border: 2px solid var(--g-color-white);
  color: var(--g-bg-button-text-secondary-hover);
}

.call-to-action {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 30px;
}

.online-banking {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: var(--g-text-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  text-align: center;
  width: 40%;
}

.co-online_banking--heading {
  color: var(--g-text-color);
  font-family: var(--g-ff-secondary);
  font-size: 2rem;
  font-weight: var(--g-fw-regular);
  line-height: 1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.util-nav {
  font-family: var(--g-ff-secondary);
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.util-nav--link {
  font-size: 30px;
  line-height: 1.25;
  text-transform: uppercase;
}
.util-nav--link:link,
.util-nav--link:visited {
  color: var(--g-link-color);
  text-decoration: none;
}
.util-nav--link:hover,
.util-nav--link:active,
.util-nav--link:focus {
  text-decoration: underline;
}

.icon-svg {
  position: relative;
	display: inline-block;
	width: 24px;
	height: 24px;
	fill: currentColor;
	transform: translate(0, 0);
	transition: all .3s;
}

.routing-number {
  font-family: var(--g-ff-secondary);
  font-size: 30px;
  color: #2D8289;
  line-height: 1;
  text-transform: uppercase;
}

.copyright {
  font-family: var(--g-ff-primary);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
}

.social-list {
  align-items: center;
  display: flex;
  gap: 1.25rem;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.social-item a:link,
.social-item a:visited {
  color: #ffffff;
}
.social-item a:hover,
.social-item a:active,
.social-item a:focus {
  color: #0F72A5;
}

@media screen and (max-width: 1200px) {
  .ps-header .ps-inner {
    padding-inline: 1.25rem;
  }
  .co-online_banking--links {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
  .co-online_banking--links a {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 768px) {
  body {
    height: auto;
    overflow: auto;
    overflow-x: clip;
  }
  .ps-inner {
    flex-direction: column;
    align-items: center;
  }
  .ps-header--nav {
    flex-direction: column;
    margin: 0;
    padding-inline: 0;
  }
  .ps-header--utility .ps-inner {
    align-items: flex-end;
    padding: 0;
  }
  .ps-footer--nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .ps-footer--logos_wrap,
  .ps-footer--info {
    align-items: center;
    text-align: center;
  }
  .ps-main {
    padding: 4.5rem 1.5rem;
  }
  .text-component,
  .online-banking {
    width: 100%;
  }
  .online-banking {
    padding: 1.5rem;
  }
  .co-online_banking--links {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .copyright {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .text-component--heading {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
  .text-component--subheading {
    font-size: 3rem;
    margin-bottom: 1.25rem;
  }
  .call-to-action {
    flex-direction: column;
    gap: 1.25rem;
  }
  .call-to-action .co-button {
    padding: 10px 15px;
  }
  .util-nav {
    flex-direction: column;
    gap: 1rem;
  }
  .util-nav--link {
    display: none;
  }
}