/* Primary color: 29007A */

.blue-text {
  color: #29007a;
}

/* About section begins */
.about-section {
  flex-direction: row;
}

.about-head {
  font-size: 48px;
  font-weight: 600;
  color: #29007a;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: left;
}

.about-text {
  font-size: 16px;
  color: #000;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
}

.register-btn {
  background-color: #29007a;
  color: #fff;
  border: none;
  padding: 10px 40px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
  border-radius: 0;
  transition: color 0.3s ease-in-out;
}

.register-btn:hover {
  background-color: #380996;
  color: #fff;
}

.about-img {
  padding: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .about-section {
    flex-direction: column-reverse;
  }

  .about-head {
    font-size: 36px;
  }
}

/* About section ends */

/* Prizes section begins */

.prizes-section {
  padding: 5px;
  max-width: 1150px;
}

.prize {
  font-size: 28px;
}

/* Prizes section ends */

/* Guests section begins */

.guests-section {
  padding: 5px;
  max-width: 1150px;
}

.guest-head {
  font-size: 48px;
  font-weight: 600;
  color: #29007a;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  text-transform: uppercase;
}

.guest-item {
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  border-top-right-radius: 40px;
  padding-top: 10px;
  border-bottom-left-radius: 40px;
  margin-top: 15px;
}

.guest-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  margin-bottom: 10px;
}

.guest-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.guest-img > img:hover {
  transform: scale(1.05);
}

.guest-name {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #29007a;
  text-align: center;
  margin-bottom: 5px;
}

.guest-role {
  font-size: 16px;
  color: #200358;
  text-align: center;
  margin-top: -10px;
  padding: 0;
}

/* Guests section ends */

/* Opportunity Section begins */
.opp-section {
  padding: 5px;
  max-width: 1150px;
}

.opp-img {
  max-width: 500px;
  height: 400px;
  z-index: 1;
}

.opp-text {
  background-color: #ececec;
  flex: 1;
  height: 228px;
  margin-top: -12px;
  margin-left: -10px;
  padding: 10px 20px;
}

.opp-title {
  font-size: 38px;
  font-weight: 600;
  color: #29007a;
  text-align: center;
  margin-bottom: 15px;
}

.opp-desc {
  font-size: 16px;
}

@media screen and (max-width: 510px) {
  .opp-title {
    font-size: 30px;
  }

  .opp-desc {
    font-size: 14px;
  }

  .opp-text {
    height: auto;
  }
}

@media screen and (max-width: 990px) {
  .opp-img {
    display: none;
  }

  .opp-desc {
    text-align: center;
  }
}

/* Opportunity section ends */

/* Organizers section begins */

.org-section {
  padding: 5px;
  max-width: 1150px;
}

.org-head {
  font-size: 48px;
  font-weight: 600;
  color: #29007a;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  text-transform: uppercase;
}

.org-item {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.org-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 10px;
  margin-right: 10px;
}

.org-name {
  font-size: 20px;
  font-weight: 500;
  color: #29007a;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Organizers section ends */

/*Schedule section starts*/
.schedule-head {
  font-size: 48px;
  font-weight: 600;
  color: #29007a;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  text-transform: uppercase;
}
.schedule_wrapper {
  margin-top: 3rem;
}

.list-timeline {
  margin: 0;
  padding: 5px 0;
  position: relative;
}

.list-timeline:before {
  width: 1px;
  background: #ccc;
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  height: 100%;
  content: "";
}

.list-timeline .list-timeline-item {
  margin: 0;
  padding: 0;
  padding-left: 24px !important;
  position: relative;
}

.list-timeline .list-timeline-item:before {
  width: 12px;
  height: 12px;
  background: #fff;
  border: 2px solid #ccc;
  position: absolute;
  left: 0;
  top: 4px;
  content: "";
  border-radius: 100%;
  -webkit-transition: all 0.3 ease-in-out;
  transition: all 0.3 ease-in-out;
}

.list-timeline .list-timeline-item[data-toggle="collapse"] {
  cursor: pointer;
}

.list-timeline .list-timeline-item.active:before,
.list-timeline .list-timeline-item.show:before {
  background: #ccc;
}

.list-timeline.list-timeline-light .list-timeline-item.active:before,
.list-timeline.list-timeline-light .list-timeline-item.show:before,
.list-timeline.list-timeline-light:before {
  background: #f8f9fa;
}

.list-timeline .list-timeline-item.list-timeline-item-marker-middle:before {
  top: 50%;
  margin-top: -6px;
}

.list-timeline.list-timeline-light .list-timeline-item:before {
  border-color: #f8f9fa;
}

.list-timeline.list-timeline-grey .list-timeline-item.active:before,
.list-timeline.list-timeline-grey .list-timeline-item.show:before,
.list-timeline.list-timeline-grey:before {
  background: #e9ecef;
}

.list-timeline.list-timeline-grey .list-timeline-item:before {
  border-color: #e9ecef;
}

.list-timeline.list-timeline-grey-dark .list-timeline-item.active:before,
.list-timeline.list-timeline-grey-dark .list-timeline-item.show:before,
.list-timeline.list-timeline-grey-dark:before {
  background: #495057;
}

.list-timeline.list-timeline-grey-dark .list-timeline-item:before {
  border-color: #495057;
}

.list-timeline.list-timeline-primary .list-timeline-item.active:before,
.list-timeline.list-timeline-primary .list-timeline-item.show:before,
.list-timeline.list-timeline-primary:before {
  background: #55a79a;
}

.list-timeline.list-timeline-primary .list-timeline-item:before {
  border-color: #55a79a;
}

.list-timeline.list-timeline-primary-dark .list-timeline-item.active:before,
.list-timeline.list-timeline-primary-dark .list-timeline-item.show:before,
.list-timeline.list-timeline-primary-dark:before {
  background: #33635c;
}

.list-timeline.list-timeline-primary-dark .list-timeline-item:before {
  border-color: #33635c;
}

.list-timeline.list-timeline-primary-faded .list-timeline-item.active:before,
.list-timeline.list-timeline-primary-faded .list-timeline-item.show:before,
.list-timeline.list-timeline-primary-faded:before {
  background: rgba(85, 167, 154, 0.3);
}

.list-timeline.list-timeline-primary-faded .list-timeline-item:before {
  border-color: rgba(85, 167, 154, 0.3);
}

.list-timeline.list-timeline-info .list-timeline-item.active:before,
.list-timeline.list-timeline-info .list-timeline-item.show:before,
.list-timeline.list-timeline-info:before {
  background: #17a2b8;
}

.list-timeline.list-timeline-info .list-timeline-item:before {
  border-color: #17a2b8;
}

.list-timeline.list-timeline-success .list-timeline-item.active:before,
.list-timeline.list-timeline-success .list-timeline-item.show:before,
.list-timeline.list-timeline-success:before {
  background: #28a745;
}

.list-timeline.list-timeline-success .list-timeline-item:before {
  border-color: #28a745;
}

.list-timeline.list-timeline-warning .list-timeline-item.active:before,
.list-timeline.list-timeline-warning .list-timeline-item.show:before,
.list-timeline.list-timeline-warning:before {
  background: #ffc107;
}

.list-timeline.list-timeline-warning .list-timeline-item:before {
  border-color: #ffc107;
}

.list-timeline.list-timeline-danger .list-timeline-item.active:before,
.list-timeline.list-timeline-danger .list-timeline-item.show:before,
.list-timeline.list-timeline-danger:before {
  background: #dc3545;
}

.list-timeline.list-timeline-danger .list-timeline-item:before {
  border-color: #dc3545;
}

.list-timeline.list-timeline-dark .list-timeline-item.active:before,
.list-timeline.list-timeline-dark .list-timeline-item.show:before,
.list-timeline.list-timeline-dark:before {
  background: #343a40;
}

.list-timeline.list-timeline-dark .list-timeline-item:before {
  border-color: #343a40;
}

.list-timeline.list-timeline-secondary .list-timeline-item.active:before,
.list-timeline.list-timeline-secondary .list-timeline-item.show:before,
.list-timeline.list-timeline-secondary:before {
  background: #6c757d;
}

.list-timeline.list-timeline-secondary .list-timeline-item:before {
  border-color: #6c757d;
}

.list-timeline.list-timeline-black .list-timeline-item.active:before,
.list-timeline.list-timeline-black .list-timeline-item.show:before,
.list-timeline.list-timeline-black:before {
  background: #000;
}

.list-timeline.list-timeline-black .list-timeline-item:before {
  border-color: #000;
}

.list-timeline.list-timeline-white .list-timeline-item.active:before,
.list-timeline.list-timeline-white .list-timeline-item.show:before,
.list-timeline.list-timeline-white:before {
  background: #fff;
}

.list-timeline.list-timeline-white .list-timeline-item:before {
  border-color: #fff;
}

.list-timeline.list-timeline-green .list-timeline-item.active:before,
.list-timeline.list-timeline-green .list-timeline-item.show:before,
.list-timeline.list-timeline-green:before {
  background: #55a79a;
}

.list-timeline.list-timeline-green .list-timeline-item:before {
  border-color: #55a79a;
}

.list-timeline.list-timeline-red .list-timeline-item.active:before,
.list-timeline.list-timeline-red .list-timeline-item.show:before,
.list-timeline.list-timeline-red:before {
  background: #be3e1d;
}

.list-timeline.list-timeline-red .list-timeline-item:before {
  border-color: #be3e1d;
}

.list-timeline.list-timeline-blue .list-timeline-item.active:before,
.list-timeline.list-timeline-blue .list-timeline-item.show:before,
.list-timeline.list-timeline-blue:before {
  background: #00adbb;
}

.list-timeline.list-timeline-blue .list-timeline-item:before {
  border-color: #00adbb;
}

.list-timeline.list-timeline-purple .list-timeline-item.active:before,
.list-timeline.list-timeline-purple .list-timeline-item.show:before,
.list-timeline.list-timeline-purple:before {
  background: #b771b0;
}

.list-timeline.list-timeline-purple .list-timeline-item:before {
  border-color: #b771b0;
}

.list-timeline.list-timeline-pink .list-timeline-item.active:before,
.list-timeline.list-timeline-pink .list-timeline-item.show:before,
.list-timeline.list-timeline-pink:before {
  background: #cc164d;
}

.list-timeline.list-timeline-pink .list-timeline-item:before {
  border-color: #cc164d;
}

.list-timeline.list-timeline-orange .list-timeline-item.active:before,
.list-timeline.list-timeline-orange .list-timeline-item.show:before,
.list-timeline.list-timeline-orange:before {
  background: #e67e22;
}

.list-timeline.list-timeline-orange .list-timeline-item:before {
  border-color: #e67e22;
}

.list-timeline.list-timeline-lime .list-timeline-item.active:before,
.list-timeline.list-timeline-lime .list-timeline-item.show:before,
.list-timeline.list-timeline-lime:before {
  background: #b1dc44;
}

.list-timeline.list-timeline-lime .list-timeline-item:before {
  border-color: #b1dc44;
}

.list-timeline.list-timeline-blue-dark .list-timeline-item.active:before,
.list-timeline.list-timeline-blue-dark .list-timeline-item.show:before,
.list-timeline.list-timeline-blue-dark:before {
  background: #34495e;
}

.list-timeline.list-timeline-blue-dark .list-timeline-item:before {
  border-color: #34495e;
}

.list-timeline.list-timeline-red-dark .list-timeline-item.active:before,
.list-timeline.list-timeline-red-dark .list-timeline-item.show:before,
.list-timeline.list-timeline-red-dark:before {
  background: #a10f2b;
}

.list-timeline.list-timeline-red-dark .list-timeline-item:before {
  border-color: #a10f2b;
}

.list-timeline.list-timeline-brown .list-timeline-item.active:before,
.list-timeline.list-timeline-brown .list-timeline-item.show:before,
.list-timeline.list-timeline-brown:before {
  background: #91633c;
}

.list-timeline.list-timeline-brown .list-timeline-item:before {
  border-color: #91633c;
}

.list-timeline.list-timeline-cyan-dark .list-timeline-item.active:before,
.list-timeline.list-timeline-cyan-dark .list-timeline-item.show:before,
.list-timeline.list-timeline-cyan-dark:before {
  background: #008b8b;
}

.list-timeline.list-timeline-cyan-dark .list-timeline-item:before {
  border-color: #008b8b;
}

.list-timeline.list-timeline-yellow .list-timeline-item.active:before,
.list-timeline.list-timeline-yellow .list-timeline-item.show:before,
.list-timeline.list-timeline-yellow:before {
  background: #d4ac0d;
}

.list-timeline.list-timeline-yellow .list-timeline-item:before {
  border-color: #d4ac0d;
}

.list-timeline.list-timeline-slate .list-timeline-item.active:before,
.list-timeline.list-timeline-slate .list-timeline-item.show:before,
.list-timeline.list-timeline-slate:before {
  background: #5d6d7e;
}

.list-timeline.list-timeline-slate .list-timeline-item:before {
  border-color: #5d6d7e;
}

.list-timeline.list-timeline-olive .list-timeline-item.active:before,
.list-timeline.list-timeline-olive .list-timeline-item.show:before,
.list-timeline.list-timeline-olive:before {
  background: olive;
}

.list-timeline.list-timeline-olive .list-timeline-item:before {
  border-color: olive;
}

.list-timeline.list-timeline-teal .list-timeline-item.active:before,
.list-timeline.list-timeline-teal .list-timeline-item.show:before,
.list-timeline.list-timeline-teal:before {
  background: teal;
}

.list-timeline.list-timeline-teal .list-timeline-item:before {
  border-color: teal;
}

.list-timeline.list-timeline-green-bright .list-timeline-item.active:before,
.list-timeline.list-timeline-green-bright .list-timeline-item.show:before,
.list-timeline.list-timeline-green-bright:before {
  background: #2ecc71;
}

.list-timeline.list-timeline-green-bright .list-timeline-item:before {
  border-color: #2ecc71;
}
/*Schedule section ends*/

/*Banner section starts🔥*/
.banner_container {
  width: 100%;
  min-height: calc(100vh - 60px);
  display: flex;
  margin-top: 20px;
  background-color: #380996;
  justify-content: center;
  align-items: center;
  position: relative;
}
/* curve the banner at bottom */
.banner_container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  bottom: 0;
  left: 0;
  background-color: #380996;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}
.banner_text {
  text-align: center;
  margin-top: -50px;
}
.banner_text p {
  font-size: 35px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
}
.banner_text h1 {
  font-size: 70px;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  letter-spacing: 1px;
}
.banner_img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 999;
  object-fit: cover;
  bottom: -100px;
}
.icons_wrapper {
  display: flex;
  position: absolute;
  width: 100%;
  min-height: 100vh;
}
.icons_wrapper i {
  font-size: 35px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ccc;
}
.icons_wrapper i:nth-child(1) {
  position: absolute;
  top: 130px;
  left: 350px;
}
.icons_wrapper i:nth-child(2) {
  position: absolute;
  bottom: 180px;
  left: 400px;
}
.icons_wrapper i:nth-child(3) {
  position: absolute;
  bottom: 200px;
  right: 400px;
  font-size: 40px;
}
.icons_wrapper i:nth-child(4) {
  position: absolute;
  top: 200px;
  right: 350px;
  font-size: 40px;
}
.icons_wrapper i:nth-child(5) {
  position: absolute;
  top: 100px;
  right: 600px;
  font-size: 40px;
}
.icons_wrapper i:nth-child(6) {
  position: absolute;
  top: 300px;
  left: 200px;
  font-size: 40px;
}
.icons_wrapper i:nth-child(7) {
  position: absolute;
  bottom: 100px;
  left: -30px;
  font-size: 120px;
  transform: rotate(25deg);
}
.icons_wrapper i:nth-child(7):after {
  content: "Create";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: 500;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  color: #ccc;
}
.icons_wrapper i:nth-child(8) {
  position: absolute;
  top: 100px;
  right: -30px;
  font-size: 120px;
  transform: rotate(-25deg);
}
.icons_wrapper i:nth-child(8):after {
  content: "Collab";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: 500;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  color: #ccc;
}
/* animate the 7 th and 8 th icons up down */
.icons_wrapper i:nth-child(7):hover {
  transform: translateY(-10px);
}
.icons_wrapper i:nth-child(8):hover {
  transform: translateY(10px);
}
@media screen and (max-width: 768px) {
  .banner_text p {
    font-size: 20px;
  }
  .banner_text h1 {
    font-size: 50px;
  }
  .icons_wrapper i:nth-child(1) {
    display: none;
  }
  .icons_wrapper i:nth-child(2) {
    display: none;
  }
  .icons_wrapper i:nth-child(3) {
    display: none;
  }
  .icons_wrapper i:nth-child(4) {
    display: none;
  }
  .icons_wrapper i:nth-child(5) {
    display: none;
  }
  .icons_wrapper i:nth-child(6) {
    display: none;
  }

  .icons_wrapper i:nth-child(7) {
    bottom: 100px;
    left: -30px;
    font-size: 100px;
  }
  .icons_wrapper i:nth-child(8) {
    top: 100px;
    right: -30px;
    font-size: 100px;
  }
}
/* make reponsive text in small screen */
@media screen and (max-width: 480px) {
  .banner_text p {
    font-size: 15px;
  }
  .banner_text h1 {
    font-size: 35px;
  }
}

/*Banner section Ends✅*/

.cancelled {
  position: fixed;
  background-color: #000;
  top: 25%;
  z-index: 100;
  pointer-events: none;
}

.cancelled span {
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(50%, 50%) rotate(-20deg);
  color: red;
  font-size: 150px;
  text-shadow: -2px -1px 50px rgba(239, 237, 237, 0.148);
}

.cancelled::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
