/* Matrix effect */
html, body {
  /* background: black; */
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  /* background-image: url(./vecteezy_technology-background-video-4k-hd-resolution_22653051.gif); */
  background-image: url(./smallwall.jpg); 
 background-size:cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.events{
  color: white;
  font-size: 40px;
}

/* Web header image */
.web-header {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
#header{
  width: 100%;
  height: 120vh;
}
/* Container to allow scrolling */
.container {
  position: relative;
  z-index: 2; /* Ensure content appears above the canvas */
  overflow: hidden; /* Hide overflow to ensure the matrix effect stays within the container */
  height: auto;
  min-height: 100vh; /* Ensure it covers the full viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* This ensures that elements inside the container are stacked vertically */
}

/* Symposium styles */
header {
  width: 100%;
  text-align: center;
  color: white;
}

header h1 {
  margin: 0;
  font-size: 2em;
  color: #66fcf1;
}

header p {
  margin: 0;
  font-size: 1.5em;
  color: #c5c6c7;
}

#countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  margin-top: -8%; /* Adjust this value to push the countdown upwards */
  width: 100%;
}

.time-box {
  background-color: rgba(31, 40, 51, 0.8);
  margin: 0 10px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  width: 100px;
  text-align: center;
  font-family: 'Courier', monospace;
}

.time-box span {
  display: block;
  font-size: 3em;
  color: #66fcf1;
}

.time-box p {
  margin: 0;
  font-size: 1.2em;
  color: #c5c6c7;
  font-family: 'Courier', monospace;
}

/* Canvas styles */
canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

button {
  position: relative;
  padding: 10px 20px;
  border-radius: 7px;
  border: 1px solid rgb(77, 210, 255);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  background: transparent;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

button:hover {
  background: rgb(61, 226, 255);
  box-shadow: 0 0 30px 5px rgba(0, 224, 236, 0.815);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

button:hover::before {
  -webkit-animation: sh02 0.5s 0s linear;
  -moz-animation: sh02 0.5s 0s linear;
  animation: sh02 0.5s 0s linear;
}

button::before {
  content: '';
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 50px 30px #fff;
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

@keyframes sh02 {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

button:active {
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: box-shadow 0.2s ease-in;
  -moz-transition: box-shadow 0.2s ease-in;
  transition: box-shadow 0.2s ease-in;
}

/* Styles for the button */
#register-button {
  display: block;
  margin-top: -2%;
  padding: 15px 30px;
  font-size: 1.2em;
  color: #000000;
  background-color: #c5fcf9;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  width: 200px;
}

#register-button:hover {
  background-color: #cef3fc;
}
* {
  font-family: Nunito, sans-serif;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  line-height: 25px;
}

.responsive-container-block.bigContainer {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-right: 50px;
  padding-bottom: 10px;
  padding-left: 50px;
  
}

.text-blk.headingText {
  font-size: 23px;
  font-weight: 700;
  line-height: 28px;
  color: rgb(0, 135, 177);
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.allText {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  width: 50%;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.text-blk.subHeadingText {
  color: rgb(102, 102, 102);
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.text-blk.description {
  font-size: 18px;
  line-height: 28px;
  color: rgb(153, 153, 153);
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 40px;
  margin-left: 0px;
}

.explore {
  font-size: 18px;
  line-height: 28px;
  color: rgb(255, 255, 255);
  background-color: rgb(244, 152, 146);
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: outset;
  border-right-style: outset;
  border-bottom-style: outset;
  border-left-style: outset;
  border-top-color: rgb(244, 152, 146);
  border-right-color: rgb(244, 152, 146);
  border-bottom-color: rgb(244, 152, 146);
  border-left-color: rgb(244, 152, 146);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  box-shadow: rgba(244, 152, 146, 0.25) 0px 10px 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-top: 9px;
  padding-right: 45px;
  padding-bottom: 9px;
  padding-left: 45px;
}

.explore:hover {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 235, 234);
  color: rgb(244, 152, 146);
}

.responsive-container-block.Container {
  margin-top: 80px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
  justify-content: center;
  align-items: center;
  max-width: 1320px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.responsive-container-block.Container.bottomContainer {
  flex-direction: row;
  margin-top: 50px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
  box-shadow: 10px 10px 10px 10px white;
}

.allText.aboveText {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 40px;
}

.allText.bottomText {
  margin-top: 0px;
  margin-right: 10px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.mainVideo {
  width: 85%;
  height: 450px;
  margin-top: -30px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.videoContainer {
  width: 46%;
  height: 600px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 10px;
}

.mainVideo {
  z-index: 10;
}

.dotsImg {
  position: absolute;
  width: 80%;
  height: 600px;
  top: 0px;
  right: 0px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .responsive-container-block.Container {
    max-width: 850px;
  }

  .text-blk.description {
    font-size: 18px;
  }

  .allText {
    width: 40%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 20px;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .text-blk.subHeadingText {
    font-size: 30px;
  }

  .responsive-container-block.Container.bottomContainer {
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
  }

  .responsive-container-block.Container {
    max-width: 830px;
  }

  .allText.aboveText {
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 40px;
  }

  .allText.bottomText {
    margin-top: 30px;
    margin-right: 40px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .allText.bottomText {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
  }
  .allText.bottomText a{
    margin-right: 20%;
  }
  .responsive-container-block.Container.bottomContainer {
    flex-direction: column;
  }

  .text-blk.headingText {
    text-align: center;
    font-size: 22px;
    margin-right: 20%;
  }

  .text-blk.subHeadingText {
    text-align: center;
  }

  .text-blk.description {
    text-align: center;
    margin-right: 20%;
    width: 100%;
  }
b{
  font-size: 16px;
  text-align: center;
}
  .explore {
    font-size: 16px;
    line-height: 25px;
    padding: 8px 35px;
    display: block; /* Changed to block */
    text-decoration: none;
    margin: 10px 0; /* Add margin for spacing */
}

  #inc0s {
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
  }

  .dotsImg {
    width: 50%;
    left: 50%;
    transform: translateX(-50%);
  }

  .videoContainer {
    width: 100%;
    margin-left: 20%;
  }

  .mainVideo {
    width: 100%;
  }

  .allText.bottomText {
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 60px;
    margin-left: 0px;
  }

  .text-blk.description {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .text-blk.headingText {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .text-blk.subHeadingText {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .mainVideo {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }
}

@media (max-width: 768px) {
  .allText {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .responsive-container-block.Container {
    flex-direction: column;
    height: auto;
  }

  .text-blk.headingText {
    text-align: center;
  }

  .text-blk.subHeadingText {
    text-align: center;
    font-size: 28px;
    line-height: 38px;
  }

  .text-blk.description {
    text-align: center;
    font-size: 18px;
    line-height: 27px;
  }

  .allText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .allText.aboveText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.Container {
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
  }

  .responsive-container-block.Container.bottomContainer {
    margin-top: 50px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 10px;
  }

  .allText.bottomText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .allText.bottomText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 60px;
    margin-left: 0px;
  }

  .mainVideo {
    height: 400px;
  }

  .videoContainer {
    height: 550px;
  }

  .explore {
    font-size: 16px;
    line-height: 25px;
    padding: 8px 35px;
    display: block; /* Changed to block */
    text-decoration: none;
    margin: 10px 0; /* Add margin for spacing */
}

  .responsive-container-block.bigContainer {
    padding-top: 0px;
    padding-right: 50px;
    padding-bottom: 0px;
    padding-left: 50px;
  }
}

@media (max-width: 500px) {
  .responsive-container-block.Container {
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    width: 100%;
    max-width: 100%;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 25px;
    padding-bottom: 10px;
    padding-left: 25px;
  }

  .allText {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    width: 100%;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
  }
a{
  text-decoration: none;
}
  .explore {
    font-size: 16px;
    line-height: 25px;
    padding: 8px 35px;
    display: block; /* Changed to block */
    text-decoration: none;
    margin: 10px 0; /* Add margin for spacing */
}


  .dotsImg {
    width: 80%;
    height: 100%;
  }

  .mainVideo {
    height: 260px;
  }

  .videoContainer {
    height: 320px;
    width: 100%;

  }

  .responsive-container-block.Container.bottomContainer {
    padding: 0 0 0 0;
  }

  .text-blk.description {
    font-size: 16px;
    margin: 0 0 30px -90px;
    text-align: justify;
    width: 70%;
  }

  .text-blk.subHeadingText {
    font-size: 24px;
  }
}
.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}
.card {
width: 1220px;
height: 200px;
background-image: linear-gradient(163deg, #00fff2 0%, #00ffbf 100%);
border-radius: 20px;
transition: all .3s;
margin: 20px;
}

/* Typewriter font and white text color */
.card2 {
  color: white;
  font-family: 'Courier New', Courier, monospace;
  padding: 20px;
  background-color: rgb(0, 0, 0); /* Optional: Add a semi-transparent background */
  border-radius: 8px; /* Optional: Add rounded corners */
}

.card2:hover {
transform: scale(0.98);
border-radius: 20px;
}

.card:hover {
box-shadow: 0px 0px 30px 1px rgb(0, 255, 234);
}

/* New content container styles */
.content-container {
  position: relative;
  z-index: 2;
  background-color: black;
  padding: 20px;
  overflow-y: auto;
  height: auto;
  min-height: 100vh; /* Ensure it covers the full viewport height */
  width: 100%; /* Ensure it covers the full viewport width */
  box-sizing: border-box; /* Include padding in width and height calculations */
}

/* Adjust the body's overflow to enable scrolling */
body {
  overflow-y: auto;
  overflow-x: hidden;
}
/* Typewriter font and white text color */
.card2 {
    color: white;
    font-family: 'Courier New', Courier, monospace;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Optional: Add a semi-transparent background */
    border-radius: 8px; /* Optional: Add rounded corners */
}
@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@200&display=swap');

*{
scroll-behavior: smooth;
scrollbar-width: 100%;
}
.process-row {
font-family: 'Oxanium', cursive;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
justify-content: center;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: row;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
align-items: center;
}
.traineeship .activity {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 267px;
height: 260px;
margin: 15px 10px 10px;
background-color: #00484193;
-webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .1);
box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .1);
cursor: pointer;
-webkit-transition: .3s;
transition: .3s;
overflow: hidden;
position: relative; /* Ensure the pop animation works correctly */
}
.animate-from-bottom__0 {
-webkit-animation-name: from-left;
animation-name: from-left;
-webkit-animation-duration: .5s;
animation-duration: .5s;
}
.animate-from-bottom__1 {
-webkit-animation-name: from-left;
animation-name: from-left;
-webkit-animation-duration: .8s;
animation-duration: .8s;
}
.animate-from-bottom__2 {
-webkit-animation-name: from-left;
animation-name: from-left;
-webkit-animation-duration: 1s;
animation-duration: 1s;
}
.animate-from-bottom__3 {
-webkit-animation-name: from-left;
animation-name: from-left;
-webkit-animation-duration: 1.2s;
animation-duration: 1.2s
}
.animate-from-bottom__4 {
-webkit-animation-name: from-left;
animation-name: from-left;
-webkit-animation-duration: 1.2s;
animation-duration: 1.2s
}
.traineeship .activity .relative-block {
width: 100%;
min-height: 350px;
}
@keyframes pop {
0% {
transform: scale(1);
}
50% {
transform: scale(1.05); /* Increase size to 105% */
}
100% {
transform: scale(1); /* Return to original size */
}
}
@-webkit-keyframes from-left {
from {
-webkit-transform: translateY(50px);
transform: translateY(50px)
}

to {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
@keyframes from-left {
from {
-webkit-transform: translateY(50px);
transform: translateY(50px)
}

to {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
.relative-block {
position: relative;
}
.activity-icon {
position: absolute;
bottom: 0;
right: 0;
}
.activity-icon img {
width: 110%;
margin-right: 100%;
}
.traineeship .inactive {
padding: 20px;
}
.traineeship .inactive .title {
border-bottom: 3px solid #2af5e1;
padding-bottom: 14px;
width: -webkit-max-content;
width: -moz-max-content;
width: max-content;
color: #fff;
font-size: 1rem;
font-weight: bold;
line-height: 28px;
}
.traineeship .activity .active {
display: none;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
height: auto;
min-height: 100%;
padding: 25px 30px 50px;
}
.traineeship .activity .active .title {
color: #bbffff;
font-size: 22px;
font-weight: 600;
line-height: 32px;
}
.traineeship .activity .active .sub-title {
margin-top: 10px;
color:white;
font-size: 16px;
line-height: 28px;
text-align: left;
border: 1px solid white;
background-color: rgba(10, 10, 10, 0.687);
width: 300%;
}
.traineeship .activity .active .sub-title b{
margin-left: 10px;
font-family: "Poppins", sans-serif;
font-weight: bold;
}
.traineeship .activity .active .sub-title .text{
  margin-top: 20px;
  margin-left: 10px;
  font-family: "Poppins", sans-serif;
}
.traineeship .activity .active .ul {
margin-bottom: 45px;
margin-top: 10px;
}

.footer {
background-color: rgba(10, 10, 10, 0.687);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10%;
    height: 40%;
}
.footer div {
    width: 60%;
}
.footer h2 {
    margin-top: 0;
    font-size: 24px;
    font-family: "Poppins", sans-serif;
}
.footer p {
    margin: 10px 0;
    line-height: 1.5;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
}
.footer a {
    color: #00bfff;
    text-decoration: none;
}
.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.social-icons a {
    margin: 0 10px;
    color: white;
    font-size: 24px;
}
.social-icons a:hover {
    color: #00bfff;
}
.footer .contact-info {
    text-align: center;
    margin-top: 10px;
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
}
.line{
    color: white;
    width: 55%;
    margin-left:3%;
}

.traineeship .activity .active .li {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-left: 30px;
color: #ffffff;
font-size: 16px;
line-height: 26px;
}
.traineeship .activity .active .li:before {
position: absolute;
content: "\f00c";
color: #e2b921;
font-family: FontAwesome;
display: inline-block;
margin-left: -1.6em;
width: 22px;
}
.traineeship .activity:hover {
width: 80%;
background-color: #69c5d23b;
height: 300%;
-webkit-box-shadow: 0 10px 20px rgba(0.3, 0.3, 0.3, 0.3); /* New shadow on hover */
box-shadow: 0 10px 20px rgba(1, 1, 1, 1.3); /* New shadow on hover */
animation: pop 0.4s ease-in-out; /* Apply pop animation on hover */
}

.traineeship .activity:hover .inactive {
display: none;
}

.traineeship .activity:hover .active {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 340px;
}

@media only screen and (max-width: 400px) {
.process-row {
flex-direction: row;
}

.footer .contact-info{
  font-size: 20px;
  color:white;
  background-color: black;
  width: 100%;
  }
.footer .social-icons{
  margin-left: 16%;
}
body{
  background-image: url(./smallwall.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.traineeship .inactive .title{
font-size: 1rem;
font-family:"Poppins", sans-serif;;
}

.traineeship .activity {
width: 93%;
}
.traineeship .activity .active{
width: 93%;
}

.traineeship .activity .active .sub-title {
font-size: 1em;

}

.traineeship .activity .active .title {
font-size: 1.2rem;
font-weight: bold;
font-family:"Poppins", sans-serif;
}

.traineeship .activity .relative-block {
min-height: 100%;
}

.traineeship .activity:hover {
width: 98%;
margin-left:2px;
margin-right:10px;
}
.traineeship .activity .active .sub-title b{
font-family:"Poppins", sans-serif;
font-size: 20px;
justify-content:flex-end;
text-align: justify;
}
.traineeship .activity .active .sub-title .text{
  margin-top: 20px;
  margin-left: 2px;
}

.traineeship .activity {
display: flex;
width: 267px;
height: 260px;
margin: 15px 10px 10px;
background-color: #00484193;
box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .1);
cursor: pointer;
transition: .3s;
overflow: hidden;
position: relative; /* Ensure the pop animation works correctly */
}

/* Add glow effect on hover */
.traineeship .activity:hover {
width: 100%;
background-color: #ffffff3b;
height: 300%;
box-shadow: 0 0 20px rgba(0, 255, 255, 0.8); /* Glow effect */
animation: pop 0.4s ease-in-out; /* Apply pop animation on hover */
}

/* Existing styles for hover effect */
.traineeship .activity:hover .inactive {
display: none;
}

.traineeship .activity:hover .active {
display: block;
width: 100%;
}
.activity-icon img {
  width: 100%;
  float: left;
  }

}

@media only screen and (max-width: 800px){
  .process-row{
    flex-direction: column;
  }
.activity-icon img {
width: 100px;
float: inline-start;
}
.traineeship .activity .active .sub-title {
font-size: .7em;

}
.videoContainer img{
  margin-left: -15%;
  width: 90%;
}
#countdown {
display: flex;
justify-content: center;
align-items: center;
padding: 50px;
margin-top: 8%; /* Adjust this value to push the countdown upwards */
width: 10%;
}

#header{
background-image: url(smallwall.jpg);
}
.time-box {
background-color: rgba(31, 40, 51, 0.8);
padding: 2px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
width: 90px;
text-align: center;
font-family: 'Courier', monospace;
}

#register-button{
margin-top: 30%;
}
.time-box span {
display: block;
font-size: 3em;
color: #66fcf1;
}

.time-box p {
margin: 0;
font-size: 1.2em;
color: #c5c6c7;
font-family: 'Courier', monospace;
}
body{
  background-image: url(./smallwall.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.footer{
display: inline-block;
height: 60vh;
}
.footer .location{
width: 100%;
}
.footer .location h2{
text-align: center;
}
.footer .social{
width: 100%;
}
.footer .social-icons{
  margin-left: 16%;
}
.footer .social h2{
text-align: center;
}
.footer p {
margin-left: 10px;
line-height: 1.5;
font-family: "Poppins", sans-serif;
font-size: 20px;
}
.footer .contact-info{
font-size: 20px;
color:white;
background-color: black;
width: 100%;
}
.footer .line{
  width: 80%;
  margin-left: 10%;
}
.process-row {
  flex-direction: column;
  }
  
  .traineeship .inactive .title{
  font-size: 1rem;
  font-family:"Poppins", sans-serif;
  }
  
  .traineeship .activity {
  width: 93%;
  }
  .traineeship .activity .active{
  width: 93%;
  }
  
  .traineeship .activity .active .sub-title {
  font-size: 1em;
  
  }
  
  .traineeship .activity .active .title {
  font-size: 1.2rem;
  font-weight: bold;
  font-family:"Poppins", sans-serif;
  }
  
  .traineeship .activity .relative-block {
  min-height: 100%;
  }
  
  .traineeship .activity:hover {
  width: 100%;
  margin-left:-5%;
  margin-right:10px;
  }
  .traineeship .activity .active .sub-title b{
  font-family:"Poppins", sans-serif;
  font-size: 13px;
  justify-content:flex-end;
  text-align: justify;
  }
  .traineeship .activity .active .sub-title .text{
    margin-top: 20px;
    font-family:"Poppins", sans-serif;
    font-size: 13px;
    margin-left: 2px;
  }
  
  .traineeship .activity {
  display: flex;
  width: 267px;
  height: 260px;
  margin: 15px 10px 10px;
  background-color: #00484193;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .1);
  cursor: pointer;
  transition: .3s;
  overflow: hidden;
  position: relative; /* Ensure the pop animation works correctly */
  }
  
  /* Add glow effect on hover */
  .traineeship .activity:hover {
  width: 106%;
  background-color: #ffffff3b;
  height: 300%;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.8); /* Glow effect */
  animation: pop 0.4s ease-in-out; /* Apply pop animation on hover */
  }
  
  /* Existing styles for hover effect */
  .traineeship .activity:hover .inactive {
  display: none;
  }
  
  .traineeship .activity:hover .active {
  display: block;
  width: 100%;
  }
  
}
@font-face{
  font-family: 'rb';
  src:url('Avatar\ Airbender.ttf')
}

#header {
    position: relative;
    width: 100%;
    height: 120vh;
    overflow: hidden;
}
.container h2{
  font-size: 30px;
  margin-top: -30px;
}
#Matrix {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.container {
    position: relative;
    z-index: 1;
    color: white;
}