.AcademicCouncilSection {
  height: 230vh;
}

.AcademicCouncilSectionMain {
  background: var(--background-primary, #8276F4);

  padding: 3rem 0;
  border-radius: 2rem;

  height: 100vh;

  position: sticky;
  top: 0;
}

.SectionHeading_AcademicCouncil {
  color: var(--text-black, #000);
  text-align: center;

  /* Web/Subtitle bold */
  font-family: var(--Font-Family-Display-style---Web, Inter);
  font-size: 3rem;
  font-style: normal;
  font-weight: 800;
  line-height: 110%;
  /* 2.75rem */
  letter-spacing: var(--Letter-spacing---Display-Web-Letter-spacing-Subtitle,
      -0.0875rem);

  margin-bottom: 6.3rem;
}

.VideoOFSecond {
  width: 68vw;
  margin: 0 auto;
}

.AcademicCouncil_VideoSection {
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 65vh; */

  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
}

.AcademicCouncil_VideoSection iframe {
  width: 100%;
  height: 120%;
  object-fit: cover;
  border: none;
  border-radius: 1.25rem;
}

.OnVideoText {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  border-radius: 1.25rem;
  border: 2px solid rgba(176, 164, 164, 0.4);
  background: linear-gradient(115deg,
      rgba(176, 164, 164, 0.4) 2.89%,
      rgba(0, 0, 0, 0.4) 95.31%);
  backdrop-filter: blur(45px);

  display: inline-flex;
  padding: 1.25rem 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
}

.OnVideoText_Heading {
  color: var(--text-white, #fff);
  text-align: center;

  font-family: var(--Font-Family-Display-style---Web, Inter);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  /* 1.65rem */
  letter-spacing: -0.03125rem;
}

.OnVideoText_Para {
  color: var(--text-white, #fff);
  text-align: center;

  /* Web/Footnote */
  font-family: var(--Font-Family-Display-style---Web, Inter);
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 1.21875rem */
  letter-spacing: var(--Letter-spacing---Display-Web-Letter-spacing-Body,
      -0.02813rem);
}

.PlayPauseVid_Sec2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  aspect-ratio: 1;
  border-radius: var(--Radius-Radius---LG, 2.5rem);
  background: var(--Shape-1,
      linear-gradient(115deg,
        rgba(176, 164, 164, 0.4) 2.89%,
        rgba(0, 0, 0, 0.4) 95.31%));
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: none;
  z-index: 2;
}

.AcademicCouncil_VideoSection:hover .PlayPauseVid_Sec2 {
  display: flex;
}

.OnVideoTextInMobile {
  display: none;
}

/* =================================== Responsiveness ======================== */

@media screen and (width <=700px) {
  .AcademicCouncilSectionMain {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    flex-direction: column;
  }

  .VideoOFSecond {

    width: 90vw;

    margin: 0 auto;

    position: relative;
  }

  .AcademicCouncil_VideoSection {
    display: flex;
    align-items: center;
    justify-content: center;
    height: max-content;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 5 / 3.5;
    margin: 0 auto;
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
  }



  .SectionHeading_AcademicCouncil {
    font-size: 2rem;
    max-width: 80%;
    /* margin: 4rem auto; */
    margin-bottom: 3rem;
    text-align: center;
  }

  .OnVideoText {
    display: none;
  }

  .OnVideoTextInMobile {
    display: block;
  }

  .AcademicCouncilSection {
    height: 100vh;
  }

  .OnVideoText_Heading {
    color: var(--text-white, #000000);
    text-align: center;

    font-family: var(--Font-Family-Display-style---Web, Inter);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    /* 1.65rem */
    letter-spacing: -0.03125rem;

    margin: 3rem 0 1rem;
  }

  .OnVideoText_Para {
    color: var(--text-white, #000000);
    text-align: center;

    /* Web/Footnote */
    font-family: var(--Font-Family-Display-style---Web, Inter);
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 1.21875rem */
    letter-spacing: var(--Letter-spacing---Display-Web-Letter-spacing-Body,
        -0.02813rem);
  }

  .AcademicCouncilSectionMain {
    border-radius: 0;
  }

  .PlayPauseVid_Sec2 {
    width: 3rem;
    z-index: 9999999 !important;
  }

  .PlayPauseVid_Sec2 img {
    width: 1.3rem;
  }

  .AcademicCouncil_VideoSection .PlayPauseVid_Sec2 {
    display: flex !important;
    cursor: pointer;
  }

  .hidden {
    display: none;
  }
}