@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

header,
nav,
main,
article,
section,
footer {
  display: block;
}

.contact-methods .form-contact form .form-modal-container, #photo-gallery .gallery-modal-container {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.contact-methods .form-contact form .form-modal-container .form-modal-content, #photo-gallery .gallery-modal-container .gallery-modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: openModal;
  -moz-animation-name: openModal;
  -ms-animation-name: openModal;
  animation-name: openModal;
  -webkit-animation-duration: 0.4s;
  -moz-animation-duration: 0.4s;
  -ms-animation-duration: 0.4s;
  animation-duration: 0.4s;
}

@keyframes openModal {
  from {
    scale: 0;
    opacity: 0;
  }
  to {
    scale: 1;
    opacity: 1;
  }
}
.contact-methods .form-contact form #form-submit-button, #home-content #featured-articles .continue-reading-button, #homepage-button, #scroll-to-top-button {
  border: none;
  color: #ffd700;
  cursor: pointer;
  font-weight: bold;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}

@font-face {
  font-family: "dejavu_sansbold";
  src: url("../fonts/DejaVuSans-Bold-webfont.eot");
  src: url("../fonts/DejaVuSans-Bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/DejaVuSans-Bold-webfont.woff") format("woff"), url("../fonts/DejaVuSans-Bold-webfont.ttf") format("truetype"), url("../fonts/DejaVuSans-Bold-webfont.svg#DejaVuSans-Bold-webfont") format("svg");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "dejavu_sanscondensed";
  src: url("../fonts/DejaVuSansCondensed-webfont.eot");
  src: url("../fonts/DejaVuSansCondensed-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/DejaVuSansCondensed-webfont.woff") format("woff"), url("../fonts/DejaVuSansCondensed-webfont.ttf") format("truetype"), url("../fonts/DejaVuSansCondensed-webfont.svg#DejaVuSansCondensed-webfont") format("svg");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: Rockwell, "Courier Bold", Courier, Georgia, Times, "Times New Roman", serif;
  line-height: 1.4;
  background: #2d2b2b;
  color: #ffffff;
}

h2, h1 {
  font-family: "dejavu_sansbold", Verdana, Helvetica, "Arial Black", sans-serif;
  font-weight: bold;
  color: #df3529;
}

h1 {
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 20px;
  font-size: 3em;
}
@media (max-width: 935px) {
  h1 {
    font-size: 1.8em;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.3em;
  }
}

h2 {
  font-size: 1em;
  text-align: left;
}

p {
  padding-bottom: 20px;
}

#bulletmark {
  padding-bottom: 20px;
  list-style-type: disc;
  list-style-position: outside;
}
#bulletmark li {
  color: #df3529;
  padding-bottom: 10px;
}
#bulletmark li span {
  color: #ffffff;
}

a {
  color: #ffd700;
  font-weight: bold;
  text-decoration: none;
}
a:hover {
  color: #fa0000;
}

#homepage-button {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  display: none;
  position: fixed;
  bottom: 8px;
  left: 8px;
  outline: none;
  background: #ff4500;
  padding: 6px 8px;
  font-family: "dejavu_sanscondensed", Verdana, Helvetica, Arial, sans-serif;
  font-size: 1em;
  opacity: 0.5;
}
#homepage-button:hover {
  opacity: 1;
}

#scroll-to-top-button {
  display: none;
  position: fixed;
  bottom: 8px;
  right: 8px;
  outline: none;
  background: #ff4500;
  padding: 6px 10px;
  font-size: 1.2em;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  opacity: 0.5;
}
#scroll-to-top-button:hover {
  opacity: 1;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

hr {
  border-color: #df3529;
  margin-bottom: 20px;
}

header {
  background: #d4d5d9;
}
header img {
  width: 100%;
  height: auto;
}

nav {
  height: 60px;
  width: 100%;
  background: #d4d5d9;
  background: -webkit-linear-gradient(#d4d5d9, #acacac);
  background: -moz-linear-gradient(#d4d5d9, #acacac);
  background: -ms-linear-gradient(#d4d5d9, #acacac);
  background: linear-gradient(#d4d5d9, #acacac);
  position: relative;
  margin-top: -8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 990px) {
  nav {
    justify-content: flex-end;
  }
}
nav #menu-btn {
  display: none;
}
nav #menu-btn:checked ~ .menu {
  display: initial;
}
nav #menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}
nav #menu-btn:checked ~ .menu-icon .navicon:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
nav #menu-btn:checked ~ .menu-icon .navicon:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
nav #menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before, nav #menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}
nav .menu-icon {
  cursor: pointer;
  margin: 20px;
  padding: 10px 5px;
  position: relative;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1em;
  font-weight: bold;
  color: #fa0000;
  font-family: Helvetica, Arial, sans-serif;
}
@media (min-width: 990px) {
  nav .menu-icon {
    display: none;
  }
}
nav .menu-icon .navicon:after, nav .menu-icon .navicon:before {
  background: #fa0000;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  width: 100%;
}
nav .menu-icon .navicon {
  background-color: #fa0000;
  display: block;
  height: 3px;
  position: relative;
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  -ms-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  width: 20px;
}
nav .menu-icon .navicon:before {
  top: 6px;
}
nav .menu-icon .navicon:after {
  top: -6px;
}
nav .menu {
  list-style: none;
}
@media (max-width: 990px) {
  nav .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #d4d5d9;
    background: -webkit-linear-gradient(#d4d5d9, #acacac);
    background: -moz-linear-gradient(#d4d5d9, #acacac);
    background: -ms-linear-gradient(#d4d5d9, #acacac);
    background: linear-gradient(#d4d5d9, #acacac);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 100;
  }
}
nav .menu .nav-item {
  display: inline-block;
  margin-right: -4px;
}
@media (max-width: 990px) {
  nav .menu .nav-item {
    width: 100%;
  }
}
nav .menu .nav-item a {
  color: #fa0000;
  background: none;
  display: inline;
  width: 100px;
  font-size: 1em;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  padding: 1.3em 0.7em;
  white-space: nowrap;
}
@media (max-width: 990px) {
  nav .menu .nav-item a {
    display: block;
    width: 100%;
    text-align: left;
    line-height: 1;
    padding: 1.3em 3em;
  }
}
nav .menu .nav-item a:hover {
  background: #8b0000;
  background: -webkit-linear-gradient(#cc0000, #8b0000);
  background: -moz-linear-gradient(#cc0000, #8b0000);
  background: -ms-linear-gradient(#cc0000, #8b0000);
  background: linear-gradient(#cc0000, #8b0000);
  color: #ffffff;
}

#active-nav .active-link {
  background: #fa0000;
  background: linear-gradient(#ef8861, #fa0000);
  color: #ffd700;
}

#gallery-content, #page-content {
  margin: 0 auto;
  padding: 50px 0;
}

#page-content {
  width: 55%;
  min-height: 55vh;
  font-size: 1.1em;
}

@media only screen and (max-width: 425px) {
  #page-content {
    width: 75%;
  }
}
#gallery-content {
  width: 70%;
}

footer {
  background: #d4d5d9;
  padding: 35px 5em;
  margin-top: 10px;
}
@media (max-width: 330px) {
  footer {
    padding: 35px 4em 10px;
  }
}
footer .ft-container {
  display: flex;
  justify-content: space-evenly;
  gap: 35px;
  max-width: 2000px;
  margin: 0 auto;
  padding: 0 50px;
}
@media (max-width: 785px) {
  footer .ft-container {
    padding: 0;
  }
}
@media (max-width: 685px) {
  footer .ft-container {
    flex-direction: column;
  }
}
footer .ft-container .ft-contact h3, footer .ft-container .ft-links h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-family: "dejavu_sansbold", Verdana, Helvetica, "Arial Black", sans-serif;
  color: #fa0000;
}
footer .ft-container .ft-contact, footer .ft-container .ft-links ul li a {
  font-family: "dejavu_sanscondensed", Verdana, Helvetica, Arial, sans-serif;
  color: #fa0000;
  line-height: 1.6em;
}
footer .ft-container .ft-links ul {
  list-style-type: none;
  padding-left: 0;
}
footer .ft-container .ft-links ul li a:hover {
  color: #df3529;
}
footer .ft-container .ft-contact address {
  font-style: normal;
  font-weight: bold;
}
footer .copyright {
  text-align: center;
  padding-top: 2rem;
  font-family: "dejavu_sanscondensed", Verdana, Helvetica, Arial, sans-serif;
  color: #fa0000;
  font-size: 0.9em;
  font-weight: bold;
}

#home-content {
  display: flex;
  gap: 45px;
  width: 95%;
  font-size: 1.1em;
  margin: 0 auto;
  padding: 40px 0;
}
@media (max-width: 990px) {
  #home-content {
    flex-direction: column;
    width: 80%;
  }
}
#home-content aside {
  width: 60%;
}
@media (max-width: 990px) {
  #home-content aside {
    padding-top: 0;
    width: 100%;
    order: 2;
  }
}
#home-content aside #links-portrait-container {
  display: flex;
  width: 100%;
}
@media (max-width: 990px) {
  #home-content aside #links-portrait-container {
    justify-content: center;
  }
}
#home-content aside #links-portrait-container #resource-wrapper {
  text-align: center;
}
@media (max-width: 990px) {
  #home-content aside #links-portrait-container #resource-wrapper {
    display: none;
  }
}
#home-content aside #links-portrait-container #resource-wrapper #resource-txt {
  font-family: "dejavu_sanscondensed", Verdana, Helvetica, Arial, sans-serif;
  font-size: 1em;
}
#home-content aside #links-portrait-container #resource-wrapper #resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}
#home-content aside #links-portrait-container #resource-wrapper #resource-links .source {
  display: block;
  position: relative;
  width: 45%;
  border: 5px double #ffffff;
}
#home-content aside #links-portrait-container #resource-wrapper #resource-links .source img {
  width: 100%;
}
#home-content aside #links-portrait-container #resource-wrapper #resource-links .source .source-text {
  position: absolute;
  z-index: 99;
  top: 83%;
  display: flex;
  justify-content: center;
  width: 100%;
  color: #df3529;
  font-size: 1em;
  font-weight: bold;
  font-family: "dejavu_sanscondensed", Verdana, Helvetica, Arial, sans-serif;
}
@media (max-width: 1000px) {
  #home-content aside #links-portrait-container #resource-wrapper #resource-links .source .source-text {
    font-size: 0.8em;
  }
}
@media (max-width: 850px) {
  #home-content aside #links-portrait-container #resource-wrapper #resource-links .source .source-text {
    top: 80%;
  }
}
@media (max-width: 700px) {
  #home-content aside #links-portrait-container #resource-wrapper #resource-links .source .source-text {
    justify-content: flex-start;
    top: 30%;
    left: 30%;
  }
}
@media (max-width: 580px) {
  #home-content aside #links-portrait-container #resource-wrapper #resource-links .source .source-text {
    width: auto;
    left: 20%;
  }
}
@media (max-width: 425px) {
  #home-content aside #links-portrait-container #resource-wrapper #resource-links .source .source-text {
    top: 25%;
  }
}
#home-content aside #links-portrait-container #resource-wrapper #resource-links .source .hovered-icon {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 90;
}
#home-content aside #links-portrait-container #resource-wrapper #resource-links .source:hover {
  border: 5px double #df3529;
}
#home-content aside #links-portrait-container #resource-wrapper #resource-links .source:hover .hovered-icon {
  display: block;
}
#home-content aside #links-portrait-container #resource-wrapper #resource-links .source:hover .source-text {
  color: #ffffff;
}
#home-content aside #links-portrait-container #portrait-image {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 990px) {
  #home-content aside #links-portrait-container #portrait-image {
    justify-content: center;
  }
}
#home-content aside #links-portrait-container #portrait-image img {
  width: 90%;
  height: 100%;
}
@media (max-width: 990px) {
  #home-content aside #links-portrait-container #portrait-image img {
    width: 60%;
  }
}
@media (max-width: 430px) {
  #home-content aside #links-portrait-container #portrait-image img {
    width: 100%;
  }
}
@media (max-width: 425px) {
  #home-content aside #links-portrait-container #portrait-image img {
    width: 100%;
  }
}
#home-content aside #slideshow-container {
  width: 100%;
}
#home-content aside #slideshow-container #slides {
  max-width: 1000px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1420px) {
  #home-content aside #slideshow-container #slides {
    max-width: 1070px;
  }
}
#home-content aside #slideshow-container #slides .slide {
  display: none;
}
#home-content aside #slideshow-container #slides .slide img {
  vertical-align: middle;
  width: 100%;
  padding: 10px;
  background: #ffffff;
}
#home-content aside #slideshow-container #slides .fade {
  -webkit-animation-name: fade;
  -moz-animation-name: fade;
  -ms-animation-name: fade;
  animation-name: fade;
  -webkit-animation-duration: 5s;
  -moz-animation-duration: 5s;
  -ms-animation-duration: 5s;
  animation-duration: 5s;
}
@keyframes fade {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
#home-content aside #slideshow-container #slides #next-slide-btn, #home-content aside #slideshow-container #slides #prev-slide-btn {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -28px;
  padding: 2px 6px;
  background: #cc0000;
  color: #ffffff;
  font-weight: bold;
  font-size: 30px;
  -webkit-transition: transform 0.5s ease, background-color 0.6s ease;
  -moz-transition: transform 0.5s ease, background-color 0.6s ease;
  -ms-transition: transform 0.5s ease, background-color 0.6s ease;
  transition: transform 0.5s ease, background-color 0.6s ease;
  user-select: none;
}
#home-content aside #slideshow-container #slides #next-slide-btn:hover, #home-content aside #slideshow-container #slides #prev-slide-btn:hover {
  background-color: #fa0000;
}
#home-content aside #slideshow-container #slides #prev-slide-btn {
  left: 0;
  -webkit-transform: translateX(-30px);
  -moz-transform: translateX(-30px);
  -ms-transform: translateX(-30px);
  transform: translateX(-30px);
  -webkit-border-radius: 0 6px 6px 0;
  -moz-border-radius: 0 6px 6px 0;
  -ms-border-radius: 0 6px 6px 0;
  border-radius: 0 6px 6px 0;
}
#home-content aside #slideshow-container #slides #next-slide-btn {
  right: 0;
  -webkit-transform: translateX(30px);
  -moz-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-border-radius: 6px 0 0 6px;
  -moz-border-radius: 6px 0 0 6px;
  -ms-border-radius: 6px 0 0 6px;
  border-radius: 6px 0 0 6px;
}
#home-content aside #slideshow-container #indicators {
  max-width: 1000px;
  text-align: center;
  margin-top: 5px;
}
@media (max-width: 1420px) {
  #home-content aside #slideshow-container #indicators {
    max-width: 1070px;
  }
}
#home-content aside #slideshow-container #indicators .indicator {
  width: 15px;
  height: 15px;
  margin: 0 2px;
  border: 2px solid #d4d5d9;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: background-color 0.6s ease;
  -moz-transition: background-color 0.6s ease;
  -ms-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
#home-content aside #slideshow-container #indicators .indicator:hover {
  background: #fa0000;
}
#home-content aside #slideshow-container .current {
  background: #cc0000;
}
#home-content .resources-carousel {
  display: none;
}
@media (max-width: 990px) {
  #home-content .resources-carousel {
    display: block;
    position: relative;
    width: 100%;
    max-width: 800px;
    text-align: center;
  }
}
#home-content .resources-carousel #mobile-resource-txt {
  font-family: "dejavu_sanscondensed", Verdana, Helvetica, Arial, sans-serif;
  font-size: 1em;
}
#home-content .resources-carousel .next-btn, #home-content .resources-carousel .prev-btn {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  font-weight: bold;
  background: #cc0000;
  color: #ffffff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 99;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: transform 0.5s ease, background-color 0.6s ease;
  -moz-transition: transform 0.5s ease, background-color 0.6s ease;
  -ms-transition: transform 0.5s ease, background-color 0.6s ease;
  transition: transform 0.5s ease, background-color 0.6s ease;
  user-select: none;
}
#home-content .resources-carousel .next-btn:hover, #home-content .resources-carousel .prev-btn:hover {
  background-color: #fa0000;
}
#home-content .resources-carousel .prev-btn {
  left: 10px;
}
#home-content .resources-carousel .next-btn {
  right: 10px;
}
#home-content .resources-carousel .carousel-container {
  display: flex;
  width: 100%;
  overflow: hidden;
}
#home-content .resources-carousel .carousel-container .links-wrapper {
  display: flex;
  width: 100%;
  -webkit-transition: transform 0.6s ease-in-out;
  -moz-transition: transform 0.6s ease-in-out;
  -ms-transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
}
#home-content .resources-carousel .carousel-container .links-wrapper .mobile-resource-link {
  min-width: 100%;
  display: flex;
  justify-content: center;
  background: #2d2b2b;
}
#home-content .resources-carousel .carousel-container .links-wrapper .mobile-resource-link .mobile-source {
  display: block;
  position: relative;
  border: 5px double #ffffff;
  height: fit-content;
  margin-top: 5px;
}
#home-content .resources-carousel .carousel-container .links-wrapper .mobile-resource-link .mobile-source .mobile-icon {
  width: 90px;
}
#home-content .resources-carousel .carousel-container .links-wrapper .mobile-resource-link .mobile-source .mobile-hovered-icon {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 90;
  width: 90px;
}
#home-content .resources-carousel .carousel-container .links-wrapper .mobile-resource-link .mobile-source .mobile-source-text {
  position: absolute;
  z-index: 99;
  top: 80%;
  display: flex;
  justify-content: center;
  width: 100%;
  color: #df3529;
  font-size: 0.8em;
  font-weight: bold;
  font-family: "dejavu_sanscondensed", Verdana, Helvetica, Arial, sans-serif;
}
#home-content .resources-carousel .carousel-container .links-wrapper .mobile-resource-link .mobile-source:hover {
  border: 5px double #df3529;
}
#home-content .resources-carousel .carousel-container .links-wrapper .mobile-resource-link .mobile-source:hover .mobile-hovered-icon {
  display: block;
}
#home-content .resources-carousel .carousel-container .links-wrapper .mobile-resource-link .mobile-source:hover .mobile-source-text {
  color: #ffffff;
}
#home-content .resources-carousel .dots {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}
#home-content .resources-carousel .dots .dot {
  width: 10px;
  height: 10px;
  background: #d4d5d9;
  cursor: pointer;
  -webkit-transition: background-color 0.6s ease;
  -moz-transition: background-color 0.6s ease;
  -ms-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
#home-content .resources-carousel .dots .dot:hover {
  background: #fa0000;
}
#home-content .resources-carousel .dots .visible {
  background: #cc0000;
}
#home-content #featured-articles {
  width: 45%;
  margin-right: 3%;
}
#home-content #featured-articles article {
  background: #ffffff;
  color: #2d2b2b;
  padding: 20px;
}
#home-content #featured-articles article .article-heading {
  text-align: left;
  font-size: 1.8em;
}
@media (max-width: 480px) {
  #home-content #featured-articles article .article-heading {
    font-size: 1.3em;
  }
}
#home-content #featured-articles article .article-subheading {
  font-size: 1.2em;
  padding-bottom: 20px;
}
#home-content #featured-articles article .article-list {
  margin-left: 20px;
  padding-bottom: 20px;
  list-style-type: disc;
  list-style-position: outside;
}
#home-content #featured-articles article .article-list li {
  color: #df3529;
  padding-bottom: 10px;
}
#home-content #featured-articles article .article-list li span {
  color: #2d2b2b;
}
@media (max-width: 990px) {
  #home-content #featured-articles {
    padding-top: 0;
    width: 100%;
  }
}
#home-content #featured-articles .continue-reading-button {
  font-size: 1em;
  padding: 10px;
  margin-top: 10px;
  background: #df3529;
  color: #ffffff;
}
#home-content #featured-articles .continue-reading-button:hover {
  background: #fa0000;
}

#article-content {
  width: 60%;
  margin: 30px auto;
}
@media (max-width: 425px) {
  #article-content {
    width: 90%;
  }
}
#article-content article {
  background: #ffffff;
  color: #2d2b2b;
  padding: 20px;
}
#article-content article .article-images {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 30px;
}
@media (max-width: 935px) {
  #article-content article .article-images {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  #article-content article .article-images {
    flex-direction: column;
    align-items: center;
  }
}
#article-content article #altab-ali-img,
#article-content article #anti-nazi-league-img,
#article-content article #graffiti-wall-img {
  width: 30%;
}
@media (max-width: 935px) {
  #article-content article #altab-ali-img,
  #article-content article #anti-nazi-league-img,
  #article-content article #graffiti-wall-img {
    width: 45%;
  }
}
@media (max-width: 600px) {
  #article-content article #altab-ali-img,
  #article-content article #anti-nazi-league-img,
  #article-content article #graffiti-wall-img {
    width: 75%;
  }
}
#article-content article .article-img {
  width: 100%;
}
#article-content article .article-heading {
  text-align: left;
  font-size: 1.8em;
}
@media (max-width: 480px) {
  #article-content article .article-heading {
    font-size: 1.3em;
  }
}
#article-content article .article-subheading {
  font-size: 1.2em;
  padding-bottom: 20px;
}
#article-content article section {
  display: flex;
  gap: 50px;
  margin-bottom: 30px;
}
@media (max-width: 935px) {
  #article-content article section {
    flex-direction: column;
    gap: 0;
  }
}
#article-content article section .list-content {
  width: 70%;
}
@media (max-width: 935px) {
  #article-content article section .list-content {
    width: 100%;
  }
}
#article-content article section .list-content .article-list {
  margin-left: 20px;
  list-style-type: disc;
  list-style-position: outside;
}
#article-content article section .list-content .article-list li {
  color: #df3529;
  padding-bottom: 10px;
}
#article-content article section .list-content .article-list li span {
  color: #2d2b2b;
}
#article-content article section .image-content {
  width: 30%;
}
@media (max-width: 935px) {
  #article-content article section .image-content {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
#article-content article section .image-content #context-brief-history-img,
#article-content article section .image-content #community-under-siege-img,
#article-content article section .image-content #community-resistance-movement-img,
#article-content article section .image-content #history-repeating-itself-img {
  width: 75%;
}
#article-content article section .image-content #community-response-img {
  width: 95%;
}
#article-content article section .image-content .article-img {
  width: 100%;
}
#article-content article .article-list {
  margin-left: 20px;
  list-style-type: disc;
  list-style-position: outside;
}
#article-content article .article-list li {
  color: #df3529;
  padding-bottom: 10px;
}
#article-content article .article-list li span {
  color: #2d2b2b;
}
#article-content article .article-author {
  padding: 10px;
  border: 1px solid #fa0000;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 425px) {
  #article-content article .article-author {
    align-items: flex-start;
  }
}
#article-content article .article-author span {
  font-size: small;
  font-weight: bold;
  color: #2d2b2b;
}

.accordion {
  background-color: #fa0000;
  cursor: pointer;
  padding: 5px 20px 0;
  width: 100%;
  border: none;
  outline: none;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion img {
  width: 4rem;
}
@media (max-width: 630px) {
  .accordion img {
    width: unset;
  }
}
.accordion h2 {
  color: #ffffff;
  font-size: 1.5em;
}
@media (max-width: 425px) {
  .accordion h2 {
    font-size: 1.2em;
  }
}
.accordion:after {
  content: "▼";
  color: #ffffff;
  margin-left: 5px;
}

.active:after {
  content: "▲";
}

.panel {
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  -moz-transition: max-height 0.2s ease-out;
  -ms-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
  margin-bottom: 10px;
  padding: 0 18px;
  border: 2px solid #fa0000;
}
.panel .article-entries {
  list-style-type: square;
  list-style-position: outside;
  margin: 15px 0;
  padding-left: 15px;
}
.panel .article-entries .article-document, .panel .article-entries .article-document a {
  color: #515151;
  font-size: 12px;
  padding-bottom: 10px;
}
.panel .article-entries .article-document a:hover {
  color: #df3529;
}

#pamphlets {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  #pamphlets {
    flex-direction: column;
    gap: 20px;
  }
}
#pamphlets a {
  display: block;
  width: 30%;
}
@media (max-width: 768px) {
  #pamphlets a {
    width: 60%;
  }
}
@media (max-width: 425px) {
  #pamphlets a {
    width: 100%;
  }
}
#pamphlets a .pamphlet-cover {
  margin: 5px 0;
  width: 100%;
  height: auto;
  border: solid 3px #515151;
  box-shadow: 6px 6px 6px #888888;
}
#pamphlets a .pamphlet-cover:hover {
  border: solid 3px #df3529;
}

#photo-gallery {
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) {
  #photo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  #photo-gallery {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 20px auto;
  }
}
#photo-gallery .thumbnail-photo {
  background: #ffffff;
  padding: 15px;
  border: 3px solid #515151;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
  cursor: pointer;
}
#photo-gallery .thumbnail-photo img {
  width: 100%;
  height: 100%;
}
#photo-gallery .thumbnail-photo:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  border: 3px solid #df3529;
}
#photo-gallery .portrait {
  grid-row: span 2;
}
#photo-gallery .landscape {
  grid-row: span 1;
}
#photo-gallery .gallery-modal-container {
  padding-top: 40px;
  background-image: url("../images/photo-gallery-imgs/modal-display/modal-overlay.png");
  background-repeat: repeat;
}
#photo-gallery .gallery-modal-container .gallery-modal-content {
  background-color: #ffffff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
#photo-gallery .gallery-modal-container .gallery-modal-content .gallery-modal-header {
  padding: 8px 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  background-color: #ffffff;
  position: relative;
}
#photo-gallery .gallery-modal-container .gallery-modal-content .gallery-modal-header #close-gallery-modal-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 3;
  width: 35px;
}
#photo-gallery .gallery-modal-container .gallery-modal-content .gallery-modal-header #close-gallery-modal-btn:hover {
  cursor: pointer;
}
#photo-gallery .gallery-modal-container .gallery-modal-content .gallery-modal-body {
  padding: 0 16px;
  position: relative;
}
#photo-gallery .gallery-modal-container .gallery-modal-content .gallery-modal-body #next-img-btn, #photo-gallery .gallery-modal-container .gallery-modal-content .gallery-modal-body #prev-img-btn {
  position: absolute;
  top: 40%;
  z-index: 3;
  width: 35px;
}
#photo-gallery .gallery-modal-container .gallery-modal-content .gallery-modal-body #next-img-btn:hover, #photo-gallery .gallery-modal-container .gallery-modal-content .gallery-modal-body #prev-img-btn:hover {
  cursor: pointer;
}
#photo-gallery .gallery-modal-container .gallery-modal-content .gallery-modal-body #prev-img-btn {
  left: -14px;
}
#photo-gallery .gallery-modal-container .gallery-modal-content .gallery-modal-body #next-img-btn {
  right: -14px;
}
#photo-gallery .gallery-modal-container .gallery-modal-content .gallery-modal-body #gallery-modal-image {
  width: 100%;
}
#photo-gallery .gallery-modal-container .gallery-modal-content .gallery-modal-footer {
  text-align: center;
  padding: 0 10px 10px;
}
#photo-gallery .gallery-modal-container .gallery-modal-content .gallery-modal-footer #modal-image-caption {
  font-family: "dejavu_sanscondensed", Verdana, Helvetica, Arial, sans-serif;
  font-size: 0.9em;
  color: #2d2b2b;
}
#photo-gallery .gallery-modal-container .portrait-img {
  width: 30%;
}
@media (max-width: 1024px) {
  #photo-gallery .gallery-modal-container .portrait-img {
    width: 60%;
  }
}
@media (max-width: 768px) {
  #photo-gallery .gallery-modal-container .portrait-img {
    width: 80%;
  }
}
#photo-gallery .gallery-modal-container .landscape-img {
  width: 50%;
}
@media (max-width: 1024px) {
  #photo-gallery .gallery-modal-container .landscape-img {
    width: 80%;
  }
}

#video-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
#video-gallery .video-link {
  display: block;
  width: 30%;
}
@media (max-width: 1024px) {
  #video-gallery .video-link {
    width: 47%;
  }
}
@media (max-width: 715px) {
  #video-gallery .video-link {
    width: 100%;
  }
}
#video-gallery .video-link .video-thumbnail {
  position: relative;
}
#video-gallery .video-link .video-thumbnail img {
  width: 100%;
}
#video-gallery .video-link .video-thumbnail .timestamp {
  position: absolute;
  right: 0;
  bottom: 0.5em;
  background: #000000;
  padding: 4px 8px;
  color: #ffffff;
  font-family: "dejavu_sanscondensed", Verdana, Helvetica, Arial, sans-serif;
  font-size: 0.6em;
}

#video-title {
  padding-bottom: 10px;
  font-size: 1.5em;
  text-align: left;
}

.video-description {
  padding-bottom: 30px;
}

.embedded-video {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  margin-bottom: 20px;
  background: #000000;
}
.embedded-video iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
  padding: 20px 0;
}
@media (min-width: 1024px) {
  .contact-methods {
    flex-direction: row;
  }
}
.contact-methods .address-contact {
  width: 100%;
}
@media (min-width: 1024px) {
  .contact-methods .address-contact {
    width: 50%;
  }
}
.contact-methods .address-contact address {
  padding-bottom: 20px;
  line-height: 1.4;
}
.contact-methods .form-contact {
  width: 100%;
}
@media (min-width: 1024px) {
  .contact-methods .form-contact {
    width: 50%;
  }
}
.contact-methods .form-contact form {
  padding: 20px;
  border: 1px solid #ffffff;
  width: 100%;
}
.contact-methods .form-contact form label {
  display: block;
  margin-top: 15px;
  padding-left: 0.1rem;
}
.contact-methods .form-contact form .field-input {
  width: 100%;
  margin-top: 2px;
  padding: 10px;
  font-size: 1em;
  font-family: Rockwell, "Courier Bold", Courier, Georgia, Times, "Times New Roman", serif;
  color: #000000;
  background: #ffffff;
  border: 2px solid #fa0000;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
.contact-methods .form-contact form .field-input:focus {
  border-color: #ffd700;
  outline: none;
}
.contact-methods .form-contact form textarea {
  height: 150px;
}
.contact-methods .form-contact form .error-text {
  color: #ff4500;
  font-size: 0.9em;
  font-weight: bold;
  line-height: 1.1;
  padding-left: 0.1rem;
}
.contact-methods .form-contact form #anti-spam {
  display: none;
}
.contact-methods .form-contact form #form-submit-button {
  display: block;
  margin-top: 20px;
  padding: 15px 20px;
  background: #fa0000;
  font-family: Rockwell, "Courier Bold", Courier, Georgia, Times, "Times New Roman", serif;
  font-size: 0.9em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}
.contact-methods .form-contact form #form-submit-button:hover {
  background: #8b0000;
  color: #ffffff;
}
.contact-methods .form-contact form .form-modal-container {
  padding-top: 200px;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}
.contact-methods .form-contact form .form-modal-container .form-modal-content {
  background-color: #ffffff;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  -ms-border-radius: 35px;
  border-radius: 35px;
  width: 80%;
}
@media (min-width: 425px) {
  .contact-methods .form-contact form .form-modal-container .form-modal-content {
    width: 60%;
  }
}
@media (min-width: 1200px) {
  .contact-methods .form-contact form .form-modal-container .form-modal-content {
    width: 30%;
  }
}
.contact-methods .form-contact form .form-modal-container .form-modal-content .form-modal-header {
  padding: 3px 30px;
  background-color: #fa0000;
  text-align: center;
  position: relative;
}
.contact-methods .form-contact form .form-modal-container .form-modal-content .form-modal-header #close-form-modal-btn {
  color: #ffffff;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 10px;
  top: 0;
}
.contact-methods .form-contact form .form-modal-container .form-modal-content .form-modal-header #close-form-modal-btn:hover, .contact-methods .form-contact form .form-modal-container .form-modal-content .form-modal-header #close-form-modal-btn:focus {
  color: #ffd700;
  text-decoration: none;
  cursor: pointer;
}
.contact-methods .form-contact form .form-modal-container .form-modal-content .form-modal-header #form-modal-heading {
  font-size: 1rem;
  color: #ffffff;
  margin: 10px 0;
}
@media (min-width: 550px) {
  .contact-methods .form-contact form .form-modal-container .form-modal-content .form-modal-header #form-modal-heading {
    font-size: 1.5rem;
  }
}
.contact-methods .form-contact form .form-modal-container .form-modal-content .form-modal-body {
  padding: 30px;
  background-color: #d4d5d9;
  color: #000000;
}