* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url("/assets/background1.avif");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family: "Poppins", sans-serif;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.5) transparent;
}

/* Webkit Browsers */
::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
}

::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.5); /* Color of the scrollbar thumb */
  border-radius: 10px; /* Rounded corners for the scrollbar thumb */
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.7); /* Slightly darker on hover */
}

::-webkit-scrollbar-track {
  background: transparent; /* Transparent background for the scrollbar track */
}

.gototop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 50%;
  display: none;
  background-color: transparent !important;
  border: none !important;
  z-index: 10;
}
.gototop i {
  background: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 40px;
}

.appbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 11vh;
  z-index: 12;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: #171717;
}
.appbar .hamburger {
  display: none;
  align-items: center;
  justify-content: center;
}
.appbar .appbar .btn,
.appbar .appbar .btn-secondary,
.appbar .appbar .dropdown-toggle {
  display: none;
}
.appbar .btn,
.appbar .btn-secondary,
.appbar .dropdown-toggle {
  background-color: transparent;
  border: none;
}
.appbar .btn i,
.appbar .btn-secondary i,
.appbar .dropdown-toggle i {
  display: none;
}
.appbar .dropdown-center {
  background-color: transparent;
}
.appbar .dropdown-center a {
  text-decoration: none;
  color: #171717;
}
.appbar .dropdown-center li {
  margin: 10px 0px;
}
.appbar .dropdown-center img {
  width: 35px;
  height: 35px;
}
.appbar .border {
  position: absolute;
  bottom: 0px;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  border: 0.5px solid linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  width: 95%;
}
.appbar img {
  width: 220px;
  height: 150px;
}

.navlinks-container {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 800px;
}
.navlinks-container ul {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  list-style: none;
}
.navlinks-container .nav-item {
  color: #ffffff;
  cursor: pointer;
  transition: color 0.3s, font-weight 0.3s;
  font-weight: 500;
  margin-top: 10px;
}
.navlinks-container .nav-item a {
  color: #fff;
  text-decoration: none;
}
.navlinks-container .nav-item a:hover {
  background: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.home-parent {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 11vh;
}
.home-parent-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 89vh;
  background-image: url(../assets/images/kashmirconference.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
}
.home-parent-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.home-parent-hero h1 {
  padding: 50px 0px 0px 30px;
  font-weight: 500;
  z-index: 2;
  font-size: 40px;
  color: #fff;
  animation: float 2s ease-in-out infinite;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}
.home-parent-hero h1 span {
  background: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  color: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
}
.home-parent-hero h2 {
  z-index: 2;
  color: #fff;
  padding: 10px 0px 0px 35px;
  font-size: 25px;
  font-weight: 500;
  animation: float 2s ease-in-out infinite;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}
.home-parent-hero p {
  text-align: center;
  width: 60%;
  color: #fff;
  z-index: 2;
  padding: 120px 0px 0px 35px;
  animation: float 2s ease-in-out infinite;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}
.home-parent-hero p span {
  color: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  background: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.home-parent-hero a {
  z-index: 2;
}
.home-parent-hero a button {
  font-weight: 500;
  margin-top: 50px;
  animation: float 2s ease-in-out infinite;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  background-color: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  background: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
  border-color: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
}
.home-parent .introduction {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 89vh;
}
.home-parent .introduction-frame {
  position: absolute;
  top: 22.5%;
  left: 50px;
  border: 0.5px solid #171717;
  border-radius: 10px;
  width: 79%;
  height: 55%;
  z-index: 1;
}
.home-parent .introduction .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60%;
}
.home-parent .introduction .content h1 {
  font-size: 25px;
  padding-left: 40px;
}
.home-parent .introduction .content h1 span {
  color: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  background: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.home-parent .introduction .content p {
  padding-top: 30px;
  padding-left: 40px;
  width: 90%;
  text-align: justify;
}
.home-parent .introduction-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  z-index: 2;
}
.home-parent .introduction-image img {
  width: 90%;
  border-radius: 10px;
}
.home-parent .director {
  display: flex;
  justify-content: center;
  width: 100%;
}
.home-parent .director-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30%;
}
.home-parent .director-image img {
  border-radius: 50%;
  width: 280px;
}
.home-parent .director-image h3 {
  font-size: 16px;
  font-weight: 400;
}
.home-parent .director-message {
  width: 60%;
}
.home-parent .director-message p {
  padding: 10px;
  font-size: small;
  text-align: justify;
}
.home-parent .marquee {
  padding: 10px 0px;
  background-color: #171717;
  color: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  background: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
  margin: 50px 0px;
  border-radius: 0px;
}
.home-parent .carousel-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
  width: 100%;
}
.home-parent .carousel-container .carousel {
  width: 70%;
}
.home-parent .carousel-container .carousel .carousel-inner .carousel-item {
  border-radius: 10px;
  overflow: hidden;
}
.home-parent .carousel-container .carousel .carousel-inner .carousel-item img {
  border-radius: 10px;
  width: 800px;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.about .intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 90%;
  margin-top: 11vh;
}
.about .intro h1 {
  text-align: center;
  font-size: 30px;
}
.about .intro h1 span {
  color: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  background: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.about .intro p {
  text-align: justify;
  padding-top: 20px;
}
.about .vision-mission {
  display: flex;
  justify-content: space-between;
  width: 90%;
  flex-wrap: wrap;
}
.about .vision-mission .vision {
  margin-top: 40px;
  width: 45%;
  min-width: 300px;
  margin: 10px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.1), inset 0 -4px 6px rgba(255, 255, 255, 0.7);
  transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transition for box-shadow and transform */
}
.about .vision-mission .vision:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 -4px 6px rgba(255, 255, 255, 0.7); /* Outset shadow on hover */
}
.about .vision-mission .vision h2 {
  font-size: 25px;
  display: flex;
  color: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  background: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.about .vision-mission .vision h2 img {
  width: 30px;
  margin-right: 10px;
}
.about .vision-mission .vision p {
  text-align: justify;
  line-height: 1.8;
  letter-spacing: 1px;
}
.about .vision-mission .mission {
  margin-top: 40px;
  width: 45%;
  padding: 20px;
  margin: 10px;
  min-width: 300px;
  border-radius: 10px;
  box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.1), inset 0 -4px 6px rgba(255, 255, 255, 0.7);
}
.about .vision-mission .mission:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 -4px 6px rgba(255, 255, 255, 0.7); /* Outset shadow on hover */
}
.about .vision-mission .mission h2 {
  font-size: 25px;
  display: flex;
  color: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  background: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.about .vision-mission .mission h2 img {
  width: 30px;
  margin-right: 10px;
}
.about .vision-mission ul {
  text-align: justify;
  list-style: none;
}
.about .goals {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin-top: 40px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.1), inset 0 -4px 6px rgba(255, 255, 255, 0.7);
}
.about .goals:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 -4px 6px rgba(255, 255, 255, 0.7); /* Outset shadow on hover */
}
.about .goals h2 {
  font-size: 25px;
  display: flex;
  color: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  background: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.about .goals h2 img {
  width: 30px;
  margin-right: 10px;
}
.about .goals ul {
  list-style: none;
}
.about .goals ul li {
  padding-top: 10px;
}

.events {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  margin-top: 11vh;
}
.events .events-title {
  display: flex;
  flex-direction: column;
  width: 90%;
}
.events .events-title h3 {
  color: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  background: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.events .events-title p {
  text-align: justify;
}
.events .events-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 80%;
  margin: 30px 0px;
}
.events .events-container .event {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  overflow: hidden;
  width: 350px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0px 20px 20px 20px;
  border-radius: 10px;
  margin: 20px 0px;
  box-shadow: inset 0 6px 12px rgba(0, 0, 0, 0.2), inset 0 -6px 12px rgba(255, 255, 255, 0.9);
}
.events .events-container .event:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 -4px 6px rgba(255, 255, 255, 0.7);
}
.events .events-container .event .carousel {
  width: 350px;
}
.events .events-container .event .carousel .carousel-inner {
  width: 350px;
}
.events .events-container .event .carousel .carousel-inner .carousel-item {
  width: 360px;
}
.events .events-container .event .carousel .carousel-inner .carousel-item img {
  width: 360px;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom: 1px solid #171717;
}
.events .events-container .event-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 350px;
  padding: 10px 10px 0px 10px;
}
.events .events-container .event-content h3 {
  text-align: center;
  color: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  background: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 14px;
}
.events .events-container .event-content p {
  text-align: justify;
  font-size: 10px;
  padding: 0px 10px;
}

.gallery-parent {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 11vh;
}
.gallery-parent .gallery-frameX {
  position: absolute;
  width: 76%;
  height: 70%;
  border: 0.5px solid #171717;
}
.gallery-parent .gallery-frameY {
  position: absolute;
  width: 76%;
  height: 70%;
  border: 0.5px solid #171717;
  margin: 7px 7px 0px 0px;
}
.gallery-parent .gallery-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gallery-parent .gallery-intro h2 {
  color: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  background: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.gallery-parent .gallery {
  display: flex;
  justify-content: center;
  width: 80%;
  overflow: hidden;
  margin-bottom: 11vh;
}
.gallery-parent .gallery .carousel {
  width: 90%;
}
.gallery-parent .gallery .carousel .carousel-inner {
  width: 100%;
}
.gallery-parent .gallery .carousel .carousel-inner .carousel-item {
  width: 100%;
}
.gallery-parent .gallery .carousel .carousel-inner .carousel-item img {
  width: 100%;
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
}

.team {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 11vh 0px;
}
.team-inner {
  width: 80%;
}
.team-inner h1 {
  color: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  background: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.team-inner img {
  border-radius: 10px;
  width: 300px;
  height: 300px;
}
.team-inner p {
  text-align: justify;
  font-size: 14px;
  padding: 0px 10px;
}

.footer {
  background-color: #171717;
  color: #fff;
  padding: 40px 20px;
  font-family: "Poppins", sans-serif;
}
.footer .footer-container {
  max-width: 100%;
}
.footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer .footer-row .footer-column {
  flex: 0 1 30%;
  margin-bottom: 10px;
}
.footer .footer-row .footer-column h3 {
  color: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  background: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 15px;
  text-align: center;
}
.footer .footer-row .footer-column ul {
  list-style: none;
  padding: 0;
}
.footer .footer-row .footer-column ul li {
  margin-bottom: 10px;
  text-align: center;
}
.footer .footer-row .footer-column ul li span {
  color: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  background: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.footer .footer-row .footer-column a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer .footer-row .footer-column a:hover {
  color: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  background: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.footer .footer-row .social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.footer .footer-row .social-links a {
  font-size: 25px;
  transition: color 0.3s;
}
.footer .footer-row .social-links a:hover {
  color: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  background: linear-gradient(180deg, rgb(137, 54, 238) 0%, rgb(237, 114, 248) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.footer .footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #444;
  padding-top: 20px;
}
.footer .footer-bottom p {
  margin: 0;
}

@media screen and (max-width: 1000px) {
  .home-parent-hero h1 {
    font-size: 30px;
  }
  .home-parent-hero h2 {
    font-size: 22px;
  }
  .home-parent-hero p {
    font-size: 14px;
    padding-top: 20px;
  }
  .home-parent .introduction .content h1 {
    font-size: 20px;
  }
  .home-parent .introduction .content p {
    font-size: 12px;
  }
  .home-parent .director-message {
    display: flex;
    align-items: center;
  }
  .home-parent .director-message p {
    font-size: 10px;
  }
  .home-parent .marquee {
    font-size: 10px;
  }
  .about .intro h1 {
    font-size: 25px;
  }
  .about .intro p {
    font-size: 14px;
  }
  .about .vision-mission .vision h2 {
    display: flex;
    align-items: center;
    font-size: 20px;
  }
  .about .vision-mission .vision h2 img {
    width: 20px;
    height: 20px;
  }
  .about .vision-mission .vision p {
    font-size: 14px;
  }
  .about .vision-mission .vision ul {
    font-size: 14px;
  }
  .about .vision-mission .mission h2 {
    display: flex;
    align-items: center;
    font-size: 20px;
  }
  .about .vision-mission .mission h2 img {
    width: 20px;
    height: 20px;
  }
  .about .vision-mission .mission ul {
    font-size: 15.5px;
  }
  .about .goals {
    width: 90%;
  }
  .about .goals h2 {
    display: flex;
    align-items: center;
    font-size: 20px;
    padding-left: 20px;
  }
  .about .goals h2 img {
    width: 20px;
    height: 20px;
  }
  .about .goals ul {
    text-align: justify;
    font-size: 14px;
  }
  .events .events-title h3 {
    font-size: 25px;
  }
  .events .events-title p {
    font-size: 14px;
  }
  .gallery-parent .gallery-intro h2 {
    font-size: 25px;
  }
  .gallery-parent .gallery-intro p {
    font-size: 14px;
  }
  .gallery-parent .gallery .carousel {
    height: 600px;
  }
  .team-inner h1 {
    font-size: 25px;
  }
  .team-inner p {
    font-size: 14px;
  }
  .accordion-flush > .accordion-item > .accordion-header .accordion-button b,
  .accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed b {
    font-size: 12px;
  }
  .accordion .accordion-item .accordion-collapse .accordion-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .accordion .accordion-item .accordion-collapse .accordion-body img {
    width: 50%;
    height: auto;
  }
  .accordion .accordion-item .accordion-collapse .accordion-body p {
    font-size: 12px;
    padding: 30px 20px 10px 20px;
  }
  .footer .footer-row .footer-column h3 {
    font-size: 20px;
  }
  .footer .footer-row .footer-column ul {
    font-size: 14px;
  }
  .footer .footer-row .footer-column i {
    width: 20px;
    height: 20px;
  }
  .footer .footer-bottom p {
    font-size: 14px;
  }
}
@media screen and (max-width: 900px) {
  .home-parent-hero h1 {
    font-size: 20px;
  }
  .home-parent-hero h2 {
    font-size: 16px;
  }
  .home-parent-hero p {
    font-size: 12px;
    padding-top: 15px;
    width: 50%;
  }
  .home-parent-hero a button {
    width: 120px;
    height: 40px;
    font-size: 10px;
  }
  .home-parent .introduction-frame {
    height: 40%;
    top: 30%;
  }
  .home-parent .introduction .content h1 {
    font-size: 16px;
  }
  .home-parent .introduction .content p {
    font-size: 10px;
  }
  .home-parent .director-image img {
    width: 200px;
    height: 200px;
  }
  .home-parent .director-image h3 {
    font-size: 14px;
  }
  .home-parent .director-image sup {
    font-size: 10px;
  }
  .home-parent .director-image p {
    font-size: 9px;
  }
  .carousel-container .carousel .carousel-inner .carousel-item {
    height: 400px;
  }
  .home-parent .director-message {
    display: flex;
    align-items: center;
  }
  .home-parent .director-message p {
    font-size: 9px;
  }
  .home-parent .marquee {
    font-size: 10px;
  }
  .about .intro h1 {
    font-size: 20px;
  }
  .about .intro p {
    font-size: 12px;
  }
  .about .vision-mission .vision h2 {
    display: flex;
    align-items: center;
    font-size: 16px;
  }
  .about .vision-mission .vision h2 img {
    width: 16px;
    height: 16px;
  }
  .about .vision-mission .vision p {
    font-size: 10px;
  }
  .about .vision-mission .vision ul {
    font-size: 10px;
  }
  .about .vision-mission .mission h2 {
    display: flex;
    align-items: center;
    font-size: 16px;
  }
  .about .vision-mission .mission h2 img {
    width: 16px;
    height: 16px;
  }
  .about .vision-mission .mission p {
    font-size: 12px;
  }
  .about .vision-mission .mission ul {
    font-size: 10px;
  }
  .about .goals {
    width: 90%;
  }
  .about .goals h2 {
    display: flex;
    align-items: center;
    font-size: 16px;
    padding-left: 10px;
  }
  .about .goals h2 img {
    width: 16px;
    height: 16px;
  }
  .about .goals ul {
    text-align: justify;
    font-size: 10px;
  }
  .events .events-title h3 {
    font-size: 20px;
  }
  .events .events-title p {
    font-size: 12px;
  }
  .events .events-container {
    justify-content: center;
  }
  .events .events-container .event {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 300px;
    margin: 20px 10px;
  }
  .events .events-container .event .carousel {
    width: 300px;
  }
  .events .events-container .event .carousel .carousel-inner {
    width: 100%;
    width: 300px;
  }
  .events .events-container .event .carousel .carousel-inner .carousel-item {
    width: 100%;
    width: 300px;
  }
  .events .events-container .event .carousel .carousel-inner .carousel-item img {
    width: 300px;
    height: 170px;
  }
  .events .events-container .event-content {
    width: 300px;
    padding: 0px;
  }
  .events .events-container .event-content h3 {
    padding: 10px;
    font-size: 10px;
    width: 300px;
  }
  .events .events-container .event-content p {
    font-weight: 200;
    font-size: 8px;
    width: 100%;
    width: 300px;
  }
  .gallery-parent .gallery-intro h2 {
    font-size: 16px;
  }
  .gallery-parent .gallery-intro p {
    font-size: 12px;
  }
  .gallery-parent .gallery-frameX {
    height: 55%;
  }
  .gallery-parent .gallery-frameY {
    height: 55%;
  }
  .gallery-parent .gallery .carousel {
    height: 400px;
  }
  .gallery-parent .gallery .carousel .carousel-inner .carousel-item img {
    height: 400px;
  }
  .team-inner h1 {
    font-size: 16px;
  }
  .team-inner p {
    font-size: 12px;
  }
  .accordion-flush > .accordion-item > .accordion-header .accordion-button b,
  .accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed b {
    font-size: 10px;
  }
  .accordion .accordion-item .accordion-collapse .accordion-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .accordion .accordion-item .accordion-collapse .accordion-body img {
    width: 30%;
    height: auto;
  }
  .accordion .accordion-item .accordion-collapse .accordion-body p {
    font-size: 10px;
    padding: 30px 20px 10px 20px;
  }
  .footer .footer-row .footer-column h3 {
    font-size: 16px;
  }
  .footer .footer-row .footer-column ul {
    font-size: 12px;
  }
  .footer .footer-row .footer-column i {
    width: 16px;
    height: 16px;
  }
  .footer .footer-bottom p {
    font-size: 12px;
  }
}
@media screen and (max-width: 800px) {
  .appbar {
    justify-content: space-between;
  }
  .appbar a {
    margin-left: 20px;
  }
  .appbar .hamburger {
    margin-right: 20px;
    display: flex;
  }
  .appbar .navlinks-container {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .home-parent-hero p {
    width: 70%;
  }
  .home-parent .introduction .content h1 {
    font-size: 14px;
  }
  .home-parent .introduction .content p {
    font-size: 8px;
  }
  .home-parent .carousel-container {
    display: none;
  }
  .about .intro {
    margin-top: 0px;
  }
  .home-parent .introduction {
    height: 40vh;
  }
  .about .vision-mission {
    justify-content: center;
  }
  .about .goals {
    width: 300px;
  }
}
@media screen and (max-width: 650px) {
  .home-parent .introduction-frame {
    width: 60%;
    height: 50%;
    left: 20%;
    right: 20%;
  }
  .home-parent .introduction {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }
  .home-parent .introduction h1 {
    margin-top: 30px;
    font-size: 14px;
    padding: 5px !important;
  }
  .home-parent .introduction p {
    margin-top: 10px;
    font-size: 8px;
    padding: 5px !important;
    margin: 0px;
  }
  .home-parent .director {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home-parent .director-image sup {
    font-size: 10px;
    width: -moz-max-content;
    width: max-content;
  }
  .home-parent .carousel-container {
    display: none;
  }
  .about .intro {
    margin-top: 0px;
  }
  .home-parent .introduction {
    height: 40vh;
  }
}
@media screen and (max-width: 600px) {
  .home-parent .introduction-image {
    width: 90%;
  }
  .home-parent .introduction .content {
    width: 90%;
  }
  .home-parent-hero {
    text-align: center;
  }
  .home-parent-hero p {
    width: 90%;
  }
  .home-parent .director-image {
    width: 90%;
  }
  .home-parent .director-message {
    width: 90%;
  }
  .home-parent .introduction-frame {
    display: none;
  }
  .gallery-parent .gallery .carousel .carousel-inner {
    height: 350px;
  }
  .gallery-parent .gallery-frameY {
    top: 19.5%;
    height: 250px;
  }
  .gallery-parent .gallery-frameX {
    top: 20%;
    height: 250px;
  }
  .events .events-container {
    width: 98%;
  }
  .events {
    margin-top: 10px;
  }
  .event {
    width: 100%;
  }
  .gallery-parent {
    margin-top: 10px;
  }
  .team {
    margin-top: 10px;
  }
}/*# sourceMappingURL=index.css.map */