@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #ebebeb;
  font-family: "Raleway", sans-serif;
  overflow-x: hidden;
}

#topnav {
  background-color: rgba(0, 0, 0, 0.414);
  font-size: 14px;
  color: white;
  display: flex;
  height: 80px;
  align-items: center;
  padding: 0 20px;
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  transition: background-color 0.5s;
}
#topnav .title {
  margin-right: 10%;
}
#topnav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}
#topnav a:hover {
  color: rgb(129, 0, 0);
}
#topnav a {
  font-size: 22px;
}
#topnav #links {
  display: flex;
  justify-content: space-around;
  flex-grow: 1;
}
#topnav #links .link {
  height: 80px;
}
#topnav #links .link a {
  display: block;
  height: 80px;
  line-height: 80px;
}
#topnav #links .link .dropdown {
  display: none;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.414);
  min-width: 160px;
  box-shadow: 4px 7px 5px 0px rgba(0, 0, 0, 0.12);
  z-index: 1;
}
#topnav #links .link .dropdown a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}
#topnav #links .link .dropdown a:hover {
  color: rgb(129, 0, 0);
}
#topnav #links .link .dropdown a {
  padding: 12px 16px;
  display: block;
  line-height: normal;
  height: auto;
  font-size: 18px;
  cursor: pointer;
}
#topnav #links .link:hover .dropdown {
  display: block;
}
#topnav #menu {
  display: none;
  font-size: 35px;
  color: white;
  cursor: pointer;
  background: transparent;
  border: none;
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  margin-left: auto;
}
#topnav #menu:hover {
  color: rgb(129, 0, 0);
}
#topnav.scrolled {
  background-color: #ebebeb;
  color: #666;
}
#topnav.scrolled a, #topnav.scrolled #menu {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}
#topnav.scrolled a:hover, #topnav.scrolled #menu:hover {
  color: rgb(129, 0, 0);
}
#topnav.scrolled #links .link a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}
#topnav.scrolled #links .link a:hover {
  color: rgb(129, 0, 0);
}
#topnav.scrolled #links .link .dropdown {
  background-color: #ebebeb;
}
#topnav.scrolled #links .link .dropdown a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}
#topnav.scrolled #links .link .dropdown a:hover {
  color: rgb(129, 0, 0);
}
#topnav.scrolled #links .link .dropdown a:hover {
  background-color: #dadada;
}

#content {
  min-height: calc(100vh - 70px);
  background-color: white;
}

#footer {
  background-color: #ebebeb;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #666;
  height: 70px;
}
#footer a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}
#footer a:hover {
  color: rgb(129, 0, 0);
}
#footer a {
  font-size: 25px;
}
#footer social {
  width: 30%;
}
#footer .footer-section {
  display: flex;
  justify-content: space-around;
  margin: 0 auto 20px;
}
#footer links {
  width: 70%;
}
#footer links a {
  font-size: 20px;
}

.banner {
  width: 100vw;
  height: 80vh;
}
.banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  position: relative;
  z-index: 1;
}

.section {
  max-width: 100%;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}
.section.two-side .section-content {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.section.two-side .section-content h1 {
  font-size: 40px;
  text-align: center;
  margin: 10px;
}
.section.two-side .section-content p {
  font-size: 20px;
  text-align: center;
  margin: 10px;
  max-width: 600px;
}
.section.two-side .section-content a {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 20px;
  background-color: grey;
  color: white;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s;
}
.section.two-side .section-content a:hover {
  background-color: rgb(129, 0, 0);
}
.section.two-side .image {
  width: 50%;
  background-size: cover;
  background-position: center;
}
.section.two-side .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section.cards {
  flex-flow: row wrap;
  justify-content: space-around;
  padding: 20px 0;
}
.section.cards .card {
  padding: 20px;
  text-align: center;
  width: 25vw;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.section.cards .card .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
.section.cards .card h1 {
  font-size: 40px;
  margin-bottom: 20px;
}
.section.cards .card p {
  font-size: 20px;
  text-align: center;
}
.section.cards .card a {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 20px;
  background-color: grey;
  color: white;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s;
}
.section.cards .card a:hover {
  background-color: rgb(129, 0, 0);
}
.section.cards .card .card-image {
  width: 20vw;
  height: 20vw;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
}
.section.cards .card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section.accent {
  background-color: #001831;
  color: white;
}
.section.accent a {
  background-color: white !important;
  color: black !important;
}
.section.accent a:hover {
  background-color: rgb(129, 0, 0) !important;
  color: white !important;
}

@media (max-width: 1200px) {
  #topnav .link a {
    font-size: 20px;
  }
  .section.cards .card {
    width: 25vw;
  }
  .section.cards .card .card-image {
    width: 25vw;
    height: 25vw;
  }
}
@media (max-width: 1000px) {
  #footer social {
    width: 60%;
  }
  #footer links {
    width: 100%;
  }
  #footer links a {
    font-size: 18px;
  }
  #topnav {
    padding: 0;
  }
  #topnav #menu {
    display: block;
  }
  #topnav #links {
    display: none;
  }
  #topnav .title {
    margin: 0 0 0 20px;
  }
  #topnav.open #links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.414);
    z-index: 1;
  }
  #topnav.open #links .link {
    height: auto;
    position: relative;
  }
  #topnav.open #links .link a {
    display: block;
    height: auto;
    line-height: normal;
    padding: 12px 16px;
    font-size: 22px;
  }
  #topnav.open #links .link .dropdown {
    display: none;
  }
  #topnav.open.scrolled #links {
    background-color: #ebebeb;
    color: #666;
  }
}
@media (max-width: 800px) {
  .section.cards .card {
    width: 40vw;
  }
  .section.cards .card .card-image {
    width: 40vw;
    height: 40vw;
  }
  .section.two-side {
    flex-direction: column;
  }
  .section.two-side .section-content {
    width: 100%;
    padding: 30px 20px;
    background-color: white;
    color: #333;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
  }
  .section.two-side .section-content h1 {
    color: #333;
  }
  .section.two-side .section-content p {
    color: #666;
    max-width: 100%;
  }
  .section.two-side .section-content a {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 20px;
    background-color: grey;
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  .section.two-side .section-content a:hover {
    background-color: rgb(129, 0, 0);
  }
  .section.two-side .image {
    display: none;
  }
}
@media (max-width: 768px) {
  .section.two-side .section-content h1 {
    font-size: 28px;
    margin: 5px;
  }
  .section.two-side .section-content p {
    font-size: 16px;
    margin: 8px;
  }
  .section.two-side .section-content a {
    font-size: 16px;
    padding: 8px 16px;
    margin-top: 15px;
  }
}
@media (max-width: 600px) {
  .section.cards .card {
    width: 90vw;
  }
  .section.cards .card .card-image {
    width: 80vw;
    height: 80vw;
  }
}
@media (max-width: 480px) {
  .section.two-side .section-content h1 {
    font-size: 24px;
    margin: 5px;
  }
  .section.two-side .section-content p {
    font-size: 14px;
    margin: 5px;
  }
  .section.two-side .section-content a {
    font-size: 14px;
    padding: 6px 12px;
  }
}
.slideUp {
  transform: translateY(100%);
  opacity: 0;
  transition: transform 1.5s ease-out, opacity 1.5s ease-out;
}
.slideUp.scrolled {
  transform: none;
  opacity: 1;
}

.page-header {
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.page-header h1 {
  color: white;
  font-size: 4em;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: center;
  padding: 0 20px;
}

.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
.page-content > p {
  text-align: center;
  font-size: 1.2em;
  line-height: 1.8;
  color: #666;
  max-width: 800px;
  margin: 0 auto 40px;
}
.page-content .section {
  margin-bottom: 30px;
}
.page-content .section p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
}
.page-content .intro-section {
  background: #ebebeb;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid rgb(129, 0, 0);
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 20px 0;
}

.link-card {
  background: white;
  border: 1px solid #dadada;
  border-radius: 8px;
  padding: 30px;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: block;
}
.link-card h2 {
  color: #001831;
  margin: 0 0 15px;
  font-size: 1.4em;
  transition: color 0.3s;
}
.link-card p {
  color: #666;
  margin: 0;
  line-height: 1.6;
  font-size: 1em;
}
.link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: rgb(129, 0, 0);
}
.link-card:hover h2 {
  color: rgb(129, 0, 0);
}

.today-page .section.two-side {
  margin-bottom: 0;
  min-height: 400px;
}
.today-page .section.two-side .section-content {
  padding: 50px 40px;
}
.today-page .section.two-side .section-content h1 {
  font-size: 2em;
  margin-bottom: 15px;
}
.today-page .section.two-side .section-content p {
  font-size: 1.1em;
  line-height: 1.8;
}
.today-page .section:not(.two-side) {
  background: #ebebeb;
  padding: 40px;
  border-radius: 8px;
}
.today-page .section:not(.two-side) p {
  max-width: 900px;
  margin: 0 auto 20px;
}
.today-page .section:not(.two-side) p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .page-header {
    height: 200px;
  }
  .page-header h1 {
    font-size: 2.2em;
    padding: 0 15px;
  }
  .page-content {
    padding: 20px 12px;
  }
  .page-content .intro-section {
    padding: 20px 15px;
  }
  .link-card {
    padding: 20px 15px;
  }
  .today-page .section.two-side .section-content {
    padding: 25px 15px;
  }
  .today-page .section:not(.two-side) {
    padding: 25px 15px;
  }
  .history-timeline {
    padding: 20px 12px;
  }
  .timeline-item {
    gap: 15px;
    margin-bottom: 40px;
  }
  .timeline-content {
    padding: 0px;
  }
  .timeline-content h2 {
    font-size: 1.6em;
    margin-bottom: 15px;
  }
  .timeline-content p {
    font-size: 1em;
  }
}
@media (max-width: 480px) {
  .page-header {
    height: 160px;
  }
  .page-header h1 {
    font-size: 1.8em;
    padding: 0 10px;
  }
  .page-content {
    padding: 15px 10px;
  }
  .page-content > p {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-content .intro-section {
    padding: 15px 12px;
  }
  .link-card {
    padding: 15px 12px;
  }
  .today-page .section.two-side .section-content {
    padding: 20px 12px;
  }
  .today-page .section:not(.two-side) {
    padding: 20px 12px;
  }
  .history-timeline {
    padding: 15px 10px;
  }
  .timeline-item {
    gap: 12px;
    margin-bottom: 25px;
  }
  .timeline-content {
    padding: 0;
  }
  .timeline-content h2 {
    font-size: 1.4em;
    margin-bottom: 10px;
  }
}
.history-timeline {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: center;
}
.timeline-item.reverse .timeline-image {
  order: 1;
}
.timeline-item.reverse .timeline-content {
  order: 2;
}
.timeline-item.full, .timeline-item.video {
  grid-template-columns: 1fr;
}

.timeline-content {
  padding: 0px;
}
.timeline-content.centered {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.timeline-content h2 {
  font-size: 2em;
  color: rgb(129, 0, 0);
  margin-bottom: 20px;
}
.timeline-content p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #444;
}

.timeline-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 800px;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .timeline-item,
  .timeline-item.reverse {
    grid-template-columns: 1fr;
  }
  .timeline-item .timeline-image,
  .timeline-item .timeline-content,
  .timeline-item.reverse .timeline-image,
  .timeline-item.reverse .timeline-content {
    order: initial;
  }
}

/*# sourceMappingURL=styles.css.map */