@charset "UTF-8";
.gallery {
  display: flex;
  padding: 2px;
  transition: 0.3s;
}
.gallery:hover .gallery__image {
  filter: grayscale(1);
}
.gallery__column {
  display: flex;
  flex-direction: column;
  width: 25%;
}
.gallery__link {
  margin: 2px;
  overflow: hidden;
}
.gallery__link:hover .gallery__image {
  filter: grayscale(0);
}
.gallery__link:hover .gallery__caption {
  opacity: 1;
}
.gallery__thumb {
  position: relative;
}
.gallery__image {
  display: block;
  width: 100%;
  transition: 0.3s;
}
.gallery__image:hover {
  transform: scale(1.1);
}
.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 25px 15px 15px;
  width: 100%;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  color: white;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  transition: 0.3s;
}

.gallery-section {
  margin: 3em 5em;
  padding: 3em 5em;
}

.hfm {
  display: none;
  grid-template-areas: "img title" "left left";
  width: 100%;
  height: 100%;
  grid-template-columns: 1fr 1fr;
}
.hfm .hfm:first-child {
  display: grid;
}
.hfm .title-head {
  margin-top: 0px;
  grid-area: title;
  background-color: aqua;
}
.hfm .ima {
  grid-area: img;
  background-color: red;
  height: auto;
}
.hfm .ima img {
  height: 100%;
  width: 100%;
}
.hfm .left-area {
  height: auto;
  grid-area: left;
  background-color: green;
}
.hfm .left-area .writeup {
  padding: 3em;
}
.hfm .left-area .sub-main {
  width: 30%;
  margin: 22px;
  float: left;
  /*Button Two*/
}
.hfm .left-area .sub-main button {
  color: #fff;
  text-align: center;
  float: left;
  padding: 20px;
}
.hfm .left-area .sub-main .button-two {
  text-align: center;
  cursor: pointer;
  font-size: 24px;
  margin: 0 0 0 100px;
}
.hfm .left-area .sub-main .button-two {
  border-radius: 4px;
  background-color: #d35400;
  border: none;
  padding: 20px;
  width: 200px;
  transition: all 0.5s;
}
.hfm .left-area .sub-main .button-two span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.hfm .left-area .sub-main .button-two span a {
  color: white;
}
.hfm .left-area .sub-main .button-two span:after {
  content: "»";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
.hfm .left-area .sub-main .button-two:hover span {
  padding-right: 25px;
}
.hfm .left-area .sub-main .button-two:hover span a {
  color: black;
}
.hfm .left-area .sub-main .button-two:hover span:after {
  opacity: 1;
  right: 0;
  color: black;
}

.hallOfFame {
  box-shadow: 0px 10px 9px 0px rgba(0, 0, 0, 0.29);
  -webkit-box-shadow: 0px 10px 9px 0px rgba(0, 0, 0, 0.29);
  -moz-box-shadow: 0px 10px 9px 0px rgba(0, 0, 0, 0.29);
}
.hallOfFame .girls {
  height: auto;
  width: 80vw;
  margin: 2rem auto;
  border-radius: 10px;
  background: #7c7c7c;
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.25);
}
.hallOfFame .girls h1 {
  text-align: center;
  font-size: large;
  margin: 3rem;
  padding: 3rem;
}
.hallOfFame .swiper-slide {
  background-color: inherit;
  height: 100vh;
}
.hallOfFame .boys {
  height: auto;
  width: 80vw;
  margin: 2rem auto;
  background: #7c7c7c;
  border-radius: 10px;
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.25);
}
.hallOfFame .boys h1 {
  text-align: center;
  font-size: large;
  margin: 3rem;
  padding: 3rem;
}

.events-gallery {
  height: 100vh;
}

.card {
  position: relative;
  max-width: 300px;
  width: 100%;
  z-index: 9;
}

.card-body {
  background: red;
  border-radius: 10px;
  padding: 20px 25px 0;
  position: relative;
  z-index: 0;
  transition: 0.5s;
}

.card-img {
  background: #fff;
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: absolute;
  bottom: 30px;
  max-width: 280px;
  width: 100%;
  z-index: 9;
  left: 10px;
  transition: 0.5s;
  border-radius: 10px;
}

.card-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
  color: #222;
}

.card-text {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #222;
}

.card-content {
  visibility: hidden;
  opacity: 0;
  transition: 0.3;
}

.card:hover .card-img {
  bottom: 80%;
}

.card:hover .card-content {
  opacity: 1;
  visibility: visible;
}

.card:hover .card-body {
  padding: 70px 25px 30px;
}

.hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  background: #000;
  color: #f8f8f8;
}

.hljs-comment,
.hljs-quote,
.hljs-meta {
  color: #7c7c7c;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-tag,
.hljs-name {
  color: #96cbfe;
}

.hljs-attribute,
.hljs-selector-id {
  color: #ffffb6;
}

.hljs-string,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-addition {
  color: #a8ff60;
}

.hljs-subst {
  color: #daefa3;
}

.hljs-regexp,
.hljs-link {
  color: #e9c062;
}

.hljs-title,
.hljs-section,
.hljs-type,
.hljs-doctag {
  color: #ffffb6;
}

.hljs-symbol,
.hljs-bullet,
.hljs-variable,
.hljs-template-variable,
.hljs-literal {
  color: #c6c5fe;
}

.hljs-number,
.hljs-deletion {
  color: #ff73fd;
}

.hljs-emphasis {
  font-style: italic;
}

.hljs-strong {
  font-weight: bold;
}

#members {
  background-color: plum;
  height: 70vh;
}
#members a {
  color: white;
}
#members h1 {
  padding: 3em 5em;
}
#members p {
  padding: 3em 5em;
}
#members .button_container {
  left: 0;
  right: 0;
  top: 30%;
}
#members .btn {
  border: none;
  display: block;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
  overflow: hidden;
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  background-color: #222;
  padding: 17px 60px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
#members .btn span {
  position: relative;
  z-index: 1;
}
#members .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 490%;
  width: 140%;
  background: #78c7d2;
  transition: all 0.5s ease-in-out;
  transform: translateX(-98%) translateY(-25%) rotate(45deg);
}
#members .btn:hover:after {
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}
#members .btn:hover:after a {
  color: black;
}
#members .btn:hover a {
  color: black;
}

.hall-fame {
  background-color: #8c8c8c;
  padding: 4em;
}

@media (max-width: 1024px) {
  .gallery {
    flex-direction: row !important;
  }
}
@media (max-width: 768px) {
  .gallery {
    display: block !important;
    justify-items: center !important;
    align-items: center !important;
  }
  .gallery img {
    width: 300px;
  }
}
.event-flyer {
  background-color: #f4f4f4;
  padding: 20px;
  text-align: center;
}
.event-flyer .flyer-container {
  max-width: 800px;
  margin: 0 auto;
}
.event-flyer .flyer-container .event-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .event-flyer .flyer-container .event-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .event-flyer .flyer-container .event-title {
    font-size: 1.5rem;
  }
}
.event-flyer .flyer-container .flyer-image {
  max-width: 60%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .event-flyer .flyer-container .flyer-image {
    max-width: 80%;
  }
}
@media (max-width: 480px) {
  .event-flyer .flyer-container .flyer-image {
    max-width: 100%;
  }
}
.event-flyer .flyer-container .register-button {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  font-size: 18px;
  color: #fff;
  background-color: #007BFF;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.event-flyer .flyer-container .register-button:hover {
  background-color: #0056b3;
}
@media (max-width: 480px) {
  .event-flyer .flyer-container .register-button {
    padding: 10px 20px;
    font-size: 16px;
  }
}

.content {
  padding: 20px;
  text-align: center;
}/*# sourceMappingURL=event-css.css.map */