@font-face {
  font-family: "house_regular";
  src: url("/Fonts/house_m_d_font_by_ited-webfont.woff2") format("woff2"), url("/Fonts/house_m_d_font_by_ited-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

body,
html {
  overflow-x: hidden;
  margin: 0;
}

.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #000;
  stroke-width: 5.5;
  stroke-linecap: round;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img {
  width: 65px;
  padding: 5px;
}

.navbar {
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
}

.mobile-navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-navbar .hamburger-menu .ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.mobile-navbar .hamburger-menu .ham .top {
  stroke-dasharray: 40 160;
}
.mobile-navbar .hamburger-menu .ham .middle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}
.mobile-navbar .hamburger-menu .ham .bottom {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}
.mobile-navbar .hamburger-menu .ham.active .top {
  stroke-dashoffset: -64px;
}
.mobile-navbar .hamburger-menu .ham.active .middle {
  transform: rotate(90deg);
}
.mobile-navbar .hamburger-menu .ham.active .bottom {
  stroke-dashoffset: -64px;
}
.mobile-navbar .hamburger-menu .hamRotate.active {
  transform: rotate(45deg);
}
.mobile-navbar .hamburger-menu .hamRotate180.active {
  transform: rotate(180deg);
}

.mobile-nav-links {
  margin-top: 85px;
  width: 100%;
  height: 0;
  z-index: 1000;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: height 0.3s;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
.mobile-nav-links li {
  margin: 40px;
  border-bottom: 0.5px solid #ffffff;
  list-style-type: none;
  padding: 7px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.mobile-nav-links li:last-child {
  border: 1px white solid;
  border-radius: 10px;
  background-color: white;
}
.mobile-nav-links li:last-child a {
  color: black;
}
.mobile-nav-links li a {
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  color: rgb(255, 255, 255);
  font-size: xx-large;
}

.navbar {
  display: none;
}

@media screen and (min-width: 730px) {
  .mlogo {
    display: none;
  }
  .mobile-navbar {
    display: none;
  }
  .navbar {
    display: contents;
  }
  .logo img {
    width: 80px;
    padding: 5px;
  }
  .nav-con-width {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-con {
    border-radius: 10px;
    display: flex;
    align-self: center;
    justify-content: left;
    margin: 0 20px;
    position: relative;
    width: fit-content;
  }
  .nav-con a {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #000000, #ee357c 25%, #000000 75%);
    background-size: 200% 100%;
    background-position: -100%;
    transition: all 0.3s ease-in-out;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 2.8vw;
  }
  .nav-con a:before {
    display: block;
    content: "";
    width: 0;
    height: 3px;
    bottom: 5px;
    left: 0;
    bottom: -3px;
    z-index: 0;
    position: absolute;
    background: linear-gradient(to left, #000000, #ee357c 25%, #000000 75%);
    /* Make sure this contrasts well with the gradient */
    transition: all 0.3s ease-in-out;
  }
  .nav-con a:hover {
    background-position: 0%;
  }
  .nav-con a:hover:before {
    width: 100%;
  }
  .active {
    border-radius: 10px;
    display: flex;
    align-self: center;
    justify-content: left;
    margin: 0 20px;
    position: relative;
    width: fit-content;
  }
  .active a {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Updated gradient for a fancy transition */
    background-image: linear-gradient(to right, #000000, #3548ee 25%, #000000 75%);
    background-size: 200% 100%;
    background-position: 0%;
    transition: all 0.3s ease-in-out;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 2.8vw;
  }
  .active a:before {
    display: block;
    content: "";
    width: 100%;
    height: 3px;
    bottom: 5px;
    left: 0;
    bottom: -3px;
    z-index: 0;
    position: absolute;
    background: linear-gradient(to left, #000000, #3548ee 25%, #000000 75%);
    /* Make sure this contrasts well with the gradient */
    transition: all 0.3s ease-in-out;
  }
  .nav-links {
    list-style-type: none;
    padding-left: 20px;
  }
  .nav-links img {
    height: 35px;
  }
  .nav-links li {
    display: inline-block;
    margin-right: 20px;
  }
  .nav-links li a {
    font-size: 135%;
    display: block;
    text-decoration: none;
    color: black;
    font-weight: bold;
    border-radius: 10px;
  }
  .nav-links li a:hover {
    background-color: #ffffff;
  }
}
@media screen and (min-width: 1080px) {
  .nav-con a {
    font-size: 2rem;
  }
  .active a {
    font-size: 2rem;
  }
}
.fixed-bg {
  background-image: url(/images/bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.spacing {
  margin-top: 75px;
  margin-bottom: 75px;
}

.minor-spacing {
  padding-bottom: 20px;
}

.hero-intro {
  z-index: 50;
}

@media screen and (min-width: 720px) {
  .hero-img {
    padding: 0;
    margin-top: 110px;
  }
  .hero-intro {
    padding-top: 130px;
  }
}
html {
  scroll-behavior: smooth;
}

.footer {
  padding: 35px;
}

footer {
  margin-top: 10px;
  color: black;
  height: 300px;
  padding-bottom: 20px;
  position: relative;
  width: 100%;
  overflow: hidden;
}
footer h5 {
  padding: 20px;
  margin-top: 20px;
}
footer .goup {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .goup a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease 0.5s;
}
footer .goup a:hover {
  transform: scale(1.1);
}
footer .goup a img {
  width: 15%;
  mix-blend-mode: multiply;
}
footer .footer-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
footer .footer-text h5 {
  font-weight: 300;
  font-size: 1.5rem;
}
footer .news-letter .news-email {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .news-letter #email {
  width: 400px;
  opacity: 0.8;
  padding: 10px 15px;
  border: none;
  height: 50px;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  font-size: 16px;
  transition: ease 0.5s;
}
footer .news-letter #email:hover {
  transform: scale(1.1);
}
footer .news-letter #email::placeholder {
  color: #000000;
}
footer .news-letter input:focus {
  border: none;
  outline: none;
}
footer .news-letter #submit {
  padding: 10px 20px;
  background-color: #004494;
  color: white;
  border: none;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  height: 50px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  cursor: pointer;
  font-size: 16px;
  transition: ease 0.5s;
}
footer .news-letter #submit:hover {
  transform: scale(1.1);
}
footer .news-letter #submit:hover {
  background-color: #003366;
}
footer .partner {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .partner img {
  margin: 20px;
  width: 60px;
  transition: ease 0.5s;
  mix-blend-mode: multiply;
}
footer .partner img:hover {
  transform: scale(1.1);
}
footer .socials {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
footer .socials a img {
  margin: 10px;
  width: 80px;
  transition: ease 0.5s;
  mix-blend-mode: multiply;
}
footer .socials a img:hover {
  transform: scale(1.1);
}
footer .footer-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 198px;
  background: url("/images/wave.svg");
  background-size: 1600px 198;
}
footer .wave1 {
  animation: animate-wave-1 10s linear infinite;
  z-index: -1000;
  opacity: 1;
  animation-delay: 0s;
  bottom: 0;
}
footer .wave2 {
  animation: animate-wave-2 5s linear infinite;
  z-index: -999;
  opacity: 0.5;
  animation-delay: -5s;
  bottom: 10px;
}
footer .wave3 {
  animation: animate-wave-3 10s linear infinite;
  z-index: -998;
  opacity: 0.2;
  animation-delay: -2s;
  bottom: 15px;
}
footer .wave4 {
  animation: animate-wave-4 2s linear infinite;
  z-index: -997;
  opacity: 0.7;
  animation-delay: -5s;
  bottom: 20px;
}
@keyframes animate-wave-1 {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1600px;
  }
}
@keyframes animate-wave-2 {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1600px;
  }
}
@keyframes animate-wave-3 {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1600px;
  }
}
@keyframes animate-wave-4 {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1600px;
  }
}

@media screen and (min-width: 730px) {
  footer .footer-text h5 {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1080px) {
  .footer {
    padding: 0;
  }
  footer .goup {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  footer .goup a img {
    width: 80%;
  }
  footer .footer-text h5 {
    font-size: 2rem;
  }
}
.brain-3d {
  margin-top: 50px;
}

model-viewer {
  width: 100vw;
  height: 40vw;
}

.Hotspot {
  background: #fff;
  border-radius: 32px;
  border: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  cursor: pointer;
  height: 24px;
  padding: 8px;
  position: relative;
  transition: opacity 0.3s;
  width: 24px;
}

.Hotspot:not([data-visible]) {
  background: transparent;
  border: 4px solid #fff;
  box-shadow: none;
  height: 32px;
  pointer-events: none;
  width: 32px;
}

.Hotspot:focus {
  border: 4px solid rgb(0, 128, 200);
  height: 32px;
  outline: none;
  width: 32px;
}

.Hotspot > * {
  opacity: 1;
  transform: translateY(-50%);
}

.HotspotAnnotation {
  text-transform: uppercase;
  background-color: rgba(102, 102, 102, 0.3);
  background-image: linear-gradient(to bottom, rgba(248, 248, 248, 0.4), rgba(255, 255, 255, 0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 10px;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  left: calc(100% + 1em);
  max-width: 300px;
  overflow-wrap: break-word;
  padding: 0.5em 1em;
  position: absolute;
  top: 50%;
  width: max-content;
}
.HotspotAnnotation a {
  text-decoration: none;
  color: #ffffff;
}

.Hotspot:not([data-visible]) > * {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-50% + 4px));
  transition: transform 0.3s, opacity 0.3s;
}

.progress-bar {
  display: block;
  width: 33%;
  height: 10%;
  max-height: 2%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 25px;
  box-shadow: 0px 3px 10px 3px rgba(0, 0, 0, 0.5), 0px 0px 5px 1px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.9);
  background-color: rgba(0, 0, 0, 0.5);
}

.progress-bar.hide {
  visibility: hidden;
  transition: visibility 0.3s;
}

.update-bar {
  background-color: rgba(255, 255, 255, 0.9);
  width: 0%;
  height: 100%;
  border-radius: 25px;
  float: left;
  transition: width 0.3s;
}

#ar-button {
  background-image: url(ar_icon.png);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 12px 50%;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  bottom: 16px;
  padding: 0px 16px 0px 40px;
  font-family: Roboto Regular, Helvetica Neue, sans-serif;
  font-size: 14px;
  color: #4285f4;
  height: 36px;
  line-height: 36px;
  border-radius: 18px;
  border: 1px solid #DADCE0;
}

#ar-button:active {
  background-color: #E8EAED;
}

#ar-button:focus {
  outline: none;
}

#ar-button:focus-visible {
  outline: 1px solid #4285f4;
}

@keyframes circle {
  from {
    transform: translateX(-50%) rotate(0deg) translateX(50px) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg) translateX(50px) rotate(-360deg);
  }
}
@keyframes elongate {
  from {
    transform: translateX(100px);
  }
  to {
    transform: translateX(-100px);
  }
}
model-viewer > #ar-prompt {
  position: absolute;
  left: 50%;
  bottom: 60px;
  animation: elongate 2s infinite ease-in-out alternate;
  display: none;
}

model-viewer[ar-status=session-started] > #ar-prompt {
  display: block;
}

model-viewer > #ar-prompt > img {
  animation: circle 4s linear infinite;
}

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

.h5-hero {
  margin-top: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 4.5vw;
  font-weight: 400;
  margin-bottom: 25px;
}

.h2-hero {
  font-family: "Afacad", sans-serif;
  font-size: 8.5vw;
  margin-bottom: 25px;
}

.h5-head {
  font-family: "Afacad", sans-serif;
  font-size: 4.5vw;
  margin-bottom: 25px;
}

.h6-hero {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5vw;
  font-weight: 600;
  margin-bottom: 30px;
  margin-bottom: 20px;
}

.h4-fonts {
  font-family: "Afacad", sans-serif;
  font-size: 2rem;
  margin: 0;
}

.h5-fonts {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5vw;
  margin: 0;
}

.p-fonts {
  font-size: 3.5vw;
  font-family: "Montserrat", sans-serif;
  line-height: 2rem;
}

.a-nodec {
  text-decoration: none;
}

@media screen and (min-width: 730px) {
  .h5-hero {
    font-size: 1.5vw;
  }
  .h2-hero {
    font-size: 4vw;
  }
  .h5-head {
    font-size: 3.7vw;
  }
  .h6-hero {
    font-size: 2vw;
  }
  .p-fonts {
    font-size: 1.7vw;
    padding-bottom: 25px;
  }
  .h4-fonts {
    font-family: "Afacad", sans-serif;
    font-size: 3rem;
    margin: 0;
  }
  .h5-fonts {
    font-family: "Montserrat", sans-serif;
    font-size: 2.5vw;
    margin: 0;
  }
}
@media screen and (min-width: 1200px) {
  .h5-hero {
    font-size: 2vw;
  }
  .h2-hero {
    font-size: 4.5vw;
  }
  .h6-hero {
    font-size: 1.5vw;
  }
  .h5-head {
    font-size: 3.5vw;
  }
  .p-fonts {
    font-size: 1.4vw;
    line-height: 40px;
  }
}
body,
html {
  overflow-x: hidden;
  margin: 0;
}

#Home span {
  color: darkblue;
  font-weight: bold;
  text-transform: capitalize;
}

.hero-img {
  padding: 45px;
}

.welcome,
.mission {
  color: black;
}

.about {
  color: black;
}

@keyframes waveanimation {
  0% {
    transform: translateX(0) translateZ(0) scaleY(1);
  }
  50% {
    transform: translateX(-25%) translateZ(0) scaleY(0.55);
  }
  100% {
    transform: translateX(-50%) translateZ(0) scaleY(1);
  }
}
.wavecon {
  z-index: -200;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 200px;
  top: 0;
  margin: auto;
}

.waveWrapperInner {
  position: absolute;
  width: 100%;
  overflow: hidden;
  height: 100%;
  bottom: -1px;
  background-image: linear-gradient(to top, #91c1ff 20%, #ffffff 80%);
}

.bgTop {
  z-index: 15;
  opacity: 0.5;
}

.bgMiddle {
  z-index: 10;
  opacity: 0.75;
}

.bgBottom {
  z-index: 5;
}

.wave {
  position: absolute;
  left: 0;
  width: 200%;
  height: 100%;
  background-repeat: repeat no-repeat;
  background-position: 0 bottom;
  transform-origin: center bottom;
}

.waveTop {
  background-size: 50% 100px;
}

.wavemove .waveTop {
  animation: waveanimation 3s;
  -webkit-animation: waveanimation 3s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.waveMiddle {
  background-size: 50% 120px;
}

.wavemove .waveMiddle {
  animation: waveanimation 10s linear infinite;
}

.waveBottom {
  background-size: 50% 100px;
}

.wavemove .waveBottom {
  animation: waveanimation 15s linear infinite;
}

.steps-con {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.steps-con .steps {
  margin: 30px;
  filter: drop-shadow(10px 10px 10px rgb(173, 173, 173));
  font-weight: bold;
}
.steps-con .steps:nth-child(even) {
  display: none;
}
.steps-con .steps-line {
  padding-bottom: 25px;
}

@media screen and (min-width: 730px) {
  .steps-con .steps:nth-child(even) {
    display: contents;
  }
}
.gallery-img {
  width: 100%;
  object-fit: cover;
  margin: 10px;
  border-radius: 1em;
  aspect-ratio: 3/2;
}

.event-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  flex-direction: column;
}
.event-cards .card {
  width: 70%;
  aspect-ratio: 2/3;
  perspective: 1000px;
}
.event-cards .card-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
  transform-style: preserve-3d;
}
.event-cards .card:hover .card-inner {
  transform: rotateY(180deg);
}
.event-cards .card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.event-cards .front {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  box-shadow: 10px 10px 30px rgb(197, 195, 195);
}
.event-cards .front img {
  width: 100%;
}
.event-cards .back {
  background-color: #3498db;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: rotateY(180deg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
}
.event-cards h3 {
  font-weight: bold;
  font-size: 2em;
  margin-bottom: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.event-cards ul {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.5em;
  text-align: left;
}

@media screen and (min-width: 730px) {
  .event-cards {
    flex-direction: row;
  }
  .event-cards .card {
    width: 30%;
  }
}
.vid-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

#plyr-video {
  margin-top: 10%;
  width: 100%;
  border-radius: 20px;
  box-shadow: 40px 30px 1px rgba(133, 180, 250, 0.4);
  transition: box-shadow 0.3s ease;
}

#plyr-video:hover {
  box-shadow: 50px 40px 20px rgba(84, 152, 255, 0.2);
}

#support-con {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(/images/buttonbg.svg);
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 16/9;
}
#support-con #support {
  position: relative;
}
#support-con #support .supportbutton {
  position: relative;
}
#support-con #support .support-ele {
  margin: 10px;
  padding: 15px;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  color: black;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
  transition: 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  text-decoration: none;
}
#support-con #support .support-ele:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-115%, -169%);
  /* Center the element */
  text-wrap: nowrap;
  animation: move-up-down-1 3s infinite alternate ease-in-out;
}
#support-con #support .support-ele:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(11%, -50%);
  /* Center the element */
  animation: move-up-down-2 3s infinite alternate ease-in-out;
}
#support-con #support .support-ele:nth-child(3) {
  top: 50%;
  left: 50%;
  transform: translate(-95%, 110%);
  animation: move-up-down-3 3s infinite alternate ease-in-out;
}
#support-con #support .support-ele:hover {
  background-color: rgba(14, 66, 134, 0.8);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(10px);
  padding: 14px;
}
@keyframes move-up-down-1 {
  0%, 100% {
    transform: translate(-120%, -150%);
  }
  50% {
    transform: translate(-115%, -169%);
  }
}
@keyframes move-up-down-2 {
  0%, 100% {
    transform: translate(11%, -70%);
  }
  50% {
    transform: translate(11%, -50%);
  }
}
@keyframes move-up-down-3 {
  0%, 100% {
    transform: translate(-80%, 110%);
  }
  50% {
    transform: translate(-95%, 110%);
  }
}

@media screen and (min-width: 730px) {
  #support-con {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/images/buttonbg.svg);
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: unset;
  }
  #support-con #support {
    aspect-ratio: 16/9;
  }
}
#founders h5 {
  margin-top: 30px;
  margin-bottom: 30px;
  color: black;
  margin-bottom: 10px;
}
#founders .founder-con-mob {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#founders .founder-con-mob .founder-div {
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
  width: 80%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}
#founders .founder-con-mob .founder-div p,
#founders .founder-con-mob .founder-div h5 {
  color: black;
  font-size: 5vw;
  text-align: center;
  line-height: 50px;
}
#founders .founder-con-mob .founder-div .founder-name {
  display: flex;
  align-items: center;
  justify-content: center;
}
#founders .founder-con-mob .founder-div .founder-name img {
  border-radius: 50px;
  width: 100%;
}
#founders .founder-con-mob .founder-div .founder-name h5 {
  text-align: right;
  writing-mode: vertical-rl;
}

@media screen and (min-width: 730px) {
  .founders-con {
    margin: 0;
    width: 100vw;
    height: 100vh;
  }
  .founders-con .accordion {
    display: flex;
    width: 80%;
    height: 80%;
    margin: 0;
    padding: 0;
  }
  .founders-con .accordion .accordion__item {
    position: relative;
    flex-grow: 1;
    width: 100px;
    height: 100%;
    transition: flex-grow 300ms ease;
    overflow: hidden;
  }
  .founders-con .accordion .accordion__item .accordion__image {
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
  }
  .founders-con .accordion .accordion__item .accordion__title {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    position: absolute;
    bottom: 0.5em;
    right: 0.5em;
    writing-mode: vertical-rl;
    color: #000000;
    font-size: clamp(1em, 3vw - 0.5em, 3em);
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  .founders-con .accordion .accordion__item .accordion__title::after {
    content: "+";
    margin-top: 0.3em;
  }
  .founders-con .accordion .accordion__item .accordion__description {
    position: absolute;
    width: 60%;
    left: 1em;
    bottom: 1em;
    color: #fbfbfb;
    transform: translateY(200px);
    opacity: 0;
    transition: all 0.3s ease-out;
    transition-property: opacity, transform;
    font-size: clamp(1em, 1.8vw - 0.5em, 3em);
    line-height: 2rem;
  }
  .founders-con .accordion .accordion__item .accordion__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 0.4s ease-out;
  }
  .founders-con .accordion .accordion__item:hover {
    flex-grow: 2;
  }
  .founders-con .accordion .accordion__item:hover .accordion__overlay {
    opacity: 0.5;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0), #111111), linear-gradient(180deg, rgba(15, 15, 15, 0), #111111);
    backdrop-filter: blur(5px);
  }
  .founders-con .accordion .accordion__item:hover .accordion__title::after {
    content: none;
  }
  .founders-con .accordion .accordion__item:hover .accordion__description {
    transform: translateY(0);
    opacity: 1;
  }
  .founders-con .accordion .accordion__item:hover .accordion__image {
    transform: scale(1.1) translate(0, 150px);
  }
}
.media_images {
  display: flex;
  list-style-type: none;
  align-items: flex-end;
  flex-wrap: wrap;
  width: 1000px;
}

.media_image li {
  width: 100px;
}

.media_images li img {
  width: 100px;
  margin: 10px;
}

.hidden {
  display: none;
}

.selected {
  border: solid rgb(40, 40, 92) 2px;
}

.cms_nav {
  padding-bottom: 20px;
}

.cms_nav h1 {
  margin: 10px;
}

.cms_nav ul {
  list-style: none;
  align-self: center;
  padding: 0;
}

.cms_nav ul li {
  display: inline;
  margin: 10px;
}

.news_form {
  margin-left: 20px;
}

.delete_image {
  width: 500px;
  margin-top: 20px;
}

.delete_prompt {
  display: flex;
}

.delete_prompt a {
  margin-right: 20px;
}

.item_list {
  list-style-type: none;
  padding-bottom: 20px;
}

.item_list li {
  list-style-type: none;
  margin-top: 5px;
}

.item_list li a {
  margin-right: 10px;
}

.delete_item {
  display: flex;
}

.delete_item a {
  margin-right: 10px;
}

.cms_form input[name=title] {
  width: 500px;
}

.cms_form textarea {
  font-family: Arial, Helvetica, sans-serif;
  resize: none;
}

.contact_info {
  font-family: Arial, Helvetica, sans-serif;
  list-style-type: none;
}

.contact_info li {
  font-family: Arial, Helvetica, sans-serif;
  list-style-type: none;
  margin-top: 40px;
  padding: 10px;
}

#volunteer_skills {
  font-size: 14px;
  font-weight: bold;
}

.contact_info li:nth-of-type(even) {
  background-color: #eaeaea;
}

.edu-fixed-bg-psy {
  background-image: url(/images/psy.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.edu-fixed-bg-bipd {
  background-image: url(/images/bipd.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.edu-fixed-bg-scg {
  background-image: url(/images/scz.svg);
  background-repeat: no-repeat;
  background-position: center;
}

#edu-hero {
  background-color: #ffffff;
  color: black;
}
#edu-hero .hero {
  padding-top: 70px;
  font-weight: 400;
  margin-bottom: 30px;
}
#edu-hero h4 {
  margin-bottom: 100px;
}
#edu-hero h5 {
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: 15px;
}
#edu-hero p {
  margin-top: 5px;
  margin-bottom: 200px;
}

.edu-disorder {
  background-color: #ffffff;
  color: black;
}

@media screen and (min-width: 730px) {
  #edu-hero .hero {
    font-weight: 400;
    margin-bottom: 30px;
  }
  .edu-disorder {
    display: none;
  }
  .edu-disorder img {
    filter: drop-shadow(10px 10px 20px rgb(219, 219, 219));
  }
  .edu-disorder {
    margin-bottom: 90px;
  }
  .edu-disorder .edu-disorder-img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.edu-common {
  color: black;
  background-color: #ffffff;
  padding-bottom: 20px;
}
.edu-common h5 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 300;
}
.edu-common .activity {
  overflow: hidden;
}
.edu-common .activity h6 {
  font-size: 3rem;
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: 400;
}
.edu-common .activity p {
  margin-top: 0;
}

#books {
  background-color: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}

.righthand-well {
  padding-right: 20px;
  border-right: 1px solid black;
}

.lefthand-well {
  padding-left: 20px;
  border-left: 1px solid black;
}

#podcast {
  padding-top: 30px;
  padding-bottom: 30px;
}

.act-name-list {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  margin-top: 50px;
}
.act-name-list .act-names {
  width: 17vw;
  aspect-ratio: 1/1.6;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  border-radius: 25px;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  box-shadow: 5px 0px 20px rgba(136, 136, 136, 0.5);
}
.act-name-list .act-names .book-name {
  width: 80%;
  height: 15%;
  background-color: rgb(255, 255, 255);
  filter: drop-shadow(10px 10px 20px rgb(105, 105, 105));
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease 0.5s;
  padding: 10px;
}
.act-name-list .act-names .book-name:hover {
  transform: scale(1);
}
.act-name-list .act-names .book-name:hover {
  border-radius: 20px;
  background-color: rgb(255, 255, 255);
  height: 40%;
  width: 100%;
  cursor: pointer;
}
.act-name-list .act-names .book-name a {
  color: black;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-align: left;
  font-size: 1.2vw;
  text-transform: uppercase;
}

.vid-list-con {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  margin-top: 50px;
}
.vid-list-con .pod-vid {
  border-radius: 10px;
  width: 18vw;
  aspect-ratio: 16/9;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vid-list-con .pod-vid img {
  width: 15%;
  opacity: 80%;
  transition: ease 0.3s;
}
.vid-list-con .pod-vid:hover {
  transition: ease 0.5s;
}
.vid-list-con .pod-vid:hover:hover {
  transform: scale(1.1);
}
.vid-list-con .pod-vid:hover img {
  filter: invert(100%);
  transform: scale(1.3);
}
.vid-list-con:hover {
  cursor: pointer;
}

#e-support {
  background-image: url(/images/sos.svg);
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
#e-support .supportbutton {
  position: relative;
}
#e-support .support-ele {
  margin: 10px;
  padding: 15px;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  color: black;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
  transition: 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  text-decoration: none;
  text-wrap: nowrap;
  border: rgba(150, 0, 0, 0.4392156863) 2px solid;
}
#e-support .support-ele:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-150%, -250%);
  /* Center the element */
  text-wrap: nowrap;
}
#e-support .support-ele:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-20%, -40%);
  /* Center the element */
}
#e-support .support-ele:nth-child(3) {
  top: 50%;
  left: 50%;
  transform: translate(-111%, 220%);
}
#e-support .support-ele:hover {
  background-color: rgba(150, 0, 0, 0.8);
  border: rgba(255, 255, 255, 0.4392156863) 2px solid;
  color: white;
  cursor: default;
  backdrop-filter: blur(10px);
  padding: 10px;
}

@media screen and (min-width: 730px) {
  #e-support .support-ele {
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 1080px) {
  #e-support .support-ele {
    font-size: 1.5rem;
  }
}
#update-hero {
  color: black;
}
#update-hero h4 {
  padding-top: 20px;
  padding-bottom: 20px;
}

#hero-current {
  margin-bottom: 40px;
  overflow: hidden;
}
#hero-current .current-box-con {
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero-current .current-box-con .current-box {
  width: 200px;
  height: 200px;
  margin: 10px;
}

#opinion {
  background-image: url("/images/update-hero-opinion.svg");
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}
#opinion::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100px;
  background: inherit;
  z-index: -1;
}

#opinion .jhon {
  padding: 50px;
}

#blog .blog-text-con {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
}
#blog .blog-con {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-evenly;
}
#blog .blog-con .blog-out-con {
  color: black;
  text-decoration: none;
  border: 1px black solid;
  border-radius: 1rem;
  width: 30%;
  aspect-ratio: 3/2;
}
#blog .blog-con .blog-out-con .blog-img-con {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 3/2;
}
#blog .blog-con .blog-out-con .blog-img-con img {
  width: 90%;
  border-radius: 1rem;
}
#blog .blog-con .blog-out-con .blog-name-con {
  padding: 10px;
}
#blog .blog-con .blog-out-con:hover {
  transition: ease 0.5s;
}
#blog .blog-con .blog-out-con:hover:hover {
  transform: scale(1.1);
}
#blog .blog-con .blog-out-con:not(:hover) {
  transition: ease 0.5s;
}
#blog .blog-con .blog-out-con:not(:hover):hover {
  transform: scale(1.1);
}

#testimonials {
  background-color: #ffffff;
}
#testimonials h5 {
  padding: 20px;
  color: black;
}
#testimonials .testim-con {
  aspect-ratio: 16/9;
  background-color: #ffffff;
  border-bottom-left-radius: 30px;
  margin: 30px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
}
#testimonials .testim-con .quat {
  padding: 30px;
}
#testimonials .testim-con .quat img {
  width: 75px;
}
#testimonials .testim-con p {
  padding: 40px;
  line-height: 4rem;
}
#testimonials .testim-con span {
  color: darkblue;
  font-weight: bold;
  text-transform: capitalize;
}

#volunteer-hero {
  color: black;
}
#volunteer-hero h5 {
  font-weight: 400;
}
#volunteer-hero h4 {
  padding-bottom: 50px;
}

#why-c {
  background-color: #ffffff;
  color: black;
}

.why-img-con {
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-img-con img {
  width: 50vw;
}

.why-text-con {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 20px;
}
.why-text-con p {
  overflow: hidden;
}

.Volunteer-but {
  background-color: #ffffff;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 300px;
  height: 70px;
  transition: ease 0.5s;
}
.Volunteer-but:hover {
  transform: scale(1.1);
}
.Volunteer-but:hover {
  background-color: #2d6ca2;
}

#join-us {
  margin-top: 30px;
  margin-bottom: 30px;
}
#join-us h5 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.form-container {
  box-sizing: border-box;
  background: #f6f5f7;
  margin: -20px 0 50px;
}
.form-container h1 {
  font-weight: bold;
  margin: 0;
}
.form-container h2 {
  text-align: center;
}
.form-container p {
  font-weight: 100;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin: 20px 0 30px;
}
.form-container a {
  color: #333;
  text-decoration: none;
  margin: 15px 0;
}
.form-container button {
  border-radius: 20px;
  border: 1px solid #1900ff;
  background-color: #0d09ff;
  color: #FFFFFF;
  font-weight: bold;
  padding: 12px 45px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 80ms ease-in;
}
.form-container button:hover {
  padding: 15px 50px;
}
.form-container button:active {
  transform: scale(0.95);
}
.form-container button:focus {
  outline: none;
}
.form-container button.ghost {
  background-color: transparent;
  border-color: #FFFFFF;
}
.form-container form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 50px;
  height: 100%;
  text-align: center;
}
.form-container input {
  background-color: #eee;
  border: none;
  padding: 12px 15px;
  margin: 8px 0;
  width: 100%;
}
.form-container .container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
  max-width: 100%;
  min-height: 480px;
}
.form-container .form-container {
  position: absolute;
  top: 0;
  height: 100%;
  transition: all 0.6s ease-in-out;
}
.form-container .sign-in-container {
  left: 0;
  width: 50%;
  z-index: 2;
}
.form-container .container.right-panel-active .sign-in-container {
  transform: translateX(100%);
}
.form-container .sign-up-container {
  left: 0;
  width: 50%;
  opacity: 0;
  z-index: 1;
}
.form-container .container.right-panel-active .sign-up-container {
  transform: translateX(100%);
  opacity: 1;
  z-index: 5;
  animation: show 0.6s;
}
@keyframes show {
  0%, 49.99% {
    opacity: 0;
    z-index: 1;
  }
  50%, 100% {
    opacity: 1;
    z-index: 5;
  }
}
.form-container .overlay-container {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: transform 0.6s ease-in-out;
  z-index: 100;
}
.form-container .container.right-panel-active .overlay-container {
  transform: translateX(-100%);
}
.form-container .overlay {
  background: #FF416C;
  background: -webkit-linear-gradient(to right, #0e46ff, #200b99);
  background: linear-gradient(to right, #0e46ff, #200b99);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  color: #FFFFFF;
  position: relative;
  left: -100%;
  height: 100%;
  width: 200%;
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
}
.form-container .container.right-panel-active .overlay {
  transform: translateX(50%);
}
.form-container .overlay-panel {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 40px;
  text-align: center;
  top: 0;
  height: 100%;
  width: 50%;
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
}
.form-container .overlay-left {
  transform: translateX(-20%);
}
.form-container .container.right-panel-active .overlay-left {
  transform: translateX(0);
}
.form-container .overlay-right {
  right: 0;
  transform: translateX(0);
}
.form-container .container.right-panel-active .overlay-right {
  transform: translateX(20%);
}
.form-container .social-container {
  margin: 20px 0;
}
.form-container .social-container a {
  border: 1px solid #DDDDDD;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  height: 40px;
  width: 40px;
}
.form-container footer {
  background-color: #222;
  color: #fff;
  bottom: 0;
  position: fixed;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 999;
}
.form-container footer p {
  margin: 10px 0;
}
.form-container footer i {
  color: red;
}
.form-container footer a {
  color: #3c97bf;
  text-decoration: none;
}

#contact_us {
  padding-top: 20px;
}

.p-contact {
  color: #000000;
  margin-bottom: 30px;
}

#donate {
  background-color: #ffffff;
  font-family: "Montserrat", sans-serif;
  color: black;
}
#donate h5 {
  padding: 20px;
  font-weight: 600;
}
#donate .donate-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#donate .donate-form .form-group input[type=email],
#donate .donate-form .form-group input[type=tel] {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}
#donate .donate-form .donate .submit-btn {
  padding: 10px 20px;
  background-color: #ffffff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  transition: ease 0.5s;
}
#donate .donate-form .donate .submit-btn:hover {
  transform: scale(1.1);
}
#donate .donate-form .donate .submit-btn:hover {
  background-color: #ffffff;
}

@media screen and (min-width: 730px) {
  .why-img-con img {
    width: auto;
    height: 50vh;
    margin: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .why-img-con img {
    height: 70vh;
  }
}

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