* {
  box-sizing: border-box;
  font-size: 12px;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #1a1718;
  background-color: #f9f5f4;
}

a {
  color: #1a1718;
  transition: all 0.2s ease-in-out;
}

a:hover {
  opacity: 0.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #6da92c;
  color: white;
  padding: 20px 0;
  border-bottom: solid 1px #578723;
  text-shadow: 0px 1px 1px #578723, 0px 1px 1px #578723, 0px 1px 1px #578723;
}
@media (max-width: 600px) {
  header {
    padding: 0 0;
  }
}

h1 {
  font-size: 4em;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  letter-spacing: -2px;
  margin: 0;
  padding: 3em 0 0.5em;
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.5em;
    letter-spacing: normal;
    padding: 5em 0 0.5em;
  }
}

nav {
  padding: 0.3em 0;
  text-transform: uppercase;
  text-align: right;
}
@media (max-width: 600px) {
  nav {
    padding: 5px 0;
    text-align: left;
  }
}

nav .logo {
  position: absolute;
  top: 15%;
  left: 1em;
  height: 65%;
}
@media (max-width: 600px) {
  nav .logo {
    position: relative;
    height: 50px;
    top: 0;
  }
}

.nav-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  height: 50px;
  padding: 10px;
}
@media (min-width: 600px) {
  .nav-icon {
    display: none;
  }
}

.nav-icon:hover + ul {
  max-height: 600px;
}

.nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-right: 1em;
  transition: all 0.3s ease-in-out;
}
.sub-nav ul {
  text-align: center;
}
@media (max-width: 600px) {
  .nav ul {
    overflow: hidden;
    max-height: 0px;
    padding-right: 0;
    text-align: center;
  }
  .sub-nav ul {
    max-height: 100%;
  }
}

.nav ul li {
  display: inline;
  margin: 0 15px;
}
@media (max-width: 600px) {
  .nav ul li {
    display: block;
    padding: 1em 0;
    border-top: solid 1px rgba(255, 255, 255, 0.3);
  }
  .sub-nav ul li {
    display: inline-block;
  }
}

.nav ul li a {
  width: 100%;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.sub-nav ul li a {
  color: #1a1718;
}

.nav ul li a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
}

.hero-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 20%;
  background: #1a1718;
}

.hero-banner {
  width: 80%;
  height: auto;
  padding-top: 40%;
  border: solid 1px;
  position: relative;
  margin: auto;
  transition: transform 0.5s ease;
  overflow: hidden;
}

.banner-item {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2rem;
  color: white;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.banner-item img {
  width: 100%;
  position: absolute;
  top: 20%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.banner-item.active {
  opacity: 1;
}

.contact {
  box-sizing: border-box;
  max-width: 500px;
  margin: 3em auto;
  padding: 1.5em 2.5em;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.contact h2 {
  font-size: 3.5em;
}
@media (max-width: 600px) {
  .contact {
    margin: 0.6em auto;
    width: 95%;
  }
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2980b9;
  border: none;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-size: 1.3rem;
  line-height: 2rem;
  cursor: pointer;
}

.button:hover {
  background-color: #1a6a8e;
}

footer {
  text-align: center;
  padding: 20px 0;
  background-color: #6da92c;
  color: white;
}
@media (max-width: 600px) {
  footer {
    padding: 0.5em 1em;
  }
}

.mission {
  text-align: center;
  color: #ffffff;
  padding: 0 10% 10%;
  background-color: #1a1718;
}

.mission h2 {
  margin: 0;
}

.mission p {
  display: inline-block;
  max-width: 1100px;
  font-size: 1.6em;
  line-height: 1.2;
}

.joinus {
  padding: 0 5% 5%;
  clear: both;
}

.joinus li {
  font-size: 1.2em;
}

.joinus h2 {
  float: left;
  width: 35%;
  font-size: 9em;
  line-height: 1;
  margin: 0.5em 0;
}

.joinus h4 {
  font-weight: 700;
  font-size: 2em;
  line-height: 1;
}
@media (max-width: 1190px) {
  .joinus h2 {
    font-size: 4em;
    float: none;
  }
}
@media (max-width: 600px) {
  .joinus h2 {
    font-size: 2em;
  }

  .joinus h4 {
    font-weight: 700;
    font-size: 1em;
    line-height: 1;
  }
}

.joinus-description {
  display: block;
  float: right;
  width: 65%;
  padding: 3% 0;
}
@media (max-width: 1190px) {
  .joinus-description {
    float: none;
    padding: 0 0 3%;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .joinus-description {
    padding: 0 0;
  }
}

.joinus-cta {
  text-align: center;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 1em;
  clear: both;
}

.joinus-cta a {
  padding-bottom: 0.2em;
  text-decoration: none;
  border-bottom: solid 3px #1a1718;
  font-size: 3em;
}

.joinus-cta svg {
  display: inline-block;
  vertical-align: middle;
}

.events {
  color: #ffffff;
  padding-bottom: 100px;
  background-color: #1a1718;
}
@media (max-width: 600px) {
  .events {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 20px;
  }
}

.events-header {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  margin-left: 5%;
  margin-right: 5%;
  display: flex;
}

.events-list {
  cursor: grab;
  padding-left: 5%;
  overflow: scroll;
  scrollbar-width: none;
  margin-left: 0;
  white-space: nowrap;
  text-align: center;
}

.event-item {
  display: inline-block;
  vertical-align: top;
  width: 30%;
  min-width: 350px;
  margin-right: 20px;
  list-style: none;
  background: #ffffff;
  color: #1a1718;
  text-align: left;
}
@media (max-width: 600px) {
  .event-item {
    min-width: 280px;
  }
}

.event-item-description {
  padding: 20px;
  white-space: initial;
}

.event-item-description h3 {
  width: 100%;
  /* overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; */
}

.event-short-description {
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-item-img {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 50%;
  overflow: hidden;
  text-align: center;
}

.event-item-img img {
  position: absolute;
  top: -200%;
  bottom: -200%;
  left: -200%;
  right: -200%;
  margin: auto;
  width: 100%;
  height: auto;
}

h2 {
  letter-spacing: -2px;
  font-size: 4em;
  font-weight: 600;
  margin: 0;
}
.events h2 {
  margin: 0.8em 0 0.5em;
}
@media (max-width: 600px) {
  h2 {
    letter-spacing: -1px;
    font-size: 2em;
  }
  .events h2 {
    margin: 0.5em 0 0;
  }
}

h3 {
  letter-spacing: -0.4px;
  margin: 0;
  font-weight: 700;
  font-size: 2em;
  line-height: 1;
}

h4 {
  font-size: 1.5em;
}

.event-date {
  margin-top: 0;
  font-weight: bold;
  font-size: 1.1em;
}

.section-padding {
  padding: 4em 5%;
}
@media (max-width: 600px) {
  .section-padding {
    padding: 2em 5%;
  }
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.simple-row {
  font-size: 0;
}

.col-1-2 {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  font-size: 1rem;
}
@media (max-width: 600px) {
  .col-1-2 {
    width: 100%;
  }
}

.col-1-3 {
  display: inline-block;
  vertical-align: top;
  width: 33.33%;
  font-size: 1rem;
}
@media (max-width: 600px) {
  .col-1-3 {
    width: 100%;
  }
}

.col-1-4 {
  display: inline-block;
  vertical-align: top;
  width: 25%;
  font-size: 1rem;
}
@media (max-width: 600px) {
  .col-1-4 {
    width: 100%;
  }
}

.p-t-0 {
  padding-top: 0;
}

.p-t-3 {
  padding: 3rem 0 0;
}

table caption {
  font-size: 3em;
  margin-top: 20px;
  font-weight: 300;
  border-bottom: solid 3px rgba(0, 0, 0, 0.3);
}

table {
  width: 100%;
  border-spacing: 0;
}

table td {
  padding: 0.3em 0;
  width: 33%;
  border-bottom: solid 1px rgba(0, 0, 0, 0.3);
}

.td-title {
  font-size: 1.5em;
  border-bottom: solid 1px rgba(0, 0, 0, 0.3);
}

.member-img {
  width: 100%;
  height: auto;
}

.member-profile {
  padding: 0 1em 2em;
}

.contact-form label {
  display: block;
  padding-top: 2em;
}

.contact-form input {
  width: 100%;
}

.contact-form textarea {
  width: 100%;
  min-height: 300px;
}

.contact-form select {
  width: 90%;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 1em;
  border-radius: 4px;
  border: solid 1px rgba(0, 0, 0, 0.3);
}

.announcement p,
strong {
  font-size: 1.7rem;
}

input.phonepart {
  width: 30%;
}

.sponsors img {
  vertical-align: middle;
  width: 20%;
  height: auto;
}
@media (max-width: 600px) {
  .sponsors img {
    width: 32%;
  }
}
