/**
 * Global Styles
 */
/**
 * Setup Default Breakpoints
 */
/**
 * Set up Default Styles
 */
*,
*::before,
*::after {
  font-family: "Barlow", sans-serif;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

img {
  height: 100%;
}

/**
 * Fonts
 */
a {
  text-decoration: none;
}

h1 {
  font-size: 3rem;
  font-weight: 400;
}

h2 {
  font-size: 2rem;
  font-weight: 400;
}

p {
  font-size: 1.125rem;
  margin: 10px 0;
  font-weight: 400;
}

/** 
 * Set up Breakpoints
 */
header,
section,
footer {
  width: 100%;
  margin: 0 auto;
}

footer {
  background-color: #000;
  color: white;
  margin-top: auto;
}

.container {
  max-width: 1200px;
  padding: 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .container {
    padding: 30px 15px;
  }
}

/**
 * Header
 */
header {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: calc(50% - 600px);
  max-width: 1200px;
  padding: 45px 30px;
  z-index: 10;
}
header .logo {
  z-index: 1000;
}
@media only screen and (max-width: 1200px) {
  header {
    left: auto;
  }
}
@media only screen and (max-width: 768px) {
  header {
    padding: 15px 15px;
  }
}
header nav {
  display: flex;
  gap: 60px;
}
@media only screen and (max-width: 768px) {
  header nav {
    display: none;
  }
}
header nav .home {
  display: none;
}
@media only screen and (max-width: 768px) {
  header nav .home {
    display: block;
  }
}
header nav a {
  margin: auto 0;
  color: white;
}
header nav a:hover {
  color: #DEDEDE;
}
@media only screen and (max-width: 768px) {
  header nav.active {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    padding: 15px;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #1B3470;
    width: 100%;
    height: 100%;
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 768px) {
  header nav.active a {
    margin: 0;
  }
}
@media only screen and (max-width: 768px) {
  header nav.active a:hover {
    color: white;
  }
}

.home header nav {
  display: none;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .burger {
    display: flex;
  }
}
.burger .line {
  background-color: white;
  height: 2px;
  width: 35px;
  border-radius: 10px;
  transition-duration: 100ms;
}
.burger.active .line:first-child {
  rotate: 45deg;
  translate: 0px 11px;
}
.burger.active .line:nth-child(2) {
  opacity: 0;
}
.burger.active .line:last-child {
  rotate: -45deg;
  translate: 0px -11px;
}

/** 
 * Homepage
 */
.home-hero {
  display: flex;
  background-color: #226757;
  color: white;
  min-height: 100vh;
}
.home-hero h1 {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .home-hero {
    flex-direction: column;
  }
}
.home-hero__description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  background-color: #226757;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .home-hero__description {
    width: 100%;
  }
}
.home-hero__description .content {
  max-width: 600px;
  padding: 150px 30px 30px 30px;
}
@media only screen and (max-width: 768px) {
  .home-hero__description .content {
    max-width: 100%;
    padding: 150px 15px 15px 15px;
  }
}
.home-hero__links {
  display: flex;
  align-items: center;
  width: 50%;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .home-hero__links {
    flex-direction: column;
    gap: 30px;
    background-color: transparent;
    width: 100%;
    padding: 0 15px 15px 15px;
    z-index: unset;
  }
}
.home-hero__links a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
  background-color: #1B3470;
  padding: 30px;
  width: 50%;
  height: 100%;
  color: white;
}
.home-hero__links a:first-child {
  max-width: 300px;
}
@media only screen and (max-width: 768px) {
  .home-hero__links a:first-child {
    max-width: 100%;
  }
}
.home-hero__links a:last-child {
  flex-grow: 1;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .home-hero__links a:last-child {
    align-items: center;
  }
}
.home-hero__links a .links-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
}
@media only screen and (max-width: 768px) {
  .home-hero__links a {
    align-items: center;
    background-color: white;
    width: 100%;
    margin: 0 30px;
  }
}
@media only screen and (max-width: 768px) {
  .home-hero__links a h2 {
    color: #226757;
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .home-hero__links a p {
    color: #545454;
    text-align: center;
  }
}
.home-hero__links a svg {
  transition-duration: 250ms;
}
.home-hero__links a svg .folder-ani {
  translate: 0 20px;
  transition-duration: 250ms;
}
@media only screen and (max-width: 768px) {
  .home-hero__links a svg .folder-ani {
    translate: 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .home-hero__links a svg#folder-svg rect, .home-hero__links a svg#folder-svg path {
    fill: #1B3470;
  }
}
@media only screen and (max-width: 768px) {
  .home-hero__links a svg#leaf-svg rect, .home-hero__links a svg#leaf-svg path {
    stroke: #1B3470;
  }
}
.home-hero__links a:hover {
  background-color: white;
}
.home-hero__links a:hover h2 {
  color: #226757;
}
.home-hero__links a:hover p {
  color: #545454;
}
.home-hero__links a:hover svg#folder-svg rect, .home-hero__links a:hover svg#folder-svg path {
  fill: #1B3470;
}
.home-hero__links a:hover svg#folder-svg .folder-ani {
  translate: 0 0;
}
.home-hero__links a:hover svg#leaf-svg {
  rotate: 235deg;
}
@media only screen and (max-width: 768px) {
  .home-hero__links a:hover svg#leaf-svg {
    rotate: 0deg;
  }
}
.home-hero__links a:hover svg#leaf-svg rect, .home-hero__links a:hover svg#leaf-svg path {
  stroke: #1B3470;
}

/**
 * Document Pages
 */
.documents-hero {
  background-color: #226757;
  color: white;
  padding: 150px 30px 20px 30px;
}
@media only screen and (max-width: 768px) {
  .documents-hero {
    padding: 100px 0 20px 0;
  }
}
@media only screen and (max-width: 768px) {
  .documents-hero .container {
    padding: 15px 15px;
  }
}

.tabs {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid #545454;
  padding-top: 15px;
  padding-bottom: 15px;
  overflow-y: auto;
}
@media only screen and (max-width: 1200px) {
  .tabs {
    margin-left: 10px;
  }
}
.tabs button {
  background-color: transparent;
  color: black;
  font-size: 1.125rem;
  font-weight: 500;
  border: none;
  padding: 1px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  white-space: nowrap;
  cursor: pointer;
}
.tabs button[aria-pressed=true] {
  background-color: #1B3470;
  color: white;
}
.tabs button[aria-pressed=false]:hover {
  color: #1B3470;
}

@media only screen and (max-width: 1200px) {
  .container.tabs {
    padding-left: 5px;
  }
}

.documents-section h2,
.newspaper-section h2 {
  color: #226757;
  margin: 30px 0;
}
.documents-section a,
.newspaper-section a {
  color: black;
  text-decoration: none;
  font-size: 1.563rem;
}

.document {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 10px 0;
}
.document svg .file-svg,
.document svg .folder-fill,
.document svg .folder-outline,
.document svg .folder-line {
  transition: 250ms;
}
.document svg .folder-line {
  transform-origin: 50% 50%;
  scale: 0;
}
@media only screen and (max-width: 768px) {
  .document svg .folder-line {
    scale: 1;
  }
}
@media only screen and (max-width: 768px) {
  .document svg .folder-fill {
    fill: #226757;
  }
}
@media only screen and (max-width: 768px) {
  .document svg .folder-outline {
    fill: #fff;
  }
}
@media only screen and (max-width: 768px) {
  .document svg {
    height: 100px;
    width: 75px;
  }
}
.document:hover .folder-fill {
  fill: #226757;
}
.document:hover .folder-outline {
  fill: #fff;
}
.document:hover .folder-line {
  scale: 1;
}
@media only screen and (max-width: 768px) {
  .document {
    gap: 15px;
  }
}

/**
 * Footer
 */
footer {
  padding-top: 30px;
  padding-bottom: 30px;
}
footer .container {
  display: flex;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  footer .container {
    flex-direction: column;
  }
}
footer .content {
  width: 75%;
}
@media only screen and (max-width: 768px) {
  footer .content {
    width: 100%;
  }
}
footer a {
  width: 25%;
}
@media only screen and (max-width: 768px) {
  footer a {
    width: 200px;
  }
}
footer p {
  font: 1rem;
}
footer svg {
  width: 100%;
  height: 100%;
}

.copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  padding: 15px;
  padding-bottom: 30px;
}
.copy a {
  color: white;
  text-decoration: none;
}
.copy a:hover {
  color: #226757;
}

/**
 * Coming Soon & not found
 */
.coming-soon, .not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #226757;
  color: #fff;
  height: 100vh;
  min-height: 400px;
}
.coming-soon .container, .not-found .container {
  text-align: center;
}
.coming-soon h1, .not-found h1 {
  margin-bottom: 30px;
}
.coming-soon a, .not-found a {
  color: white;
  background-color: #1B3470;
  padding: 10px 20px;
  transition-duration: 200ms;
  opacity: 0.9;
}
.coming-soon a:hover, .not-found a:hover {
  opacity: 1;
}

.page-template-page-documents .newspaper-section {
  background-color: #226757;
}
.page-template-page-documents .newspaper-section h2, .page-template-page-documents .newspaper-section a .file-name {
  color: white !important;
}

.newspaper-section h2 {
  font-size: 3rem;
}/*# sourceMappingURL=main.css.map */