.hackathon {
  background-image: url(../img/hackathon-bg-min.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 30%;
  background-attachment: fixed;
  overflow: hidden;
}

.opening-page-view {
  min-height: 100vh;
  padding-top: 10vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.spidey-swing-image {
  flex:1;
  overflow: hidden;
  transform: translatey(0px);
  animation: float 5s ease-in-out infinite;

  display: flex;
  align-items: center;
  justify-content: center;
}

.spidey-swing-image img
{
  width:100%;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-10px);
  }
  100% {
    transform: translatey(0px);
  }
}

.opening-content-view {
  flex:1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hackathon-heading {
  font-size: 75px;
}

.opening-info-container {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 20px;
  text-transform: none;
  text-align: left;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  padding-right: 15%; 
}

@media only screen and (max-width: 780px)
{
  .spidey-swing-image
  {
    display: none;
  }
  .opening-content-view
  {
    align-items: center;
  }
  .opening-info-container
  {
    text-align: center;
    padding-right:0;
    padding: 15px 7%;
  }
}

.problem-statements {
  margin: 100px 0;
  /* margin-top: 100px; */
}

.prob-stat-heading {
  font-size: 55px;
  text-align: center;
}

.prob-stat-main {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.statements {
  max-height: 68px;
  max-width: 1000px;
  margin: 10px 65px;

  position: relative;
  transition: height 0.5s;
  -webkit-transition: height 0.5s;
  text-align: center;
  overflow: hidden;
  transition: 1s;

  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 20px;

  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;

  background: linear-gradient(
    165.17deg,
    rgba(255, 255, 255, 0.45) -12.54%,
    rgba(255, 255, 255, 0.18) -12.53%,
    rgba(255, 255, 255, 0.045) 117.09%
  );
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(5px);
  border-radius: 8px;
}

.statements:hover {
  max-height: 400px;
  align-items: center;
}

.statements h1 {
    color: white;
  padding: 10px 0;
  font-family: "Poppins", sans-serif;
  font-weight:600;
  transition: all 1s ease-in-out;
}

.statements:hover h1 {
  color: red;
}

.statements div {
    color: white;
    padding: 30px;
    padding-top: 0; 
    text-align: justify;
}

.statements li
{
  padding-left: 10px;
  text-align: justify;
}

.code-of-conduct, .faq-hackathon{
  margin:100px 65px;
}

.faq-hackathon
{
  margin-bottom: 120px;
}

.code-of-conduct div
{
  max-width: 1000px;
  text-align: center;
  margin: auto;
  padding: 10px 20px;

  backdrop-filter: blur(4px);
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 20px;
}

.faq-hackathon .each-point
{
  display: flex;
  gap: 10px;
  align-items: center;
  
  max-width: 1000px;
  margin: 20px auto;
}

.faq-hackathon .each-point .spidey-pointer
{
  align-self:flex-start;
}

.faq-hackathon .each-point .qna
{
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 20px;
}

.faq-hackathon .each-point .ques
{
  font-weight: 500;
  transition: all 0.6s ease-in-out;
}
.faq-hackathon .each-point .ans
{
  max-height: 0;
  overflow: hidden;
  padding: 5px 7px;
  transition: all 0.6s ease-in-out;
}

.faq-hackathon .each-point .qna:hover .ques
{
  color: red;
}

.faq-hackathon .each-point .qna:hover .ans
{
  max-height: 300px;
}