@charset "UTF-8";
@import url("https://use.typekit.net/krg8qzp.css");
@font-face {
  font-family: "cheddarJack";
  src: url("../fonts/CheddarJack.ttf") format("truetype");
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-family: proxima-nova, sans-serif;
}

* {
  box-sizing: border-box;
}

::-moz-selection {
  background-color: rgb(231, 175, 25);
  color: rgb(255, 255, 255);
}

::selection {
  background-color: rgb(231, 175, 25);
  color: rgb(255, 255, 255);
}

a {
  transition: all 0.15s ease-in-out;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

.hide-mobile {
  display: block;
}
@media (max-width: 992px) {
  .hide-mobile {
    display: none;
  }
}

.show-mobile {
  display: none;
}
@media (max-width: 992px) {
  .show-mobile {
    display: block;
  }
}

.btn, main section.news .pagination a {
  transition: all 0.15s ease-in-out;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.22rem;
  background-color: rgb(231, 175, 25);
  padding: 0.5rem 0.75rem;
  color: rgb(255, 255, 255);
  border-radius: 2px;
  letter-spacing: 2px;
}
.btn:hover, main section.news .pagination a:hover {
  text-decoration: none;
  background-color: #ba8c13;
}
.btn.btn-alt, main section.news .pagination a {
  background-color: rgb(29, 44, 88);
}
.btn.btn-alt:hover, main section.news .pagination a:hover {
  background-color: #2a3f7e;
}
.btn.btn-large, main section.news .pagination a.btn-large {
  font-size: 2rem;
  padding: 1rem 1.5rem;
}
@media (max-width: 767px) {
  .btn.btn-large, main section.news .pagination a.btn-large {
    font-size: 1.5rem;
  }
}
.btn.btn-small, main section.news .pagination a {
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
}

header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: rgba(29, 44, 88, 0.65);
  padding: 1rem 0;
  position: absolute;
  width: 100%;
  z-index: 99;
}
@media (max-width: 992px) {
  header {
    justify-content: space-between;
  }
}
header .logo {
  margin-left: 2rem;
}
header .logo img {
  max-width: 150px;
}
header nav {
  margin-left: 1rem;
  margin-right: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header nav ul li {
  display: inline-block;
  margin: 0 1rem;
}
header nav ul li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.22rem;
  letter-spacing: 2px;
}
header nav ul li a:hover {
  color: rgb(231, 175, 25);
}
header nav ul li.active a {
  color: rgb(231, 175, 25);
  cursor: default;
}
header nav .btn, header nav main section.news .pagination a, main section.news .pagination header nav a {
  margin: 0 0 0 0.5rem;
}
@media (max-width: 992px) {
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 5rem 1rem;
    background-color: rgba(29, 44, 88, 0.7);
    max-height: 100%;
    transition: transform 0.5s ease-in-out;
    transform: translateY(-100%);
  }
  header nav.open {
    transform: translateY(0%);
  }
  header nav .close {
    width: 100%;
  }
  header nav .close #close {
    margin-left: 2rem;
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
    cursor: pointer;
    text-align: left;
  }
  header nav ul li {
    display: block;
    margin: 1rem;
    text-align: center;
  }
  header nav .btn, header nav main section.news .pagination a, main section.news .pagination header nav a {
    padding: 0.5rem 1.5rem;
    display: block;
    text-align: center;
    margin: 0.5rem 0;
  }
  header nav .social {
    margin-top: 2rem;
  }
  header nav .social a {
    margin: 0 0.5rem;
    color: rgb(255, 255, 255);
  }
  header nav .social a:hover {
    color: rgb(231, 175, 25);
  }
}
header .toggle {
  color: rgb(255, 255, 255);
  margin-right: 2rem;
  font-size: 1.22rem;
  cursor: pointer;
}

footer {
  background-color: rgb(29, 44, 88);
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 3rem 2rem;
  text-align: center;
}
footer > div {
  margin: 1rem;
  max-width: 1200px;
}
footer .social {
  font-size: 2rem;
  text-transform: uppercase;
  margin: 2rem 0rem;
}
footer .social .networks {
  display: inline;
}
footer .social .networks a {
  margin: 0 0.75rem;
  color: rgb(255, 255, 255);
}
@media (max-width: 992px) {
  footer .social {
    font-size: 1.25rem;
    text-align: center;
  }
  footer .social .networks {
    margin-top: 0.5rem;
    display: block;
    font-size: 2rem;
  }
}
footer .disclaimer {
  display: inline-block;
  border: 1px solid rgb(255, 255, 255);
  padding: 0.5rem 1rem;
  text-transform: uppercase;
}
footer .sub-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .sub-footer ul li {
  display: inline-block;
  margin: 0 0.5rem;
}
footer .sub-footer ul li a {
  color: rgb(255, 255, 255);
  font-size: 0.75rem;
}

form label {
  display: none !important;
}
form li {
  margin: 0 !important;
}
@media (max-width: 767px) {
  form li {
    padding: 0 !important;
  }
}
form .ginput_container {
  margin: 0 !important;
}
form .first_quarter,
form .third_quarter,
form .second_quarter,
form .fourth_quarter {
  display: inline-block;
  width: 25%;
}
form .first_quarter .ginput_container input, form .first_quarter .ginput_container select,
form .third_quarter .ginput_container input,
form .third_quarter .ginput_container select,
form .second_quarter .ginput_container input,
form .second_quarter .ginput_container select,
form .fourth_quarter .ginput_container input,
form .fourth_quarter .ginput_container select {
  width: 100%;
}
@media (max-width: 992px) {
  form .first_quarter,
  form .third_quarter,
  form .second_quarter,
  form .fourth_quarter {
    width: 50%;
  }
}
@media (max-width: 767px) {
  form .first_quarter,
  form .third_quarter,
  form .second_quarter,
  form .fourth_quarter {
    width: 100%;
  }
}
form .fourth_quarter {
  padding: 0 !important;
}
@media (max-width: 992px) {
  form .second_quarter {
    padding: 0 !important;
  }
}
form input, form select {
  font-size: 1rem !important;
  padding: 1rem !important;
  border: 0px;
  color: rgb(29, 44, 88);
  text-transform: uppercase;
  margin: 0.5rem 0;
  width: 100% !important;
}
form input::-moz-placeholder, form select::-moz-placeholder {
  color: rgb(29, 44, 88);
}
form input::placeholder, form select::placeholder {
  color: rgb(29, 44, 88);
}
form select {
  height: 58px;
  border-radius: 0px;
}
form .gform_footer {
  text-align: center;
  margin: 0.5rem 0 0 0;
  padding: 0;
}
form input[type=submit], form button {
  font-size: 1rem;
  padding: 1rem 1rem;
  border: 0px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  background-color: rgb(29, 44, 88);
  cursor: pointer;
  margin: 0 0.25rem;
  border-radius: 2px;
}
@media (max-width: 767px) {
  form input[type=submit], form button {
    width: 100%;
    margin: 0;
  }
}
form input[type=submit]:hover, form button:hover {
  background-color: #2a3f7e;
}

main.blocks {
  background-color: rgba(161, 115, 51, 0.5);
  padding-bottom: 2rem;
}
main.blocks > * {
  padding: 0 2rem;
  max-width: 1200px;
  margin: auto;
}
main.blocks > * + * {
  margin-top: 2rem;
}
main.blocks h2 {
  color: rgb(29, 44, 88);
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
main.blocks .header {
  position: relative;
  z-index: 1;
  max-width: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: bottom center;
}
main.blocks .header::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(161, 115, 51, 0.5);
  z-index: 0;
}
main.blocks .header * {
  z-index: 1;
}
main.blocks .header h1 {
  position: absolute;
  bottom: 0;
  padding: 5rem;
  color: rgb(255, 255, 255);
  width: 100%;
  text-align: center;
  margin: 0;
  font-size: 8rem;
  line-height: 6rem;
  font-family: "cheddarJack";
}
main.blocks .wp-block-group {
  max-width: 100%;
}

main {
  color: rgb(35, 31, 32);
}
main section.home__hero {
  background-size: cover;
  background-position: center center;
  padding: 5rem;
  padding-top: calc(5rem + 106px);
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: rgb(255, 255, 255);
  position: relative;
  z-index: 1;
}
main section.home__hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(161, 115, 51, 0.5);
  z-index: 0;
}
main section.home__hero * {
  z-index: 1;
}
main section.home__hero h1 {
  font-size: 8rem;
  margin: 0;
  line-height: 6rem;
  font-family: "cheddarJack";
}
main section.home__hero h2 {
  margin: 0;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  main section.home__hero {
    text-align: center;
    padding: 5rem 2rem;
    padding-top: calc(5rem + 106px);
  }
  main section.home__hero h1 {
    font-size: 5rem;
  }
  main section.home__hero h2 {
    font-size: 2rem;
  }
}
main section.home__signup {
  background-color: rgb(231, 175, 25);
  padding: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
main section.home__signup .gform_confirmation_message {
  color: rgb(255, 255, 255);
  font-size: 1.22rem;
}
main section.home__signup .gform_wrapper {
  width: 100%;
}
main section.home__signup form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  main section.home__signup form {
    flex-direction: column;
  }
}
main section.home__signup form .validation_error {
  flex-basis: 100%;
  margin-bottom: 1rem;
  color: rgb(255, 255, 255);
  font-size: 1.22rem;
}
@media (max-width: 992px) {
  main section.home__signup form .gform_body {
    width: 100%;
  }
}
main section.home__signup form ul {
  margin: 0;
  padding: 0;
  list-style: mone;
}
main section.home__signup form ul li {
  display: inline-block;
}
main section.home__signup form ul li label, main section.home__signup form ul li .gfield_description {
  display: none;
}
main section.home__signup form ul li input {
  font-size: 1rem;
  padding: 1rem 0.5rem;
  border: 0px;
  color: rgb(231, 175, 25);
  text-transform: uppercase;
  margin: 0 0.25rem;
}
main section.home__signup form ul li input::-moz-placeholder {
  color: rgb(231, 175, 25);
}
main section.home__signup form ul li input::placeholder {
  color: rgb(231, 175, 25);
}
main section.home__signup form ul li.gfield_error input[type=text] {
  border: 2px solid red;
  color: red;
}
@media (max-width: 992px) {
  main section.home__signup form ul li {
    display: block;
    width: 100%;
  }
  main section.home__signup form ul li input {
    width: 100%;
    margin-bottom: 1rem;
  }
}
main section.home__signup input[type=submit], main section.home__signup button {
  font-size: 1rem;
  padding: 1rem 0.5rem;
  border: 0px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  background-color: rgb(231, 175, 25);
  cursor: pointer;
  margin: 0 0.25rem;
  border-radius: 2px;
}
@media (max-width: 767px) {
  main section.home__signup input[type=submit], main section.home__signup button {
    width: 100%;
    padding: 0 1rem;
  }
}
main section.home__signup small {
  margin-top: 0.5rem;
  text-align: left;
  color: rgb(255, 255, 255);
}
main section.home__signup small a {
  color: rgb(255, 255, 255);
}
main section.home__quote {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
}
main section.home__quote .image {
  margin-right: -1rem;
}
main section.home__quote .image img {
  min-width: 200px;
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
}
main section.home__quote .quote {
  margin-left: -1rem;
  border: 4px solid rgb(231, 175, 25);
  padding: 2rem 3rem;
  font-size: 1.5rem;
  max-width: 500px;
  text-align: center;
  position: relative;
  font-weight: 700;
  color: rgb(29, 44, 88);
}
main section.home__quote .quote .signiture img {
  max-height: 200px;
  margin-bottom: -100px;
}
main section.home__quote .quote::before {
  content: "“";
  background-color: rgb(231, 175, 25);
  font-size: 4rem;
  font-weight: 700;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  color: rgb(255, 255, 255);
  position: absolute;
  top: 0;
  font-size: 4rem;
  left: 50%;
  width: 4rem;
  margin-top: -1.5rem;
  margin-left: -2rem;
}
@media (max-width: 767px) {
  main section.home__quote {
    flex-direction: column-reverse;
  }
  main section.home__quote .image {
    margin-right: 0;
    margin-top: -1rem;
    max-width: 80%;
  }
  main section.home__quote .image img {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
  main section.home__quote .quote {
    margin-left: 0;
    margin-bottom: -1rem;
    max-width: 100%;
    padding: 2rem;
  }
}
main section.home__donate {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(29, 44, 88);
  padding: 2rem;
  color: rgb(255, 255, 255);
  font-size: 1.22rem;
  text-transform: uppercase;
}
main section.home__donate ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
main section.home__donate ul li {
  display: inline-block;
  margin: 0 1.5rem;
}
@media (max-width: 767px) {
  main section.home__donate ul li {
    margin: 0.5rem 0rem;
    width: 100%;
  }
}
main section.home__donate ul li a {
  display: block;
  padding: 0.5rem;
  color: rgb(255, 255, 255);
  background-color: rgb(231, 175, 25);
  text-decoration: none;
  min-width: 75px;
  text-align: center;
  border-radius: 2px;
}
main section.home__social {
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 3rem;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 1;
}
main section.home__social::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(29, 44, 88, 0.8);
  z-index: 0;
}
main section.home__social * {
  z-index: 1;
}
main section.home__social .social_posts {
  max-width: 100%;
}
main section.home__social .social_posts .time {
  margin: 1rem;
  font-size: 0.75rem;
}
main section.home__social .social_posts .text {
  margin: 1rem;
  line-height: 2rem;
  font-size: 1rem;
}
main section.home__social .social_posts .text .user {
  font-size: 1.22rem;
}
main section.home__social .social_posts .text a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}
main section.home__social .social_posts .text a:hover {
  color: rgb(231, 175, 25);
}
main section.home__social .social_posts .slick-dots button::before {
  color: rgb(231, 175, 25);
  opacity: 0.5;
}
main section.home__social .social_posts .slick-dots button .slick-active::before {
  opacity: 1;
}
main section.home__social .social_posts .slick-dots .slick-active button::before {
  opacity: 1;
}
main section.home__areas {
  padding: 3rem 0;
}
main section.home__areas .area {
  display: flex;
  margin: 2rem 0;
}
main section.home__areas .area--right {
  flex-direction: row-reverse;
  margin-left: 12.5%;
}
main section.home__areas .area--left {
  margin-right: 12.5%;
}
main section.home__areas .area .area--title {
  flex-basis: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid rgb(29, 44, 88);
}
main section.home__areas .area .area--title a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: rgb(29, 44, 88);
  text-transform: uppercase;
  padding: 2rem;
}
main section.home__areas .area .area--title a.right {
  color: rgb(231, 175, 25);
}
main section.home__areas .area .area--title a span {
  font-family: "cheddarJack";
  font-size: 6rem;
  text-transform: none;
  margin-top: 0.25rem;
}
main section.home__areas .area .area--title.left {
  border-left: 0px;
  margin-right: 3rem;
}
main section.home__areas .area .area--title.right {
  border-right: 0px;
  border-color: rgb(231, 175, 25);
  color: rgb(231, 175, 25);
  margin-left: 3rem;
}
main section.home__areas .area .area--text {
  flex-basis: 60%;
  color: rgb(29, 44, 88);
  text-transform: uppercase;
  line-height: 2rem;
  display: flex;
  align-items: center;
}
main section.home__areas .area .area--text.meet {
  grid-area: text-1;
}
main section.home__areas .area .area--text.issues {
  grid-area: text-2;
}
main section.home__areas .area .area--text.action {
  grid-area: text-3;
}
main section.home__areas .area .area--text.left {
  text-align: left;
}
main section.home__areas .area .area--text.right {
  color: rgb(231, 175, 25);
  text-align: right;
}
@media (max-width: 992px) {
  main section.home__areas .area .area--title {
    flex-basis: 50%;
  }
  main section.home__areas .area .area--text {
    flex-basis: 50%;
  }
}
@media (max-width: 767px) {
  main section.home__areas .area {
    flex-direction: column;
    margin: 3rem;
  }
  main section.home__areas .area .area--title {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  main section.home__areas .area .area--title.left {
    border-left: 2px solid;
    margin-right: 0;
  }
  main section.home__areas .area .area--title.right {
    border-right: 2px solid;
    margin-left: 0;
  }
  main section.home__areas .area .area--text.left {
    text-align: center;
  }
  main section.home__areas .area .area--text.right {
    text-align: center;
  }
}
main section.home__news {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 2rem;
  padding: 2rem 4rem;
  background-color: rgba(161, 115, 51, 0.5);
}
@media (max-width: 992px) {
  main section.home__news {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  main section.home__news {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}
main section.home__news h2 {
  grid-column: 1/4;
  align-self: center;
  text-transform: uppercase;
  text-align: center;
  font-size: 3rem;
  margin: 0;
}
main section.home__news h2 a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}
main section.home__news h2 a:hover {
  color: rgb(231, 175, 25);
}
@media (max-width: 992px) {
  main section.home__news h2 {
    grid-column: 1/3;
  }
}
@media (max-width: 767px) {
  main section.home__news h2 {
    grid-column: 1/2;
  }
}
main section.home__news article a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  background-color: rgb(255, 255, 255);
  padding: 2rem;
  border-radius: calc(2px * 2);
  text-decoration: none;
  height: 100%;
  width: 100%;
}
main section.home__news article a img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.4;
}
main section.home__news article a .meta {
  border-radius: calc(2px * 2);
  display: inline-block;
  background-color: rgb(231, 175, 25);
  padding: 0.5rem;
  position: relative;
  z-index: 1;
  color: rgb(255, 255, 255);
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
}
main section.home__news article h3 {
  text-align: center;
  position: relative;
  z-index: 1;
  margin: 0 0 2rem 0;
  color: rgb(29, 44, 88);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
}
main section.home__news article hr {
  border: 2px solid rgb(29, 44, 88);
  width: 100%;
  margin: 2rem 0;
}
main section.news {
  background-size: cover;
  background-position: center center;
  padding: 5rem;
  padding-top: calc(5rem + 106px);
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: rgb(255, 255, 255);
  position: relative;
  z-index: 1;
}
main section.news::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(161, 115, 51, 0.5);
  z-index: 0;
}
main section.news * {
  z-index: 1;
}
@media (max-width: 767px) {
  main section.news {
    padding: 1rem;
  }
}
main section.news h1 {
  font-size: 3rem;
  margin: 0 0 4rem 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 992px) {
  main section.news h1 {
    margin: 0 0 2rem 0;
  }
}
main section.news .pagination {
  grid-column: span 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6rem;
}
main section.news .news__articles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 6rem;
}
main section.news .news__articles article {
  color: rgb(35, 31, 32);
  background-color: rgb(255, 255, 255);
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: calc(2px * 2);
}
main section.news .news__articles article:nth-child(odd) {
  margin-bottom: 6rem;
}
main section.news .news__articles article:nth-child(even) {
  margin-top: 6rem;
}
main section.news .news__articles article h2 {
  margin: 0;
  color: rgb(29, 44, 88);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
}
main section.news .news__articles article .meta {
  color: rgb(29, 44, 88);
}
main section.news .news__articles article hr {
  border: 2px solid rgb(29, 44, 88);
  width: 100%;
  margin: 2rem 0;
}
main section.news .news__articles article .content {
  line-height: 2.5;
  color: rgb(29, 44, 88);
  font-weight: 600;
  margin-bottom: 1rem;
}
main section.news .news__articles article .content p {
  margin: 0 0 1rem 0;
}
@media (max-width: 992px) {
  main section.news .news__articles {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  main section.news .news__articles article:nth-child(odd) {
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
  main section.news .news__articles article:nth-child(even) {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
main section.actions {
  background-size: cover;
  background-position: center center;
  padding: calc(6rem + 106px) 5rem;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: rgb(255, 255, 255);
  position: relative;
  z-index: 1;
}
main section.actions::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(161, 115, 51, 0.5);
  z-index: 0;
}
main section.actions * {
  z-index: 1;
}
main section.actions h1 {
  font-size: 3rem;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}
main section.actions form label {
  display: none !important;
}
main section.actions form li {
  margin: 0 !important;
}
@media (max-width: 767px) {
  main section.actions form li {
    padding: 0 !important;
  }
}
main section.actions form .ginput_container {
  margin: 0 !important;
}
main section.actions form .first_quarter,
main section.actions form .third_quarter,
main section.actions form .second_quarter,
main section.actions form .fourth_quarter {
  display: inline-block;
  width: 25%;
}
main section.actions form .first_quarter .ginput_container input, main section.actions form .first_quarter .ginput_container select,
main section.actions form .third_quarter .ginput_container input,
main section.actions form .third_quarter .ginput_container select,
main section.actions form .second_quarter .ginput_container input,
main section.actions form .second_quarter .ginput_container select,
main section.actions form .fourth_quarter .ginput_container input,
main section.actions form .fourth_quarter .ginput_container select {
  width: 100%;
}
@media (max-width: 992px) {
  main section.actions form .first_quarter,
  main section.actions form .third_quarter,
  main section.actions form .second_quarter,
  main section.actions form .fourth_quarter {
    width: 50%;
  }
}
@media (max-width: 767px) {
  main section.actions form .first_quarter,
  main section.actions form .third_quarter,
  main section.actions form .second_quarter,
  main section.actions form .fourth_quarter {
    width: 100%;
  }
}
main section.actions form .fourth_quarter {
  padding: 0 !important;
}
@media (max-width: 992px) {
  main section.actions form .second_quarter {
    padding: 0 !important;
  }
}
main section.actions form input, main section.actions form select {
  font-size: 1rem !important;
  padding: 1rem !important;
  border: 0px;
  color: rgb(29, 44, 88);
  text-transform: uppercase;
  margin: 0.5rem 0;
}
main section.actions form input::-moz-placeholder, main section.actions form select::-moz-placeholder {
  color: rgb(29, 44, 88);
}
main section.actions form input::placeholder, main section.actions form select::placeholder {
  color: rgb(29, 44, 88);
}
main section.actions form select {
  height: 58px;
  border-radius: 0px;
}
main section.actions form .gform_footer {
  text-align: center;
  margin: 0.5rem 0 0 0;
  padding: 0;
}
main section.actions form input[type=submit], main section.actions form button {
  font-size: 1rem;
  padding: 1rem 1rem;
  border: 0px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  background-color: rgb(29, 44, 88);
  cursor: pointer;
  margin: 0 0.25rem;
  border-radius: 2px;
}
@media (max-width: 767px) {
  main section.actions form input[type=submit], main section.actions form button {
    width: 100%;
    margin: 0;
  }
}
main section.actions form input[type=submit]:hover, main section.actions form button:hover {
  background-color: #2a3f7e;
}
@media (max-width: 992px) {
  main section.actions h1 {
    margin: 0 0 2rem 0;
  }
}
main.post article, main.issues article {
  padding: 5rem;
  padding-top: calc(5rem + 106px);
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: rgb(35, 31, 32);
}
@media (max-width: 767px) {
  main.post article, main.issues article {
    padding: 2rem 1rem;
    padding-top: calc(2rem + 106px);
  }
}
main.post article h1, main.issues article h1 {
  font-size: 3rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  color: rgb(29, 44, 88);
  margin: 0;
}
@media (max-width: 767px) {
  main.post article h1, main.issues article h1 {
    font-size: 1.75rem;
  }
}
main.post article hr, main.issues article hr {
  border: 2px solid rgb(29, 44, 88);
  width: 75%;
  margin: 2rem 0;
}
main.post article .content, main.issues article .content {
  font-weight: 600;
  font-size: 1.22rem;
  line-height: 2;
}
main.post article .content p, main.issues article .content p {
  margin: 0 0 1rem 0;
}
main.post article .content img, main.issues article .content img {
  max-width: 80%;
  height: auto;
  margin: auto;
  display: block;
}
main.post .header-image, main.issues .header-image {
  position: relative;
  z-index: 1;
}
main.post .header-image::before, main.issues .header-image::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(161, 115, 51, 0.2);
  z-index: 0;
}
main.post .header-image *, main.issues .header-image * {
  z-index: 1;
}
main.post .header-image img, main.issues .header-image img {
  width: 100%;
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  display: block;
}
@media (min-width: 1020px) {
  main.post .header-image img, main.issues .header-image img {
    -o-object-position: center 25%;
       object-position: center 25%;
  }
}
main.post .header-image + article, main.issues .header-image + article {
  padding-top: 5rem;
}
main.post table, main.issues table {
  overflow-x: auto;
  display: block;
}
@media (max-width: 767px) {
  main.post table, main.issues table {
    font-size: 60%;
  }
}
main.issues .content {
  width: 100%;
}
main.issues .content .issue {
  margin-bottom: 2rem;
  width: 100%;
}
main.issues .content .issue .title {
  position: relative;
  z-index: 1;
  height: 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
main.issues .content .issue .title::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(161, 115, 51, 0.2);
  z-index: 0;
}
main.issues .content .issue .title * {
  z-index: 1;
}
main.issues .content .issue .title img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  z-index: -1;
}
main.issues .content .issue .title h2 {
  position: relative;
  display: inline-block;
  color: rgb(255, 255, 255);
  margin: 0;
  padding: 0 1rem;
}
main.issues .content .issue .title h2 .fas {
  transition: all 500ms ease-in-out;
}
main.issues .content .issue .title h2::after {
  background-color: rgba(35, 31, 32, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
}
main.issues .content .issue .title.open .fas {
  transform: rotate(180deg);
}
main.issues .content .issue .text {
  display: none;
}/*# sourceMappingURL=theme.css.map */