@font-face {
  font-family: 'audiowide';
  src: url(/assets/theme/fonts/Audiowide-Regular.ttf);
}

html body {
  padding: 0;
  margin: 0;

  background-color: #0f0f0f;

  font-family: 'Open Sans', 'Roboto', sans-serif;
    
}

h1, h2, .position{
  font-family: audiowide, 'Open Sans';
}

.page-content-white {
  background-color: white;
  color: #000;
  padding: 50px;
}

.page-content-grey {
  background-color: #201f1f;
  color: #FFF;
  padding: 50px;
}

.error {
  text-align: center;
}

hr {
  height: 2px;
  background-color: #ffcc00;
  border: transparent;
}

.link {
  color: #000;
  transition: color .25s;
}

.link:hover {
  color: #cc0000;
  text-decoration: none;
}

.button-red {
  background-color: transparent;
  border: 2px solid #cc0000;
  border-radius: 1.5rem;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  padding: 1rem 1.6rem;
  text-align: center;
  text-decoration: none #cc0000 solid;
  text-decoration-thickness: auto;
  transition: all .1s cubic-bezier(.4, 0, .2, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;

  background-color: #cc0000;
  color: white;
}

.button-red:hover {
  background-color: transparent;
  color: #cc0000;
}

.button-black {
  background-color: transparent;
  border: 2px solid #201f1f;
  border-radius: 1.5rem;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  padding: 1rem 1.6rem;
  text-align: center;
  text-decoration: none #201f1f solid;
  text-decoration-thickness: auto;
  transition: all .1s cubic-bezier(.4, 0, .2, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;

  background-color: #201f1f;
  color: white;
}

.button-black:hover {
  background-color: transparent;
  color: #201f1f;
}

.button-yellow {
  background-color: transparent;
  border: 2px solid #ffcc00;
  border-radius: 1.5rem;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  padding: 1rem 1.6rem;
  text-align: center;
  text-decoration: none #ffcc00 solid;
  text-decoration-thickness: auto;
  transition: all .1s cubic-bezier(.4, 0, .2, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;

  background-color: #ffcc00;
  color: #0f0f0f;
}

.button-yellow:hover {
  background-color: transparent;
  color: #ffcc00;
}

.slideshow-container {
  width: 100%;
  height: 680px;
  overflow: hidden;
  background-color: #0f0f0f;
}

.slideshow-container img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: 0 -275px;
}

.mySlides {
  animation-name: fade;
  animation-duration: 0.5s;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -15vh;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 1;
  background-color: rgba(0,0,0,0.8);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgb(255, 255, 255);
  color: black;
}

@keyframes fade {
  from {opacity: 0} 
  to {opacity: 1}
}

@media (max-width: 1200px) {
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 55%;
    width: auto;
    margin-top: -15vh;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 1;
    background-color: rgba(0,0,0,0.8);
  }

  .slideshow-container img {
    object-position: center;
  }
}

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

.title {
  position: relative;
  left:0; top:-54px;
  background-image: linear-gradient(180deg, rgb(15, 15, 15), rgba(15, 15, 15, 0));
  line-height: 30px;
}

.title h1 {
  font-size: 80px;
  font-weight: bold;
  color: white;
  padding-top: 4vh;
}

.title h2 {
  font-size: 60px;
  font-weight: bold;
  color: #Ffcc00;
}

.title h3 {
  font-size: 35px;
  font-weight: bold;
  color: white;
  line-height: 15px;
}

.first-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 40px;
  margin: auto 10%;
}

.first-text {
  font-size: 23px;
  text-align: center;
  grid-column: span 2 / span 2;
}

.first-logo {
  max-width: 340px;
  grid-column-start: 3;
}

.first-logo img {
  width: 100%;
}

@media (max-width: 1200px) {
  .first-info {
    display: inline;
    margin: 0 0;
  }

  .first-logo {
    margin: 30px auto;
  }

  .title h3{
    line-height: 50px;
  }
}

.community-involvement {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 90px;

  position: relative;
}

.ci-card {
  background-color: #efefef;
  width: 340px;
  margin: 0 auto;
  text-align: center;
  font-size: 19px;
  padding-bottom: 15px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 20px;
  box-shadow:  10px 10px #201f1f;
}

.ci-card img {
  width: 340px;
  box-shadow: 5px 5px;
  border-radius: 5px;
  margin-bottom: 20px;
}

@media (max-width: 1374px) {
  .community-involvement {
    display: inline;
  }

  .ci-card {
    width: 80%;
  }

  .ci-card img {
    width: 50%;
  }

  .ci-card a {
    display: block;
    width: 40%;
    margin: auto;
  }
}

@media (max-width:1200px) {
  .ci-card p, .ci-card a {
    font-size: 30px;
  }

  .ci-card h2 {
    font-size: 40px;
  }
}

.content-embed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
}

.content-embed h2 {
  font-size: 35px;
  line-height: 10px;
}

.youtube-embed {
  grid-column-start: 1;
  margin: 0 auto;
}

.youtube-embed iframe {
  width: 800px;
  height: 630px;
  border: transparent;
  padding-top: 25px;
  border-radius: 5px;
}

.instagram-embed {
  grid-column-start: 2;
  margin: 0 auto;
}

.i-embed {
  padding-top: 25px;
}

@media (max-width: 1470px) {
  .content-embed {
    display: block;
  }
  .youtube-embed iframe {
    display: block;
    margin: auto auto;
    width: 80%;
    height: 500px;
  }

  .i-embed {
    margin: auto;
    width: 608px;
  }
}

.page-title {
  font-size: 3rem;
  color: #0f0f0f;
  margin: 0;
  margin-bottom: 10px;
}

.team-section {
  text-align: center;
  font-size: 27px;
  margin: auto 10%;
}

.meeting-info {
  text-align: center;
  margin: auto 15%;
}

.meeting-info h1 {
  color: white;
  font-size: 3rem;
  margin: 0;
  margin-bottom: 10px;
}

.meeting-info p {
  font-size: 27px;
}

.team-history {
  text-align: center;
  margin: auto 15%;
}

.team-history h1 {
  font-size: 3rem;
  margin: 0;
  margin-bottom: 10px;
}

.team-history p {
  font-size: 27px;
}

.three-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 90px;

  position: relative;
}

.about-us-card {
  background-color: #efefef;
  width: 450px;
  margin: 0 auto;
  text-align: center;
  font-size: 19px;
  padding-bottom: 15px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 20px;
  color: #000;
  box-shadow: 10px 10px #000
}

.about-us-card img {
  margin-top: 30px;
  width: 430px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.about-us-card p {
  margin: auto 3%;
}

.list {
  font-size: 40px;
  padding: 0;
  display: inline-block;
}

.link-black {

  color: #000;
  transition: color 0.25s;
}

.link-black:hover {
  color: #cc0000;
  text-decoration: none;
}

.page-content-red-border {
  background-image: url(/assets/images/red-gear-white-background-alternate-1920x1080.png);
  background-size: cover;
  background-position: 0% 37%;
  padding: 50px;
  padding-bottom: 25px;
}

p {
  line-height: 1.5em;
}

@media (max-width: 1470px) {
  .three-cards {
    display: inline;
  }

  .about-us-card {
    width: 80%;
    margin-bottom: 30px;
    box-shadow: 10px 10px #000
  }
}

.leadership-org {
  margin: auto;
  margin-left: 2%;
}

.leadership-org img {
  width: 130%;
}

.leadership-two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  text-align: left;
  column-gap: 48px;
  row-gap: 0px;
}

.leadership-two-column img {
  width: 411px;
  height: 274px;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 5px 5px;
}

.leadership-two-column h2 {
  font-size: 40px;
  margin: 5px;
  margin-left: 0;
}

.leadership-two-column h3 {
  width: 390px;
}

.leadership-two-column .position {
  margin-bottom: 20px;
  margin-top: 20px
}

.leadership-two-column-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  text-align: right;
  gap: 8px;
}

.leadership-two-column-right img {
  width: 411px;
  height: 274px;
  border-radius: 5px;
  box-shadow: 5px 5px;
}

.leadership-two-column-right h2 {
  font-size: 40px;
  margin: 5px;
  margin-right: 0;
}

.leadership-two-column-right .position {
  margin-top: 20px;
  margin-bottom: 20px;
}

.leadership-dropdown {
  position: relative;
}

.leadership-dropdown-content {
  display: none;
  background-color: #201f1f;
  border-radius: 10px;
  color: #FFF;
  width: 80%;
}


.leadership-dropdown-content h4 {
  color: #ffcc00;
  font-size: 25px;
  padding: 20px;
  padding-bottom: 0;
  margin: 0;
}


.leadership-dropdown-content p {
  margin: 0;
  padding: 20px;
  padding-top: 6px;
  padding-bottom: 0;
  font-size: 18px;
}

.leadership-dropdown-content-show {
  animation-name: fade;
  animation-duration: 0.5s;
  display: block;
}

.leadership-center {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(2, 1fr);
  text-align: center;
  row-gap: 10px;
}

.leadership-center img {
  width: 411px;
  border-radius: 5px;
  box-shadow: 5px 5px;
}

.leadership-center h2 {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 0;
}

.leadership-center h3 {
  margin-top: 5px;
  margin-bottom: 7px;
}

.leadership-center .leadership-dropdown-content {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: -80px;
  width: 40%;
}

@media (max-width: 1470px) {
  .leadership-two-column {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(2, 1fr);
    text-align: center;
    row-gap: 10px;
  }

  .leadership-two-column img {
    width: 411px;
    border-radius: 5px;
  }

  .leadership-two-column h2 {
    font-size: 40px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .leadership-two-column h3 {
    margin-top: 5px;
    margin-bottom: 7px;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .leadership-two-column .position {
    margin-top: 5px;
    margin-bottom: 7px;
  }

  .leadership-two-column-right {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(2, 1fr);
    text-align: center;
    row-gap: 10px;
  }
  
  .leadership-img {
    order: 1;
  }

  .leadership-info {
    order: 2;
    margin-left: auto;
    margin-right: auto;
  }

  .leadership-two-column-right img {
    width: 411px;
    border-radius: 5px;
  }

  .leadership-two-column-right h2 {
    font-size: 40px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .leadership-two-column-right h3 {
    margin-top: 5px;
    margin-bottom: 7px;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .leadership-two-column-right .position {
    margin-top: 5px;
    margin-bottom: 7px;
  }

  .leadership-dropdown-content {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
    margin-bottom: 30px;
  }

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

  .leadership-org img {
    width: 100%;
  }
}

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

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
input[type='text'],
input[type='email'],
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

textarea {
  height: 150px;
}

input[type='submit'] {
  background-color: #cc0000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

input[type='submit']:hover {
  background-color: #aa0000;
}

.button-list {
  list-style: none;
  text-align: center;
  padding: 0;
  padding-top: 20px;
}

.button-list li {
  padding-bottom: 10px;
}

.card-center {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(2, 1fr);
  text-align: center;
  row-gap: 10px; 
}

.card-center img {
  width: 411px;
  height: 274px;
  border-radius: 5px;
  box-shadow: 5px 5px;
}

.card-center h2 {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 0;
}

.card-center h3 {
  margin-top: 5px;
  margin-bottom: 7px;
}

.card-center .card-dropdown-content {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: -80px;
  width: 40%;
}

.card-dropdown-content {
  display: none;
  background-color: #201f1f;
  border-radius: 10px;
  color: #FFF;
  width: 80%;
}

.card-dropdown-content h4 {
  color: #ffcc00;
  font-size: 25px;
  padding: 20px;
  padding-bottom: 0;
  margin: 0;
}

.card-dropdown-content p {
  margin: 0;
  padding: 20px;
  padding-top: 6px;
  padding-bottom: 0;
  font-size: 18px;
}

.card-dropdown-content-show {
  animation-name: fade;
  animation-duration: 0.5s;
  display: block;
}

.card-dropdown {
  position: relative;
}

.robot-photo {
  display: flex;
}

.robot-photo img {
  height: 315px;
  margin-left: auto;
  margin-right: auto;
}

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

.sponsor-logos img {
  width: 400px;
  padding-bottom: 50px;
}

.mentor-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 8px;
}

.resource-links a{
  text-decoration: none;
  color: #0E6F90
}