
/* hero-section */
.hero-video-text-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -99;
  height: 50vh;
  width: 100vw;
}

.hero-video-and-text video {
  height: 70%;
  width: 100%;
  object-fit: cover;
  background-repeat: no-repeat;
  opacity: 0.8;
}
.text {
  width: 50vw;
  height: 50vh;
}
.contest-hero {
  width:100vw;
  /* height:100vh; */
  margin-top: 50px;
  border-radius: 10px;
  display:flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  align-items: center;
}
.contest-text {
  color: red;
  position: relative;
  z-index: -1;
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
}
.contest-text p {
  color: rgb(62, 61, 61);
}
.contest-button a{
  width:fit-content;
  text-decoration: none;
  color:red;
  text-transform: uppercase;
  background-color: #fff;
  padding:10px 10px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  font-weight: 500;
  transition:color 0.4s ease-in-out;
  transition:background 0.4s ease-out;
}
.contest-button a:hover{
  color:#fff;
  background:grey;
}

/* contestents and judges section */
.contest-26{
  margin-top: 200px;
}
.contest-26 h1,
.videos-heading,
.videos-heading {
  background-color: #fff;
  padding: 10px;
  margin-bottom: -5px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.judges-container,
.contestant-container,
.participant-video {
  padding: 10px 10px;
  border: 0.1em solid rgba(128, 128, 128, 0.5);
  box-shadow: inset 10px 2px 10px rgba(255, 255, 255, 0.9);
  border-radius: 10px;
}
.judges-container,
.participant-video,
.contestant-container {
  border-bottom: none;
}
.contestant-container,
.participant-video,
.judges-container {
  border-top: none;
}
.judges-container h2,
.contestant-container h2 {
  color: rgb(77, 77, 77);
}

.judges,
.contestant,
.participant-video {
  /* background: rgba(255, 255, 255, 0.9); */
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  border-radius: 5px;
}
.judges a,
.contestant a {
  text-decoration: none;
  border: 0.1rem solid gray;
  padding: 2px 3px;
  margin-bottom: 10px;
  margin-right: 10px;
  max-width: fit-content;
  border-radius: 2px;
  background: transparent;
  box-shadow: inset 1px 1px 3px rgba(3, 3, 3, 0.4);
  transition: background 0.6s ease-in-out;
}
.judges a:hover,
.contestant a:hover {
  background: pink;
  color: #fff;
  box-shadow: inset -10px -10px -10px rgba(247, 245, 245, 0.4);
  border-radius: 5px;
  border: none;
  padding: 3px 4px;
  text-shadow: 2px 2px 5px rgba(1, 1, 1, 0.4);
}

.videos-heading {
  padding-top: 100px;
  padding-bottom: 20px;
  /* text-decoration: underline; */
  /* text-decoration-color: rgb(249, 224, 224); */
}
.videos-heading {
  padding-right: 5px;
  border: none;
  /* background: transparent; */
  box-shadow: 0 -19px 20px rgba(250, 250, 250, 0.9);
}

.participants-videos {
  /* background-color: rgb(253, 230, 234); */
  display: flex;
  flex-direction: column;
  /* width:500px; */
  gap:50px;
}
.participant-video {
  /* padding: 2px; */
  display: flex;
  gap:20px;
}

iframe {
  border-radius: 10px;
}
.participant-video h3 {
  background-color: rgb(66, 59, 250, 0.9);
  width: 100%;
  color: #fff;
  padding: 10px;
  text-shadow: 2px 2px 10px rgba(0, 45, 77, 0.5);
  border-top-right-radius: 50px;
  border-bottom-right-radius: 10px;
  /* box-shadow: 2px 2px 2px rgba(3, 3, 3, 0.4); */
}
.video-description {
  width: 100%;
  background-color: #fff;
  height: 50px;
  padding-left: 10px;
  padding-top: 10px;
  border-radius: 10px;
}
@media screen and (max-width:700px){
  .contest-hero{
    gap:20px;
  }
}