
/*-----------------------
Font
------------------------*/
@font-face {
    font-family:heading;
    src: url(./meinty.otf);
}
@font-face {
    font-family:helvaticablack;
    src: url(./l_10646.ttf);
}

@font-face {
    font-family:helvaticaextra;
    src: url(./helvetica_0.ttf);
}

@font-face {
    font-family:headingbold;
    src: url(./metropolis-bold.otf);
}

@font-face {
    font-family:headingextra;
    src: url(./metropolis-extrabold.otf);
}

@font-face {
    font-family:headingregular;
    src: url(./metropolis-regular.otf);
}

@font-face {
    font-family:helvatica;
    src: url(./helvetica.ttf);
}
@font-face {
    font-family:helvaticabold;
    src: url(./helvetica-bold.ttf);
}
@font-face {
  font-family:helvaticamedium;
  src: url(./helveticaneueltcom-mdex.ttf);
}
@font-face {
    font-family:helvaticaex;
    src: url(./helveticaneueltcom-ex.ttf);
}

html,body{
  overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

 
  .header {
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    position: relative;
    background-image: url('/Images/Homepage_assets/Homepage_header.svg'); 
    background-size: cover; 
    background-position: center center;
    background-repeat: no-repeat;
}


  .header-left {
    display: flex;
    align-items: center;
    flex: 1;
  }

  .logo img {
    height: 70px;
    cursor: pointer;
  }

  .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 50px;
    flex: 1;
  }

  .nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-family: helvaticaex;
    font-weight: 100;
  }

  .reserve-button {
background: linear-gradient(to right, #B30000, #ff0000);
  color: white;
  padding: 20px 50px;
  border-radius: 0px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  font-size: 20px;
  border: none;
  font-family: headingregular;
  text-transform: uppercase;
 box-shadow: 8px 8px 0 #ffbf00;
 transition: transform 0.2s ease;
 cursor: pointer;
  }
.reserve-button:hover{
    transform: translateY(-2px);
}


  /* Hamburger styles */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
  }

  /* Sidebar menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #6103ee;
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    transition: right 0.3s ease;
    z-index: 9;
  }

  .mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: helvaticaex;
  }

  .mobile-menu button {
    margin-top: 20px;
  }

  .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  /* Active state */
  .mobile-menu.active {
    right: 0;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .header-right {
      display: none;
    }
    .header {
    padding: 20px 20px;
  }
  .reserve-button {
  padding: 20px 30px;
  font-size: 12px;
  }

  .header{
    height: 70px;
  }

    .hamburger {
      display: flex;
    }
    .nav-link {
      font-family: helvaticaex;
    }
    .logo img {
      height: 40px;
    }
  
  }

  @media screen and (min-width:900px) and (max-width:2500px) {
    .header-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 20px;
        flex: 1.5;
      }
    
      .nav-link {
        color: white;
        text-decoration: none;
        font-size: 14px;
        font-family: helvaticaex;
        font-weight: 100;
      }
    
      .reserve-button {
        background: linear-gradient(to right, #B30000, #ff0000);
  color: white;
  padding: 15px 30px;
  border-radius: 0px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  font-size: 14px;
  font-weight: bold;
  border: none;
  font-family:headingregular;
      }
    
  }

  @media (min-width:2000px){
    .header-right{
      gap: 40px;
    }
  }

  /*-----------------------------
  Video-section
  ----------------------------*/
  .video-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  video {
    width: 100%;
    height: auto;
    display: block;
  }

  .play-pause-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    font-size: 30px;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s;
display: none;
  }

  .play-pause-btn:hover {
    background: rgba(0, 0, 0, 0.8);
  }

  .header-section {
  position: relative;
  height: 150px;
  overflow: hidden;
  margin-top: -100px;
}

.header-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;         /* Responsive width */
  max-width: 500px;   /* Maximum size on larger screens */
  height: auto;
}


  .video-img {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px; 
  }

  @media (max-width: 768px) {
    .play-pause-btn {
      font-size: 20px;
      padding: 8px 16px;
    }
   .header-img {
      width: 160px;
    }
    .header-section {
    position: relative;
    height: 75px;
    overflow: hidden;
    margin-top: -36px;
}
  }

  @media (min-width:2000px){
    .header-section {
    position: relative;
    height: 210px;
    }
    .header-img{
      max-width: 850px;
    }
  }

  /*----------------------------
  News section
  --------------------------*/
  .news-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 10px;
    gap: 40px;
    flex-wrap: wrap;
    background: #fff;
  }

  .news-section .left,
  .news-section .right {
    flex: 1 1 400px;
    max-width: 700px;
  }
  

  .news-section .left img {
    width: 95%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    padding-bottom: 20px;
  }

  .news-section .right h2 {
    color: #6103ee; 
    font-size: 50px;
    margin-bottom: 10px;
    font-family: heading;
  }

  .news-section .right h4 {
    color: #6103ee;
    margin-bottom: 40px;
    font-weight: normal;
    letter-spacing: 1px;
    font-family: heading;
    font-size: 22px;
  }

  .news-section .right p {
    font-size: 17px;
    color: #666;
    line-height: 1.3;
    margin-bottom: 15px;
    font-family: headingregular;
    width: 90%;
  }

  .news-section .right p strong {
    font-weight: bold;
    color: #000;
  }

  @media (max-width: 768px) {
    .news-section {
      flex-direction: column;
      text-align: left;
      padding: 0 20px 20px 20px;
    }

    .news-section .right h2 {
      font-size: 25px;
    }
    .news-section{
      gap: 40px;
    }
    .news-section .right h4 {
      font-size: 15px;
      margin-bottom: 30px;
    }
  
    .news-section .right p {
      font-size: 14px;
      width: 100%;
    }
    .news-section .left, .news-section .right {
      flex: 0px;
      max-width: 600px;
  }
  }

  @media (min-width:2000px){
    .news-section .left,
  .news-section .right {
    max-width: 100%;
  }
  .news-section .right h2 {
    font-size: 100px;
}
.news-section .right h4 {
    margin-bottom: 60px;
    font-size: 40px;
}
.news-section .right p {
    font-size: 33px;
}
  }

  /*------------------------------
  Card Section
  ----------------------------*/
  .our-card {
    position: relative;
    padding: 50px 100px;
    text-align: center;
    color: #fff;
    background-color: #6103ee;
    overflow: hidden;
    z-index: 0;
  
  }
  
  
  .our-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/Images/Homepage_assets/BG_overlay_v1.svg') no-repeat center center/contain;
    opacity: 1; 
    z-index: 0;
  }
  
  

  .content {
    width: 100%; 
    max-width: 1100px; 
    margin: 80px auto 30px auto; 
  }
  
  .content p {
    font-family: headingregular;
    font-size: 18px;
    margin-top: 20px;
    line-height: 1.4;
  }

  .our-card h2 {
    font-size: 3rem;
    margin-bottom: 0px;
    font-weight: 100;
    font-family: heading;
     word-spacing:-5px;
  }

  .our-card h1 {
    font-size: 5.5rem;
    margin-bottom: 60px;
    font-weight: bold;
    font-family: heading;
    word-spacing:-20px;
  }

  .card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 40px; 
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
  }

  .card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    margin: 0; 
    transform-style: preserve-3d;
  will-change: transform, opacity;
  }

  .card {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;

    margin-bottom: 0; /* Remove margin from individual cards */
  }

  .card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    overflow: hidden;
  }

  .label {
    font-size: 20px;
    margin-top: 40px;
    font-family: heading;
    font-weight: 100;
  }

  /* Rotate specific cards */
  .card1 { transform: rotate(-10deg); }
  .card2 { transform: rotate(8deg); }
  .card3 { transform: rotate(-6deg); }
  .card4 { transform: rotate(6deg); }
  .card5 { transform: rotate(-16deg); }
  .card6 { transform: rotate(8deg); }
  .card7 { transform: rotate(-20deg); }
  .card8 { transform: rotate(15deg); }

  /* Responsive */
  @media (max-width: 768px) {
    .card-grid {
      grid-template-columns: repeat(4, 1fr); /* STILL 4 cards */
    }
    .card {
      width: 100%;
      height: 100%;
    }
    .our-card h2 {
      font-size: 25px;
        text-align: center;
    }
    .our-card h1 {
        font-size: 50px;
        word-spacing: -10px;
    }

  }

  @media (max-width: 600px) {
    .card-grid {
      grid-template-columns: 1fr; 
      padding: 0 20px;
    }
    .card {
      width: 100%;
      height: 100%;
    }
    .label {
      font-size: 16px;
    }
    .content p {
      font-family: headingregular;
      font-size: 14px;
      line-height: 1.3;
      text-align: center;
    }
    .our-card {
      padding: 50px   0px;
      text-align: left;
    }
  
     .our-card h2 {
      font-size: 25px;
        text-align: center;
    }
    .our-card h1 {
        font-size: 50px;
        word-spacing: -10px;
    }
    .our-card::before{
      background: none;
    }
    .content {
  padding: 0 20px;
  }
  }

  @media (min-width:2000px){
    .card-grid{
      max-width:90%;
      gap: 100px;
    }
    .our-card h2 {
    font-size: 5rem;
    }
    .our-card h1 {
    font-size: 10rem;
    margin-bottom: 100px;
  }
  .label {
    font-size: 35px;
  }
  .content p {
    font-size: 35px;
  }
  .content{
    max-width: 90%;
  }
}

 /*------------------------
 Jury Section
 -----------------------*/
.jury {
  position: relative;
  width: 100%;
  min-height: 100%;
  background: #EF5D21 
    url('/Images/Homepage_assets/04.svg') no-repeat center center / cover;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 30px 20px;
  
}
.jury-1 {
  position: relative;
  width: 100%;
  min-height:100vh;
  background: transparent; 
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 30px 20px;
}
.jury-homepage{
  min-height:100%;
}

.jury-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}



.jury-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.jury-poster {
  width: 100%;
  max-width: 500px;
  height: auto;
 
}

/* Responsive */
@media (max-width: 768px) {
  .jury-poster {
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .jury-poster {
    max-width: 250px;
  }
}

/*----------------------
Creatot
----------------------*/

.creator {
  position: relative;
  width: 100%;
  height: 100%; /* Adjust the height if needed */
  background: url('/Images/Homepage_assets/sponsores.svg') no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
}

.creator-text {
  font-size: 30px;
  font-family: heading;
  font-weight: bold;
  text-align: center;
  color: #ffbf00; 
 
  font-weight: 100;
}


.yellow-line {
  width: 100%;
  height: 10px;
  background:#ffbf00;
  margin: 0px auto;
  border-radius: 0px;
}

.white-line {
  width: 100%;
  height: 10px;
  background:#fff;
  margin: 0px auto;
  border-radius: 0px;
}
@media (max-width:600px) {
  .creator {
    padding: 6px 20px;
  }
  .creator-text {
    font-size: 16px;
  }
}

/*-----------------------------
Creator award
---------------------------*/
.creator-award-home {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 50px;
  flex-wrap: wrap;
  /* background: 
    linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
    url('/Images/Homepage_assets/latest/whcls.svg') center center / cover no-repeat; */
background-color: #fff;
  position: relative;
  
}


.creator-award-home::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.creator-award-home .left,
.creator-award-home .right {
  position: relative;
  z-index: 2;
}

.creator-award-home .left {
  flex: 1 1 400px;
max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.creator-award-home .left img {
  max-width: 350px;
  height: auto;
}

.creator-award-home .right {
  flex: 1 1 400px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #6103ee;
  text-align: left;
  margin-top: -50px;
}

.creator-award-home .right img {
  width: 300px;
  height: auto;
  margin-bottom: 50px;
}



.creator-award-home .right p {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: headingregular;
  color: #6103ee;
}

@media (max-width: 768px) {
  .creator-award-home {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 0px;
  }
  .creator-award-home .left img {
    max-width: 150px;
    height: auto;
  }
  .creator-award-home .right {
    align-items: center;
    margin-top: 0px;
  }
  .creator-award-home .right img {
    width: 150px;
}
  .creator-award-home .right h1 {
    font-size: 2.5rem;
  }
  .creator-award-home .right p {
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
}
}

@media (min-width:2000px){

.creator-award-home .left img {
    max-width: 450px;
}
.creator-award-home .right img {
    width: 400px;
}
.creator-award-home .right p {
    font-size: 35px;
}
.creator-award-home .right {
  max-width: 100%;
}
.creator-award-home .right {
  max-width: 100%;
}
.creator-award-home .left {
  max-width: 100%;
}
}

/*------------------------------
Announcement
-----------------------------*/
 .announcement-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 100px 20px 40px;
      min-height: 300px;
      position: relative;
      overflow: hidden;
      z-index: 0;
    }

    .corner-image {
      position: absolute;
      width: 50px;
      height: auto;
      z-index: 1;
    }

    .top-left {
      top: 15%;
      left: 20%;
      transform: translateY(50%) rotate(-40deg);
    }

    .top-right {
      top: 50%;
      right: 20%;
      transform: translateY(50%) rotate(40deg);
      width: 70px;
    }

    .announcement-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('/Images/Homepage_assets/BG_overlay.svg'),
        linear-gradient(rgba(255, 191, 0, 1), rgba(255, 191, 0, 1)) no-repeat center center/cover;
      z-index: -1;
    }

    .announcement-section h1 {
      font-size: 110px;
      font-weight: 500;
      margin-bottom: 0px;
      line-height: 1.3;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #6103ee;
      font-family: heading;
    }

    .announcement-section h2 {
      font-size: 2.5rem;
      font-weight: 100;
      padding: 0 20px;
      margin-bottom: -10px;
      color: #fff;
      background: linear-gradient(to right, #e8483c, #f9b33f);
      font-family: heading;
    }

    .announcement-section .soon {
      font-size: 110px;
      font-weight: 100;
      margin-top: -60px;
      line-height: 1.3;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #6103ee;
      font-family: heading;
    }

    .announcement-section .video-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      margin-top: 2rem;
      flex-wrap: wrap;
      max-width: 100%;
    }

    .announcement-section .video-container video {
      width: 30%;
      max-width: 100%;
      border-radius: 10px;
      object-fit: cover;
    }

    @media (max-width: 768px) {
      .announcement-section {
        padding: 1.5rem;
        min-height: 250px;
      }
    }

    @media (max-width: 600px) {
      .announcement-section {
        padding: 50px 20px;
        min-height: 200px;
        padding-bottom: 20px;
      }

      .announcement-section h1 {
        font-size: 40px;
      }

      .announcement-section h2 {
        margin-bottom: 0px;
        font-size: 20px;
      }

      .announcement-section .soon {
        font-size: 40px;
        font-weight: 100;
        margin-top: -30px;
      }

      .top-right {
        top: 30%;
        right: 10%;
        transform: translateY(50%) rotate(40deg);
        width: 30px;
      }

      .top-left {
        top: 15%;
        left: 20%;
        transform: translateY(50%) rotate(-40deg);
      }

      .corner-image {
        position: absolute;
        width: 20px;
      }

      .announcement-section .video-container video {
        width: 100%;
      }
    }

    @media (min-width: 2000px) {
      .announcement-section h2 {
        font-size: 4.5rem;
      }

      .announcement-section h1 {
        font-size: 10rem;
      }

      .announcement-section .soon {
        font-size: 10rem;
      }

      .announcement-section .video-container video {
        max-width: 100%;
      }
    
.best-award-container {
        grid-template-columns: repeat(auto-fill, minmax(450px, 1fr))!important;
    }
    .line {
    width: 50%;
    height: 4px;
    }
    .best-award-item h3 {
    font-size: 30px;
    }
    .best-award-item p {
    font-size: 35px;
    }

  }

/*--------------------------------------
Best Award
------------------------------------*/
.best-award {
  padding: 5rem;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  background:  url('/Images/Homepage_assets/latest/whcls.svg'),
    linear-gradient(rgba(97, 3, 238, 1), rgba(97, 3, 238, 1))
    center center / cover no-repeat;
    background-attachment: fixed;
  
}


.best-award h2{
  color: #fff;
  font-family:heading ;
  font-size: 3.5rem;
  margin-bottom: 40px;
  font-weight: 100;
  display: inline-block;
}
.best-award h2 span{
  border-bottom: 7px solid #ffbf00;
  display: inline-block;

}

.best-award-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.best-award-item {
  text-align: center;
  padding: 0.5rem;
   transition: transform 0.3s ease;
}

.best-award-item h3 {
  font-size: 20px;
  margin: 0 0 10px 0;
  color: #6103ee;
  background: #ffbf00;  
  padding: 5px 10px;
  display: inline-block;
  font-family: headingbold;
  font-weight: bolder;
}

.best-award-item:hover {
  transform: scale(1.2);
}


.line {
  width: 20%;
  height: 2px;
  background: linear-gradient(25deg, #e8483c, #f9b33f);
  margin: 0px auto;
  border-radius: 2px;
  margin-top: 15px;
}

.best-award-item p {
  font-size: 20px;
  color: #fff;
  margin: 0;
  font-family: heading;
}

  .best-award-item {
    display: none;
  }

  .best-award-item.visible,
  .best-award-item:nth-child(-n+20) {
    display: block;
  }

  .view-more {
  display: flex;
  justify-content: center!important;
  align-items: center!important;
  text-align: center;
}

  .view-more-btn {
    display: block;
    margin: 20px auto;
    padding: 20px 40px!important;
    background-color: #ffbf00!important;
    color: #fff;
    border: none;
    font-size: 16px!important;
    cursor: pointer;
    border-radius: px;
    margin-bottom: 60px;
    color: #6103ee!important;
  }

@media (max-width: 1231px) {
  .best-award-container {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1rem;
  }
  
  .best-award-item h3 {
      font-size: 1.3rem;
  }
}


@media (max-width: 500px) {
  .best-award {
      padding: 1rem;
  }
  
  .best-award-container {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: 1.5rem;
  }
  .best-award h2{
    font-size: 25px;
  }
  .best-award h2 span{
    border-bottom: 3px solid #ffbf00;
    display: inline-block;
  }
  .best-award-item p {
    font-size: 16px;
  }
  
 

}
@media (min-width: 1500px) {

.best-award-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
}

@media(min-width:2000px){
  .best-award-item p {
    font-size: 40px;
    margin-top: 20px;
}
.best-award-item h3 {
    font-size: 40px;
}
.view-more-btn {
    font-size: 40px !important;
}
}
/*------------------------------
Mark Date
------------------------------*/
.mark-date {
  padding: 50px 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.mark-date h2 {
  font-size: 40px;
  margin-bottom: 50px;
  text-transform: uppercase;
  color:#5c05e0;
  font-family: heading;
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 1.5rem;
}

.date-item {
}

.date-item .date {
  font-size:35px;
  color: #fff;
  margin-bottom: 0.3rem;
  background: linear-gradient(25deg, #eb9a38, #f9b33e);
  padding: 30px 30px;
  font-family: heading;
  
}

.date-item .event {
  font-size: 25px;
  color:#5c05e0;
  font-family: heading;
  margin-top: 10px;
}

.date-bottom-wrapper {
  grid-column: 1 / -1; /* Full width */
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .date-grid {
    grid-template-columns: 1fr; /* Stack vertically */
  }

  .date-bottom-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .mark-date {
    padding: 2rem 20px;
  }
  .mark-date h2 {
    font-size: 25px;
}
.date-item .event {
  font-size: 20px; 
}
.date-item .date {
  font-size: 30px;
}
}

/*--------------------------
Accordian
-------------------------*/


.accordion-wrapper {
  padding: 40px 100px;
  max-width:100%;
  margin: 0 auto;
  color: #333;
  line-height: 1.6;
 background-color: #ffbf00;
 padding-bottom: 100px;
}
.accordion {
  width: 100%;
  margin-bottom: 20px;
}
.accordion-title {
  text-align: left;
  margin-bottom: 30px;
  font-size:5rem;
  color: #e8483c;
  font-family: headingbold;
  letter-spacing: -5px;

}
.accordion-item {
  border: 1px solid #6103ee;
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-header {
  padding: 15px 20px;
  background-color: #6103ee;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
  user-select: none;
  color: #fff;
  font-family: headingregular;
  font-size: 25px;
  
}
.accordion-header:hover {
  background-color: #6103ee;
}
.accordion-header::after {
  content: '▼';
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: #ffbf00;
}
.accordion-item.active .accordion-header::after {
  content: '▲';
  transition: transform 0.3s;
  font-size: 1.2rem;
  color: #ffbf00;
}

.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
transition: height 0.4s ease, padding 0.4s ease;
  background-color: #6103ee;
  color: #fff;
  font-family: headingregular;
  font-size: 20px;
}

.accordion-item.active .accordion-content {
  padding: 10px 20px;
  max-height: 500px;
}
@media (max-width: 600px) {
  .accordion-item.active .accordion-content {
    padding: 10px 10px;
    max-height: 500px;
  }
  .accordion-header {
    padding: 12px 10px;
    font-size: 0.9rem;
  }
  .accordion-content {
    font-size: 12px;
  }
  .accordion-title {
    font-size: 40px;
  }
  .accordion-wrapper {
    padding: 40px 20px;
}
}

/*-----------------------------
Danik Jagran
----------------------------*/
.image-section {
  width: 100%;
  height: 100%; 
  background-color: #fff; 
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px;
}


.content-wrapper {
  width: 100%; 
  max-width: 1200px; 
}


.content-wrapper .heading {
  font-size: 20px; 
  color: #5c05e0; 
  margin-bottom: 20px;
  font-family: heading;
  letter-spacing: 2px;
  font-weight: 100;
}

/* Image styling */
.content-wrapper .image {
  width: 30%;
  max-width: none; 
  height: auto;
  margin-top: 20px;
}


@media screen and (max-width: 768px) {
  .content-wrapper .heading {
      font-size: 15px; 
  }

  .content-wrapper .image {
       width: 80%;

  }
}

@media(min-width:2000px){
   .content-wrapper .image {
       width: 50%;

  }
}
/*-----------------------------
Footer
--------------------------*/
.footer {
  background-color: #6103ee;
  background-image: url('/Images/Homepage_assets/BG_overlay_v1.svg'); 
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: white;
  padding: 70px 40px 20px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 50px;
}
.footer-left a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-family: headingregular;
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.reserve-button-footer {
  background: linear-gradient(to right, #b30000, #ff0000);
  color: white;
  padding: 15px 30px;
  border-radius: 0px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  font-size: 16px;
  font-weight: bold;
  border: none;
  font-family:headingregular;
  margin-bottom: 20px;
  text-transform: uppercase;
  box-shadow: 8px 8px 0 #ffbf00;
 transition: transform 0.2s ease;
 cursor: pointer;
}
 

.reserve-button-footer:hover{
    transform: translateY(-2px);
}
.social-links {
  padding-right: 0;
}
.social-links,
.social-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
  font-size: 15px!important;
  font-family: headingregular;
          vertical-align: middle;
}

.social-links img{
  width:24px;
  height:24px;
 
}


.copyright , .copyright a{
  width: 100%;
  text-align: center;
  margin-top: 50px;
  font-size: 14px;
  opacity: 1;
  font-family: headingregular;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 600px) {
  .footer-left {
    padding-left: 0px;
}
  .footer {
    flex-direction: column;
    text-align: center;
    align-items: flex-start;
  }
  .footer-left, .footer-right {
    align-items: flex-start;
  }
  .footer-right {
    margin-top: 20px;
  }
  .social-links, .social-links a {
    color: white;
    text-decoration: none;
    margin: 0 0px; 
    font-size: 12px;
    font-family: helvaticaex;
    align-items: flex-start;
    text-align: left;
    line-height:1.2;
}

.social-links span{
  font-size: 24px;
}

.social-links img{
  width: 20px;
  height: 20px;
}

.social-links {
  display: block;
  align-items: flex-start;
  justify-content: center;
  padding: 0px 0px 0px 0px;
}
.social-links > :nth-child(2) {
    color: #fff;
    font-size: 24px;
    font-weight: 100;
}
}

/*----------------------------
Our Card
---------------------------*/
.our-card-1 {
 background: linear-gradient(rgba(239, 93, 33, 0.99), rgba(239, 93, 33, 0.99)), url('/Images/Homepage_assets/latest/whcls.svg');
 background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
}



    .our-card-wrapper-1 {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .our-card-item-1 {
      background-color:transparent;
      color: #ffffff;
      padding: 50px 50px;
      border-radius: 0px;
      position: relative;
      text-align: center;
      border: 1px solid #fff;
      transform: perspective(1000px) rotateX(5deg) rotateY(8deg);
    }

    .our-card-yellow{
      background-color: #ffbf00;
      border:1px solid #ffbf00;
      color:#6103ee;
    }

    .our-card-item-1 .number {
      font-size: 7rem;
      font-weight: bold;
      margin-bottom: 20px;
      font-family: heading;
      transform: rotate(2deg);
    }

    .our-card-item-1 .title {
      font-size:2rem;
      font-weight: 600;
      margin-bottom: 15px;
      font-family: helvaticaex;
      transform: rotate(2deg);
    }
    .our-card-wrapper-1 .our-card-item-1:nth-child(2),
.our-card-wrapper-1 .our-card-item-1:nth-child(4){
  transform: rotate(-5deg);
} 

    .our-card-item-1 .description {
      font-size: 20px;
      line-height: 1.3;
      font-family: helvatica;
      transform: rotate(2deg);
    }

    /* Responsive for tablets and up */
    @media (min-width: 768px) {
      .our-card-wrapper-1 {
        grid-template-columns: 1fr 1fr;
      }
     
    }
    @media (max-width: 768px) {
      .our-card-item-1 .title {
        font-size: 20px;
      }
      .our-card-item-1 {
        padding: 20px 20px;
    }
    .our-card-item-1 .description {
      font-size: 12px;
      line-height: 1.5;
      font-family: helvatica;
  }
  .our-card-item-1 .number{
    font-size: 5rem;
  }
    }

   @media (min-width: 2000px) {
.our-card-item-1 {
    margin: 40px;
}
.our-card-wrapper-1 {
    max-width: 90%;
}
.our-card-item-1 .number {
    font-size: 7rem;
}
.our-card-item-1 .title {
    font-size: 4rem;
    margin-bottom: 35px;
}
.our-card-item-1 .description {
    font-size: 35px;
}
.jury-poster {
    width: 100%;
    max-width: 700px;
    height: auto;
}
.creator-text {
    font-size: 4rem;
}
   } 

    /*--------------------------------
    About
    ------------------------------*/
   .about-cls {
  background-color: #fff;
  /* background-image: url('/Images/Homepage_assets/BG_overlay.svg'); */
  background-size: cover;
  background-position: center;
  color: #1a1a1a;
  text-align: center;
  padding: 50px 20px;
  
}


    .about-cls h2 {
      color: #6103ee;
      font-size: 4.5rem;
      margin-bottom: 40px;
      font-family: headingbold;
      font-weight: bold;
      letter-spacing: -2px;
    }
    .about-cls h3 {
      color: #6103ee;
      font-size: 3.5rem;
      font-family: headingregular ;
      font-weight: 100;
    }

    .about-cls p {
      color: #6103ee;
      font-size: 20px;
      max-width: 900px;
      margin: 0 auto 20px;
      line-height: 1.2;
      font-family: headingregular;
    }

    .about-cls strong {
      font-weight: bold;
    }

    /* Responsive styles */
    @media (max-width: 768px) {
      .about-cls h2 {
        font-size:30px;
        text-align: left;
      }

      .about-cls p {
        font-size: 14px;
        text-align: left;
        line-height: 1.3;
      }
      .about-cls h3 {
        font-size: 25px;
        font-family: helvaticaex;
        font-weight: 100;
        text-align: left;
      }
    }

    @media (min-width:2000px){
      .about-cls h3 {
    font-size: 5.5rem;
      }
      .about-cls h2 {
    font-size: 7.5rem;
      }
      .about-cls p {
    font-size: 40px;
    max-width: 90%;
}
    }

    /*--------------------------
    About Accordian
    --------------------------*/
    .about-accordian {
      padding: 40px 20px;
      background-color: yellow;
    }

    .about-accordian-container {
      max-width: 1000px;
      margin: auto;
    }

    .about-accordian-title {
      font-size: 3.5rem;
      font-weight:bold;
      margin-bottom: 40px;
      line-height: 1.2;
      color: #2d00b3;
      font-family: helvaticaex;
    }

    .about-accordian-title .highlight {
      color: #fff;
    }

    .about-accordian-box {
      margin-bottom: 30px;
    }

    .about-accordian-subtitle {
      font-size: 1.2rem;
      font-weight: bold;
      color: #2d00b3;
      margin-bottom: 20px;
      text-transform: uppercase;
      font-family: helvaticaex;
    }

    .about-accordian-text {
      font-size: 14px;
      color: #2d00b3;
      line-height: 1.4;
      font-family: helvaticaex;
    }

    .about-accordian-box hr {
      margin-top: 15px;
      border: none;
      border-top: 2px solid #2d00b3;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .about-accordian-title {
        font-size:30px;
      }

      .about-accordian-subtitle {
        font-size:16px;
      }

      .about-accordian-text {
        font-size: 12px;
      }
    }

    @media (max-width: 600px) {
      .about-accordian-title {
        font-size: 21px;
        line-height: 1.3;
      }

      .about-accordian-text {
        font-size: 12px;
        line-height: 1.2;
      }
    }

    /*--------------------------
    Reserve section
    --------------------------*/
   
   .reserve-section {
  width: 100%;
  background-color: #EF5D21 ;
  background-image: url('/Images/Homepage_assets/BG_overlay.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.reserve-bottom-image {
  position: absolute;
  bottom: 0;
  right: 50px;
  width: 150px; 
  height: auto;
  z-index: 1;
}

    .reserve-section h2 {
      font-size: 4.5rem;
      font-weight: 500;
      margin-bottom: 50px;
      font-family: headingbold;
      font-style: italic;
      letter-spacing: -2px;
    }

    .reserve-section p {
      font-size: 2.5rem;
      margin-bottom: 50px;
      font-family: heading;
    }

    .reserve-items {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 60px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .reserve-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .reserve-item img {
      width: 250px;
      height: 200px;
      margin-bottom: 40px;
    }

    .reserve-item a {
      padding: 20px 80px;
      font-size: 1.5rem;
      border-radius: 0px;
      cursor: pointer;
      transition: 0.3s;
      border: 2px solid #6103ee;
      background-color: #6103ee;
      color: #fff;
      font-weight: 100;
      font-family: heading;
      box-shadow: 8px 8px 0 #FFF; 
text-decoration: none;
    }

    .reserve-item a:hover {
  transform: translateY(-5px);
  box-shadow: 8px 12px 0 #FFF; /* Shadow changes slightly */
}

   

    /* Responsive */
    @media (max-width: 768px) {
      .reserve-section h2 {
        font-size: 2rem;
      }
      .reserve-section{
        padding-bottom: 150px;
      }

      .reserve-items {
        gap: 30px;
      }

      .reserve-item a {

        font-size: 0.95rem;
      }
      .reserve-bottom-image {
  right: 50px;
  width: 80px; 
}
    }

    @media (max-width: 600px) {
      .reserve-section h2 {
        font-size: 35px;
        margin-bottom: 30px;
      }

      .reserve-section p {
        font-size: 25px;
      }

      .reserve-item img {
        width: 130px;
        margin-bottom: 0px;
      }

      .reserve-items {
        flex-direction: column;
        gap: 30px;
      }

      .reserve-item a {
        width: 100%;
      }
    }

    @media (min-width:2000px){
      .reserve-section h2 {
    font-size: 6.5rem;
      }
      .reserve-section p {
    font-size: 4.5rem;
      }
      .reserve-item img {
    width: 500px;
    height: 350px;
    margin-bottom: 40px;
}
.reserve-item a {
    padding: 35px 80px;
    font-size: 3.5rem;
}
    }

    /*-------------------------------
    About circle section
    --------------------------------*/
 .about-section-2 {
  padding: 60px 20px;
  text-align: center;
   background-color: rgba(97, 3, 238, 1);
  background-image: url('/Images/Homepage_assets/latest/whcls.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  background-blend-mode: multiply;
  background-attachment:fixed;
}


    .about-section-2 h2 {
      font-size: 4.5rem;
      margin-bottom: 60px;
      font-family: headingregular;
      color: #fff;
     font-weight: 100;
     line-height: 1;
    }

    .about-section-2 h2 strong {
      font-weight: bold;
      font-size: 4.5rem;
      font-family: headingbold;
      letter-spacing: -2px;
    }

    .zigzag-wrapper {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: 0px;
      flex-wrap: wrap;
    }

    .left-column,
    .right-column {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .left-column {
      align-items: flex-start;
    }

    .right-column {
      align-items: center;
      text-align: center;
      justify-content: center;
      margin-left: -30px;
    }

    .circle-wrapper {
      position: relative;
      width: 400px;
      height: 400px;
      z-index: 0;
    }

    .circle-wrapper::before {
      content: "";
      position: absolute;
      top: 10px;
      left: 10px;
      width: 380px;
      height: 380px;
      border-radius: 50%;
      background-color: white;
      z-index: -1;
    }
   
    

    .circle {
      width: 380px;
      height: 380px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 20px;
      text-align: center;
      box-sizing: border-box;
      z-index: 1;
    }

    .circle.orange {
      background-color: #EF5D21;
      color: white;
      
    }
    .circle-wrapper-red {
      position: relative;
      width: 400px;
      height: 400px;
      z-index: 0;
    }

    .circle-wrapper-red::before {
      content: "";
      position: absolute;
      top: 10px;
      left: 10px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background-color: #e60023; 
      z-index: -1;
    
    }

    .circle.white {
      background-color: white;
      color: #5707d0;
      width: 400px;
      height: 400px;
   
    }

    .circle h3 {
      margin-bottom: 10px;
      font-size: 35px;
      font-weight: bold;
      font-family: headingregular;

    }

    .circle p {
      font-size: 22px;
      line-height: 1;
      font-family: heading;
      padding: 0 20px;
    }
    .white-vertical-line {
      width: 2px;             
      height: 45px;          
      background-color: white;
      margin-bottom: 40px;
    }

    .purple-vertical-line {
      width: 2px;             
      height: 45px;          
      background-color: #4b0082;
      margin-bottom: 40px;
    }

    @media (max-width: 768px) {
      .zigzag-wrapper {
        flex-direction: column;
        align-items: center;
      }
      .circle-wrapper-red , .circle-wrapper {
        position: relative;
        width: 250px;
        height: 250px;
        z-index: 0;
      }
  
      .circle-wrapper-red::before ,  .circle-wrapper::before {
        width: 250px;
        height: 250px;
      }
      .left-column,
      .right-column {
        align-items: center;
      }
      .circle {
        width: 250px;
        height: 250px;
        
      }
      .about-section-2 h2, .about-section-2 h2 strong {
        font-size: 25px;
       line-height: 1.2;
      }
      .circle.white {
        width: 250px;
        height: 250px;
      }
      .circle h3 {
        margin-bottom: 10px;
        font-size: 18px;
        font-weight: bold;
        font-family: helvaticamedium;
  
      }
  
      .circle p {
        font-size: 16px;
        line-height: 1;
        font-family: heading;
        padding: 0 20px;
      }
      .right-column {
        margin-left: 0px;
      }
      .zigzag-wrapper {
        gap: 40px;
      }
      .desktop{
        display:none;
      }
    }
    @media (min-width: 768px){
      .mobile{
        display:none;
      }
    }

    @media(min-width:2000px) {
       .about-section-2 {
  padding: 120px 20px;
       }
    }

    /*----------------------
Creatot section
----------------------*/

.creator-award {
  position: relative;
  width: 100%;
  height: 100%; 
  background: url('/Images/Homepage_assets/sponsores.svg') no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
}

.creator-text-award {
  font-size: 30px;
  font-family: heading;
  font-weight: bold;
  text-align: center;
 color: #fff;
  font-weight: 100;
}
.creator-award::after  {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 background:none;
  z-index: 1;
}



@media (max-width: 600px) {
  .creator-award {
    padding: 6px 20px;
  }
  .creater-award-long{
    background: #6103ee!important;
  }
  .creator-text-award {
    font-size: 16px;
  }
}

   /*-----------------------------
Creator award
---------------------------*/
.creator-award-about {
 /* background: 
    url('/Images/Homepage_assets/BG_overlay.svg') center center / cover no-repeat,
    linear-gradient(rgba(255, 191, 0, 1), rgba(255, 191, 0, 1)); */
    background-color: #fff;
  padding: 40px 20px;
  position: relative;
}

.creator-bottom-image {
  position: absolute;
  bottom: 0;
  right: 10px;
  width: 150px; 
  height: auto;
  z-index: 1; 
}


.creator-award-about .creator-container {
  max-width: 1200px;
  margin: 0 auto;
}

.creator-award-about .creator-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0px;
  justify-content: center;
}

.creator-award-about .creator-image {
  flex: 1 1 300px;
  text-align: center;
}

.creator-award-about .creator-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.creator-award-about .creator-text-award {
  flex: 2 1 500px;
}

.creator-award-about .creator-text-award h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: left;
  color: #6103ee;
  font-family: headingbold;
  letter-spacing: -2px;
}

.creator-award-about .creator-text-award h3 {
  font-size: 30px;
  font-weight: bold;
  margin-top: 50px;
  text-align: left;
  color: #6103ee;
  font-family: headingbold;
  margin-bottom: 10px;
  letter-spacing: -2px;
}

.creator-award-about .creator-text-award p {
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.6;
  text-align: left;
  color: #6103ee;
  font-family: headingregular;
}

@media (max-width: 768px) {
  .creator-award-about .creator-flex {
    flex-direction: column;
    text-align: left;
    gap: 40px;
  }
.creator-bottom-image {
  width: 60px; 
}
  .creator-award-about .creator-text-award h2,
  .creator-award-about .creator-text-award h3 {
    font-size: 20px;
    letter-spacing: -1px;
  }

  .creator-award-about .creator-text-award p {
    font-size: 12px;
  }
}
@media (min-width:2000px) {
  .creator-award-about .creator-container {
    max-width: 100%;
  }
  .creator-award-about .creator-image img {
    width: 100%;
    max-width: 400px;
  }
  .creator-award-about .creator-text-award h2 {
    font-size: 60px;
  }
  .creator-award-about .creator-text-award p {
    font-size: 35px;
  }
  .creator-award-about .creator-text-award h3 {
    font-size: 60px;
  }
  .best-award h2 {
    font-size: 5.5rem;
    margin-bottom: 70px;
  }
}


/*--------------------------------------
Creator Award Banner
---------------------------------------*/
.creator-award-banner {
  text-align: center;
  background-color: white; 
  border-bottom: 6px solid #f97c1b; 
  padding: 15px 20px;
}

.creator-award-banner h2 {
  font-size: 30px;
  color: #4b00b5;
  font-weight: 400;
  letter-spacing: 0px;
  margin-bottom: -5px;
  font-family: heading;
}

.creator-award-banner h1 {
  font-size: 50px;
  font-weight: 800;
  color: #4b00b5;
  line-height: 1.2;
  margin-bottom: 0;
  font-family: headingbold;
  letter-spacing: 0px;
}

@media (max-width: 768px) {
  .creator-award-banner h2 {
    font-size: 14px;
  }

  .creator-award-banner h1 {
    font-size: 22px;
    line-height: 1.8;
  }
}

@media (max-width: 600px) {
  .creator-award-banner h2 {
    font-size: 15px;
  }

  .creator-award-banner h1 {
    font-size: 22px;
    line-height: 0.9;
        margin-top: 10px;
  }
}

/*---------------------------------------
Nomineee
--------------------------------------*/
.nominee-submit {
  background-image: url('/Images/Homepage_assets/BG_overlay.svg');
  background-color: #ffbf00;
  
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.nominee-submit h2 {
  color: #6103ee; 
  font-size: 4.5rem;
  margin-bottom: 40px;
  font-weight: bold;
  font-family: helvaticamedium;
  letter-spacing: -2px;
  font-style: italic;
}

.nominee-icon img {
  width: 200px;
  margin-bottom: 40px;
  filter: brightness(0) invert(1); 
}

.nominee-button {
  background: #6103ee;
  color: #fff;
  border: none;
  padding: 30px 80px;
  font-size: 2.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: heading;
  box-shadow: 8px 8px 0 #FFF; 
}

.nominee-button:hover {
  background: #6103ee;
  color: #fff;
}

@media (max-width: 768px) {
  .nominee-submit h2 {
    font-size: 30px;
    letter-spacing: 0px;
  }

  .nominee-icon img {
    width: 150px;
  }

  .nominee-button {
    padding: 20px 60px;
    font-size: 25px
  }
  .nominee-submit{
    padding-bottom: 150px;
  }
  .reserve-bottom-image {
        right: 50px;
        width: 65px;
    }
}

/*--------------------------
    Reserve section
    --------------------------*/
   
    .reserve-section-contact {
      width: 100%;
      background-color: #ffbf00;
      color: #6103ee;
      text-align: center;
      padding: 50px 0;
      position: relative;
      overflow: hidden;
    }

    .reserve-section-contact h2 {
      font-size: 4.5rem;
      font-weight: 500;
      margin-bottom: 50px;
      font-family: heading;
      word-spacing: -10px;
    }

    .reserve-section-contact p {
      font-size: 2.5rem;
      margin-bottom: 50px;
      font-family: heading;
    }

    .reserve-items-contact {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 60px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .reserve-item-contact {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 50px;
    }

    .reserve-item-contact img {
      width: 250px;
      height: 200px;;
    }

    .reserve-item-contact a {
      padding: 35px 100px;
      font-size: 2rem;
      border-radius: 0px;
      cursor: pointer;
      transition: 0.3s;
      background: #fff;
      color: #6103ee;
      font-weight: 400;
      font-family: heading;
       box-shadow: 8px 8px 0 #6103ee; 
      text-decoration: none;
    }

    .reserve-item-contact a:hover{
    transform: translateY(-2px);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .reserve-section-contact h2 {
        font-size: 2rem;
      }

      .reserve-items-contact {
        gap: 30px;
      }

      .reserve-item-contact a {
padding: 20px 80px;
        font-size: 1rem;
   
      }
    }

    @media (max-width: 600px) {
      .reserve-section-contact h2 {
        font-size: 29px;
        word-spacing: -5px;
      }

      .reserve-section-contact p {
        font-size: 16px;
      }

      .reserve-item-contact img {
        width: 150px;
      }

      .reserve-items-contact {
        flex-direction: column;
        gap: 30px;
      }

      .reserve-item-contact a {
        width: 100%;
      }
    }

    /*------------------------------------
    Attendeee form
    ----------------------------------*/
    .nominee-submission-form-container {
      max-width: 100%;
      margin: auto;
      padding: 50px 100px;
      background-color: #6103ee;
      position: relative;
      padding-bottom: 200px;
    }
    .bottom-left-img {
  position: absolute;
  bottom: 0;
  left: 30px;
  width: 200px; 
  height: auto;
  z-index: 10;
}
    

    h1 {
      text-align: center;
      font-size: 3.5rem;
      margin-bottom: 80px;
      color: #fff;
      font-family: heading;
      font-weight: 100;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .nominee-field-group {
      display: flex;
      align-items: center;
      gap: 15px;
      flex-wrap: wrap;
    }

    .nominee-field-group label {
      width: 300px;
      min-width: 140px;
      font-weight: 100;
      font-family: headingbold;
      color: #fff;
      justify-content: flex-end;
    align-items: flex-end;
    text-align: end;
    font-size: 1.5rem;
    }

    .nominee-field-group input,
    .nominee-field-group textarea,
    .nominee-field-group select {
      flex: 1;
      padding: 10px;
      font-size: 1.5rem;
      border: none;
      border-radius: 0px;
      background-color: transparent;
      border: 1px solid #fff;
      color: #fff;
      padding: 20px 10px;
    }
    .nominee-field-group select {
      font-size: 1rem;
      font-family: headingregular ;
    }
    .nominee-field-group input::placeholder,
    .nominee-field-group textarea:placeholder {
      flex: 1;
      padding: 10px;
      font-size: 1em;
      border: none;
      border-radius: 0px;
      background-color: transparent;
      border: 1px solid #fff;
    }
    .nominee-field-group input:-webkit-autofill,
    .nominee-field-group textarea:-webkit-autofill {
      background-color: transparent !important; 
      color: white !important; 
      border: 1px solid white !important; 
      font-family: headingregular;

    }

  .nominee-field-group option{
    background-color: #6103ee;
  }
    
    
    .nominee-field-group input:-webkit-autofill::placeholder,
    .nominee-field-group textarea:-webkit-autofill::placeholder {
      color: rgba(255, 255, 255, 0.7) !important;
    }
    

    
    .nominee-field-group textarea {
      resize: vertical;
    }
    .nominee-field-group input::placeholder,
    .nominee-field-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.7); 
    }
    
    
    .nominee-field-group input:focus,
    .nominee-field-group textarea:focus {
      outline: none;
      border: 1px solid #fff; 
      color: white;
      background-color: transparent;
    }
    .nominee-field-group input[type="file"] {
      background-color:transparent;
      color: black;
      border: none;
    }

    .row {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }

    .row > div {
      flex: 1;
      min-width: 200px;
      margin-top: 10px;
    }

    .row > div .nominee-field-group {
      flex-direction: row;
    }

    .checkbox {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1rem;
      margin-top: 10px;
      color: #fff;
      font-family: headingregular;
      text-align: start;
      line-height: 1.2;
      margin-left: 300px;
    }

.nominee-field-group input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;

}


.nominee-field-group input[type="date"] {
  color: white;
  background-color: transparent;
  border: 1px solid white;
  
}
    .buttons {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .buttons button {
      padding: 15px 70px;
      border: none;
      border-radius: 0px;
      font-size: 20px;
      cursor: pointer;
      font-family: heading;

    }

    .submit-btn {
      background: linear-gradient(to right, #e8483c, #f9b33f);
      color: white;
    }

    .cancel-btn {
      background: white;
      color: #6103ee;
    }

    @media (max-width: 768px) {
      .row {
        flex-direction: column;
        display: flex;
      }
      .checkbox {
        display: flex;
        align-items: start;
        gap: 10px;
        font-size: 12px;
        margin-top: 10px;
        color: #fff;
        font-family: helvaticaex;
        text-align: start;
        justify-content: flex-start;
        margin-left: 0px;
      }
       .nominee-field-group input,
    .nominee-field-group textarea {
      padding: 10px 10px;
    }
      
      .nominee-field-group input:-webkit-autofill,
    .nominee-field-group textarea:-webkit-autofill {
      background-color: transparent !important; 
      color: white !important; 
      border: 1px solid white !important; 
      font-family: headingregular;
      font-size: 16px;
      
    }

      .nominee-field-group {
        flex-direction: column;
        align-items: flex-start;
      }

      .nominee-field-group label {
        width: 100%;
      }

      .buttons {
        flex-direction: column;
        align-items: stretch;
      }

      .buttons button {
        width: 100%;
      }

    }
    .upload-wrapper {
      text-align: center;
      margin-top: 10px;
      margin-bottom: 10px;
    }

    .upload-input {
      display: none;
    }

    .upload-label {
      display: inline-flex;
      align-items: center;
      padding: 10px 0px;
      font-size: 16px;
      color: white;
      background-color:transparent;
      border: 1px solid #fff;
      cursor: pointer;
      transition: background-color 0.3s ease;
      width: 100%!important;
      text-align: center!important;
      justify-content: center!important;
      align-items: center!important;
      font-family: helvaticaex;
      font-weight: 100;
    }

    .upload-label:hover {
      background-color: #357ABD;
    }

    .upload-label svg {
      margin-right: 8px;
      width: 20px;
      height: 20px;
      fill: white;
    }

    .upload-text {
      margin-top: 10px;
      font-size: 12px;
      color: #fff;
      font-family: helvaticaex;
    }

    .nominee-field-group span{
      font-family:headingregular;
      font-size: 15px;
    }

    @media (max-width: 768px) {
      .upload-label {
        font-size: 14px;
        padding: 8px 16px;
      }
      .nominee-field-group span{
      font-family:headingregular;
      font-size: 14px;
    }

      .upload-text {
        font-size: 13px;
      }
      .nominee-field-group input, .nominee-field-group textarea ,     .nominee-field-group select{
        
        width: 100%;
    }

     .nominee-field-group select {
 font-size: 20px;
      padding: 10px 10px;
    }
    .nominee-submission-form-container {
    
      padding: 50px 20px;
      padding-bottom: 200px;
    
    }

    .nominee-submission-form-container h1{
      font-size:2.5rem;
    }
    .nominee-field-group label {
    text-align: start;
    font-size: 14px;
    }
    }
    @media (min-width:768px) and (max-width: 1400px) {
    .row {
      display: inline-block;
      flex-wrap: wrap;
      gap: 15px;
    }
  }

  @media(min-width:2000px){
    .checkbox {
    font-size: 1.5rem;
}
.buttons button {
    font-size: 30px;
}
  }

  /*-------------------------------
  Timeline
  ------------------------------*/
 .timeline-main {
  background-color: #EF5D21;
  background-image: url('/Images/Homepage_assets/04.svg'); 
  background-repeat: no-repeat;
 background-position: top -250px right -300px;
  background-size: 550px auto; 
  margin: 0;
  padding: 50px 0;
  background-attachment: fixed;
  
}

.why-cls-image {
  position: relative;
  display: inline-block;
  width: 500px; 
  margin-top: -150px;
}

.why-cls-image .main-image {
  width: 100%;
  display: block;
}

.why-cls-image .overlay-image {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px; 
}


  .top-banner {
    padding: 40px 20px;
    text-align: center;
  }

  .top-banner h1 {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
  }

  .top-banner p {
    font-size: 18px;
    margin-top: 10px;
  }

  .timeline {
    position: relative;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
  }

  .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    background: white;
    top: 0;
    bottom: 0;
  }

  .timeline-item {
    position: relative;
    width: 50%;
    padding: 0px;
    box-sizing: border-box;
  }

  .timeline-item .inner {
    display: inline-block;
    max-width: 100%;
  }

  .timeline-item.left .date-box {
    background: #6103ee;
    color: #ffbf00;
    font-weight: bold;
    padding: 10px 60px;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 7rem;
    font-family: headingbold;
    position: relative;
    margin-right: -8px;
  }
  .timeline-item.right .date-box {
    background: #6103ee;
    color: #ffbf00;
    font-weight: bold;
    padding: 10px 60px;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 7rem;
    font-family: headingbold;
    position: relative;
    margin-left: 0px;
  }
 
  .timeline-item .date-box span {
    font-size: 2.5rem;
    margin-left: -25px;
  }

  .timeline-item.left .date-box::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%)rotate(60deg);
    width: 0;
    height: 0;
    border-top: 55px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 50px solid #ffbf00;
   
  }
  .timeline-item.left .date-box::before {
    content: '';
    position: absolute;
    right: 0px;
    top: 100%;
    transform: translateY(-50%)rotate(40deg);
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 60px solid #6103ee;
   
  }
  .timeline-item.right .date-box::before {
    content: '';
    position: absolute;
    right: 80%;
    top: 100%;
    transform: translateY(-50%)rotate(120deg);
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 60px solid #6103ee;
   
  }

  .timeline-item .content-box {
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    position: relative;
  }

  .timeline-item .content-box h3 {
    font-family: headingbold;
    font-size: 25px;
  }

  .timeline-item.left  .content-box ul {
    text-align: right;
    margin-top: 30px;
    padding-left: 0;
}



.timeline-item.left .content-box ul li {
    position: relative;
    margin-bottom: 10px;
    font-family: heading;
    font-size: 25px;
    font-weight: 100;
    color: #fff;
    padding-right: 20px; 
    list-style-type: none;
}

.timeline-item.left .content-box ul li::before {
    content: "";
    position: absolute;
    right: 0; 
    top: 20%;
    width: 10px; 
    height: 10px;
    background-color: #ffbf00; 
    border-radius: 50%; 
}


.timeline-item.right  .content-box ul {
  text-align: left;
  margin-top: 30px;
}


.timeline-item.right .content-box ul li {
  position: relative;
  margin-bottom: 10px;
  font-family: heading;
  font-size: 25px;
  font-weight: 100;
  color: #fff;
  padding-left: 20px; 
  list-style-type: none;
}

.timeline-item.right .content-box ul li::before {
  content: "";
  position: absolute;
  left: 0; 
  top: 20%;
  width: 10px; 
  height: 10px;
  background-color: #ffbf00; 
  border-radius: 50%; 
}


  .timeline-item.left {
    left: 0;
    text-align: right;
  }

  .timeline-item.left .inner {
    text-align: right;
  }

  .timeline-item.right {
    left: 50%;
    text-align: left;
    margin-top: -80px;
  }

  .timeline-item.right .date-box::after {
    content: '';
    position: absolute;
    right: 40px;
    top: 0%;
    transform: translateY(-50%)rotate(240deg);
    width: 0;
    height: 0;
    border-top: 35px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 40px solid #ffbf00;
   
  }

  .timeline-item.right .inner {
    text-align: left;
  }

  @media screen and (max-width: 600px) {
    .timeline::before {
      display:none;
    }
    .why-cls-image {
  width: 300px; 
  margin-top: -108px;
}
.why-cls-image .main-image{
  width: 90%;
}

.why-cls-image .overlay-image {
  width: 300px; 
}

    .timeline-item .content-box h3 {
      padding-left: 20px;
      font-size: 18px;
      line-height: 1.3;
  }

    .timeline-item,
    .timeline-item.left,
    .timeline-item.right {
      width: 100%;
      left: 0;
      text-align: left;
    }

    .timeline-item .date-box span {
      font-size: 20px;
      margin-left: -8px;
  }

  .timeline-item.left .date-box {
    padding: 10px 40px;
    font-size: 40px; 
}

.timeline-item.left .inner {
  text-align: left;
}

.timeline-item.left .content-box ul li {
  font-size: 14px;
  padding-left: 20px;
}

.timeline-item.left .content-box ul li::before {
  left: 0;
}

.timeline-item.left .content-box ul ,.timeline-item.right .content-box ul {
  text-align: left;
  margin-top: 20px;
}

.timeline-item.left .date-box::before , .timeline-item.right .date-box::before{
  border-top: 16px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 30px solid #6103ee;
}

.timeline-item.left .date-box::after {
  right: -10px;
  border-top: 30px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 25px solid #ffbf00;
}

.timeline-item.right .content-box ul li {
  font-size: 14px;
  font-weight: 100;
}

.timeline-item.right .date-box {
  padding: 10px 40px;
  font-size: 40px;
  margin-left: 0px;
}
.timeline-item.right .date-box::after {
  border-top: 20px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid #ffbf00;
}

.timeline-item.right , .timeline-item.left{
  margin-top: 40px;
}


    .timeline-item .content-box {
      margin-top: 10px;
      padding: 0;
    }

    .timeline-item .date-box::after {
      right: -15px;
      border-left: 15px solid #ffbf00;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
    }
  }

  @media (min-width:2000px){
    .timeline {
    max-width: 100%;
    }
    .timeline-item.left .date-box , .timeline-item.right .date-box{
      padding: 10px 140px;
    font-size: 10rem;
    }
    .timeline-item .content-box h3{
      font-size: 40px;
    }
.timeline-item.left .content-box ul li {
    font-size: 45px
}
.timeline-item.right .content-box ul li {
    font-size: 45px
}
.timeline-item.right .date-box::before {
  right:90%
}
  .why-cls-image {
  width: 800px; 
}

.why-cls-image .overlay-image {
  width: 800px; 
}
  }

  /*----------------------
Creatot Reservation
----------------------*/

.creator-reservation {
  position: relative;
  width: 100%;
  height: 100%; 
  background: url('/Images/Homepage_assets/CLS_strip.svg') no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
}

.creator-text-reservation {
  font-size: 3rem;
  font-family: headingbold;
  font-weight: bold;
  text-align: center;
 color: #6103ee;
  font-weight: 100;
  letter-spacing: -2px;
}
.creator-text-reservation  span {
  font-size: 20px;
  font-family: heading;
  font-weight: bold;
  text-align: center;
 color: #000;
  font-weight: bold;
   letter-spacing:0px;
}

@media (max-width: 600px) {
  .creator-reservation {
    padding: 6px 20px;
    background: none;
  }
  .creator-text-reservation {
    font-size: 16px;
    letter-spacing:0px;
  }
  .creator-text-reservation  span {
    font-size: 12px;
  }
  
}

/*----------------------------------
Cls
--------------------------------*/
.cls-wrapper {
  background-color: #ffbf00;
  color: #000;
  padding: 40px 20px;
  position: relative;

}
.cls-bottom-image {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 180px; 
  height: auto;
  z-index: 1; 
}
.cls-bottom-image-1 {
  position: absolute;
  bottom: 0;
  right: 0px;
  width: 280px; 
  height: auto;
  z-index: 0; 
}

.cls-divider {
  width: 10px;
  background-color: #fff;
  height: 100%;
}

.cls-container {
  max-width: 100%;
  margin: 0 auto;
}

.cls-section {
  display: flex;
  align-items: center;
  max-width: 1500px;
  margin: auto;
  padding: 20px;
  gap: 50px;
}

.cls-heading {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: right;
  font-family: headingextra;
  letter-spacing: -2px;
}

.cls-divider {
  width: 2px;
  height: 150px;
  background-color: #fff;
  
}

.cls-content {
  font-size: 18px;
  line-height: 1.3;
  font-family: headingregular;
}

@media (max-width: 768px) {
  .cls-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cls-divider {
    width: 100%;
    height: 3px;
  }
  .cls-bottom-image {
  width: 80px; 
}
.cls-wrapper {
padding-bottom: 150px!important;
}
.cls-mobile{
  padding-bottom: 0px!important;
}
.cls-bottom-image-1 {
    width: 180px;
}
  .cls-heading {
    font-size: 25px;
    text-align: left;
    margin-bottom: 5px;
letter-spacing: -1px;
}
.cls-content {
  font-size: 16px;
}
}

.cls-list {
  padding-left: 20px;
  margin-top: 5px;
}

.cls-list-item {
  margin-bottom: 5px;
}

.cls-bold {
  font-weight: bold;
}

.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.read-more {
  background-color: #6103ee; 
  color: white;
  padding: 20px 50px;
  font-size: 1.5rem;
  border: none;
  box-shadow: 8px 8px 0 #FFF; 
  font-family: heading;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 20px 0;
}

.read-more:hover {
  transform: translateY(-2px);
  box-shadow: 8px 12px 0 #FFF;
}

@media (max-width: 600px) {
  .read-more {
    font-size: 0.9rem;
    padding: 20px 30px;
  }

}


@media (min-width: 768px) {
  .cls-section {
    flex-direction: row;
    align-items: center;
  }

  .cls-heading {
    width: 35%;
    margin-bottom: 0;
  }

  .cls-content {
    width: 45%;
  }
}
@media (min-width: 2000px) {
 .cls-section {
    max-width: 100%;
    gap: 70px;
    padding: 30px;
}
.cls-heading {
    font-size: 4.5rem;
}
.cls-content {
    font-size: 45px;
}
.cls-divider {
    width: 2px;
    height: 280px;
}
.creator-text-reservation span {
    font-size: 30px;
}
.read-more {
    background-color: #6103ee;
    color: white;
    padding: 35px 50px;
    font-size: 3.5rem;
}
}

/*-----------------------------
Award Timeline
--------------------------*/
.awards-section {
  background: 
    linear-gradient(rgba(97, 3, 238, 1), rgba(97, 3, 238, 1)),
    url('/Images/Homepage_assets/latest/whcls.svg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px;
  color: #2d0055;
  position: relative;
}

.top-left-img {
  position: absolute;
  top: 0;
  left: 50px;
  width: 200px; 
  height: auto;
  z-index: 10; 
}

.awards-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.short-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px; 
  background: linear-gradient(to right, #e8483c, #f9b33f); 
  margin: 0px auto;
  width: 50%;
  padding: 20px;
  margin-bottom: 100px;
  margin-top: 50px;

}

.short-img img {
  max-width: 90%;
  height: auto;
}


.awards-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #fff,
    #fff 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 0;
}

.awards-step {
  position: relative;
  margin-bottom: 50px;
  width: 100%;
}

.awards-step:nth-child(even) {
  display: flex;
  justify-content: flex-end;
}

.awards-step:nth-child(odd) {
  display: flex;
  justify-content: flex-start;
}



.awards-card {
  position: relative;
  background: white;
  color: #2d0055;
  width: 100%;
  max-width: 500px;
  border-radius: 0;
  z-index: 1;
  box-shadow: 20px 20px 0 #EF5D21;
   border-top: 1px solid #EF5D21;
  border-left: 1px solid #EF5D21;
  padding: 60px 30px;
}
.award-yellow{
  box-shadow: 20px 20px 0 #ffbf00;
  border-top: 1px solid #ffbf00;
  border-left: 1px solid #ffbf00;
}

/* Triangle Decorations */
.awards-section .awards-card::before,
.awards-section .awards-card::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  z-index: 2;
}

.awards-section .awards-card::before {
  top: -20px;
  right: -90px;
  border-left: 80px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 70px solid #6103ee;
  transform: rotate(60deg);
}

.awards-section .awards-card::after {
  top: 53px;
  right: 5px;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 40px solid #fff;
  transform: rotate(240deg);
  transform-origin: top center;
   filter:
  drop-shadow(1px 0 0 #ff6700)
  drop-shadow(-1px 0 0 #ff6700)
  drop-shadow(0 1px 0 #ff6700)
  drop-shadow(0 -1px 0 #ff6700);
}
.awards-section .award-yellow::after {
  top: 53px;
  right: 5px;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 40px solid #fff;
  transform: rotate(240deg);
  transform-origin: top center;
 filter:
  drop-shadow(1px 0 0 #ffbf00)
  drop-shadow(-1px 0 0 #ffbf00)
  drop-shadow(0 1px 0 #ffbf00)
  drop-shadow(0 -1px 0 #ffbf00);

}

.awards-card h3 {
  font-size: 35px;
  font-weight: bold;
  color: #6103ee;
  margin: 0 0 10px;
  text-transform: uppercase;
  font-family: headingbold;
  line-height: 1;
  letter-spacing: -1px;
}

.awards-date {
  background-color: #ffbf00;
  color: #6103ee;
  font-weight: bold;
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 10px;
  font-size: 20px;
  border-radius: 2px;
  font-family:headingbold;
}

.awards-list {
  margin: 0;
  padding-left: 0px;
  list-style: none;
  font-size: 14px;
  font-family: headingregular;
  margin: 10px 0px 30px 0px;
  line-height: 1.3;
}

.awards-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.awards-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #ff3c3c;
  font-weight: bold;
}

.awards-step-number {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #6103ee;
  font-weight: bold;
  font-size: 50px;
  background: none;
  border: none;
  font-family: headingbold;
}

@media (max-width: 768px) {
  .awards-line {
    left: 10px;
    display: none;
  }

  .short-img {
    height: 100px;
    width: 100%;
    margin-bottom: 50px;
}
  .awards-step {
    justify-content: flex-start !important;
  }

  .awards-card {
    margin-left: 0px;
    padding: 30px;
  }
  .awards-card h3 {
    font-size: 25px;
}
.awards-list li{
  font-size: 12px;
}
.awards-step-number {
  font-size: 35px;
}
.awards-section .awards-card::before,
.awards-section .awards-card::after{
  display: none;
}
.top-left-img {
    left: 50px;
    width: 120px;
}
}

@media (min-width: 768px) and (max-width:1440px){
  .awards-section {
    padding: 50px 90px;
}
.awards-line{
  display: none;
}
}
@media(min-width:2000px){
  .short-img {
    height: 200px;
    width: 22%;
}
}

/*--------------------------------
terms & condition
-----------------------------*/
.button-wrapper-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.read-more-1 {
  background-color: #fff; 
  color: #6103ee;
  padding: 25px 80px;
  font-size: 2rem;
  border: none;
  box-shadow: 8px 8px 0 #ef5d20; 
  font-family: heading;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 20px 0;
}

.read-more-1:hover {
  transform: translateY(-2px);
  
}

@media (max-width: 600px) {
  .read-more-1 {
    font-size: 1rem;
    padding: 20px 40px;
  }
}

  .title-sponsor {
      font-size: 6rem;
      margin-bottom: 40px;
      font-family: heading;
      color: #6103ee;
    }

    .co-sponsor-section {
      margin-bottom: 40px;
    }

    .co-sponsor-lines {
      border-top: 8px solid #ff5800; 
      margin: 0px auto;
      width: 50%;
    }

    .co-sponsors {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      margin: 60px 0;
      font-family: heading;
    }

    .co-sponsors span {
      position: relative;
      font-size: 3.5rem;
      padding: 0 30px;
      color: #6103ee;
      
    }

    .co-sponsors span:not(:last-child)::after {
      content: "";
      position: absolute;
      right: -10px;
      top: 50%;
      transform: translateY(-50%);
      width: 2px;
      height: 40px;
      background: #ff6a1a; 
    }

    .partners {
      display: flex;
      justify-content: center;
      gap: 80px;
      flex-wrap: wrap;
      font-family: heading;
    }

    .partners div {
      font-size: 2.5rem;
      margin-top: 40px;
      color: #6103ee;
      margin-bottom: 50px;
    }

    @media (max-width: 768px) {
      .title-sponsor {
        font-size: 2.5rem;
      }
      .co-sponsors span {
        font-size: 1rem;
      }
      .partners div {
        font-size: 1rem;
      }
      .partners {
    gap: 9px;
}
.co-sponsors {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    margin: 60px 0;
    font-family: heading;
    flex-direction: row;
}

.co-sponsors span {
      padding: 0 0px;
      
    }
    }

    /*-----------------------------
    Thankyou
    ---------------------------*/
     .thankyou-section-wrapper {
    display: flex
;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    background-color: #6103ee;
    padding: 100px 50px;
}

    .thankyou-section {
      font-family: ;
      color: white;
      text-align: center;
      max-width: 100%;
      width: 100%;
    }

    .thankyou-section-checkmark {
      font-size: 60px;
      margin-bottom: 20px;
    }
    .thankyou-section-checkmark img{
      width:100px;
    }

    .thankyou-section-title {
      font-size: 4rem;
      margin-bottom: 10px;
      font-family: heading;
    }

    .thankyou-section-subtitle {
      font-size: 30px;
      margin-bottom: 80px;
      color: #fff;
      font-family: headingregular;
      font-weight: 100;
    }

    .thankyou-section-message {
      font-size: 20px;
      margin-bottom: 80px;
      font-family: headingregular;
    }

    .thankyou-section-footer {
      font-size: 20px;
      font-family: headingregular;
    }

    @media (max-width: 600px) {
      .thankyou-section-checkmark {
        font-size: 50px;
      }
      .thankyou-section-checkmark img{
      width:50px;
    }
    .thankyou-section-wrapper {
    display: flex
;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    background-color: #6103ee;
    padding: 50px 20px;
}

      .thankyou-section-title {
        font-size: 45px;
      }

      .thankyou-section-subtitle {
        font-size: 22px;
        margin-bottom: 35px;
      }

          .thankyou-section-message, .thankyou-section-footer {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    }

       .thankyou-section-wrapper-1 {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100%;
      background-color: #6103ee;
      padding: 100px 50px;
    }

    .thankyou-section-1 {
      color: white;
      text-align: center;
      max-width: 100%;
      width: 100%;
    }
     .thankyou-section-checkmark-1 img{
      width:100px;
    }

    .thankyou-section-checkmark-1 {
      font-size: 60px;
      margin-bottom: 20px;
    }

    .thankyou-section-title-1 {
      font-size: 2.5rem;
      margin-bottom: 40px;
      font-family: heading;
    }

    .thankyou-section-subtitle-1 {
      font-size: 25px;
      margin-bottom: 80px;
      font-family: headingregular;
    }

    .thankyou-section-message-1 {
      font-size: 20px;
      margin-bottom: 15px;
      font-family: headingregular;
    }

    .thankyou-section-footer-1 {
      font-size: 20px;
      font-family: headingregular;
    }

    @media (max-width: 600px) {
      .thankyou-section-checkmark-1 {
        font-size: 50px;
      }

       .thankyou-section-checkmark-1 img{
      width:50px;
    }
      .thankyou-section-wrapper-1 {
      padding: 50px 20px;
    }

      .thankyou-section-title-1 {
        font-size: 20px;
      }

      .thankyou-section-subtitle-1 {
                font-size: 16px;
        margin-bottom: 25px;
      }

          .thankyou-section-message-1, .thankyou-section-footer-1 {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    }

    @media(min-width:2000px){
      .logo img {
    height: 100px;
}
.header{
  height: 140px;
}
.nav-link {
    font-size: 24px;
}
.reserve-button{
  font-size: 24px;
}
.thankyou-section-wrapper-1{
  height: 50vh;
}
.thankyou-section-wrapper{
  height: 50vh;
}

.footer-left a {
    font-size: 30px;
}
.reserve-button-footer{
  font-size: 30px;
}

.social-links, .social-links a {
    font-size: 25px!important;
    margin: 0 10px;
}
.social-links > :nth-child(2) {
    font-size: 25px;
}
.social-links img{
  width: 35px;
  height: 35px;
}
.copyright ,  .copyright a{
    font-size: 20px;
}

    }


    /*-----------------------------------
    Animation
    ------------------------------------*/
    


@media screen and (min-width:1400px) and (max-width:2000px){
.about-section-2 {
    padding: 110px 20px;
}
}

.float-icon {
  animation: floatLeftRight 3s ease-in-out infinite;
}

@keyframes floatLeftRight {
 0%   { transform: rotate(0deg); }
  25%  { transform: rotate(-3deg); }
  50%  { transform: rotate(3deg); }
  75%  { transform: rotate(-2deg); }
  100% { transform: rotate(0deg); }
}

/*-----------------------------
Sponser
-----------------------------*/
.sponser-section {
  position: relative;
  width: 100%;
  height: 400px;
   background: #EF5D21 
    url('/Images/Homepage_assets/04.svg') no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sponser-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sponser-about {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.sponser-subheading {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 300;
  font-family: heading;
  margin-bottom: 20px;
}

.sponser-heading {
  font-size: 4rem;
  font-weight: 100;
  line-height: 1;
  margin-bottom: 0px;
  letter-spacing: -2px;
}

@media (max-width:768px){

  .sponser-subheading {
  font-size: 20px;
}

.sponser-heading {
  font-size: 25px;
  letter-spacing: 0px;
}
.sponser-section {
    height: 200px;
}

}
@media (min-width:2000px){
  .sponser-section {
    height: 600px;
  }
  .sponser-subheading {
    font-size: 4rem;
  }
  .sponser-heading {
    font-size: 6rem;
  }
}

/*----------------------------------------
Sponser section 2
-------------------------------------*/
.sponser-section-wrapper {
 background: url(/Images/Homepage_assets/BG_overlay.svg), linear-gradient(rgba(255, 191, 0, 1), rgba(255, 191, 0, 1)) no-repeat center center / cover;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.sponser-stat-block {
  display: flex;
  align-items: center; 
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.sponser-ribbon {
  position: relative;
  background:  #ef5d21;
  color: #fff;
  font-weight: bold;
  font-size: 3rem;
  padding: 15px 40px;
  text-align: center;
  font-family: helvaticamedium ;
  align-items: center;
  justify-content: center;  
}

.long-ribbon{
  margin-left: -230px;
}

.sponser-ribbon strong{
  font-size: 2.5rem; 
  vertical-align: text-top; 
}

.sponser-ribbon::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -10px;
  width: 0;
  height: 0;
  border-left: 40px solid #6103ee;
  border-top: 40px solid transparent;
  border-bottom: 20px solid transparent;
  transform: rotate(60deg);
}


.sponser-ribbon::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: 30px;
  width: 0;
  height: 0;
  border-right: 30px solid #ef5d21;
  border-bottom: 40px solid transparent;
}

.sponser-description {
  font-size: 1.8rem;
  color: #000;
  max-width: 100%;
  line-height: 1;
  text-align: left;
  font-family: heading;
}

/* Responsive layout */
@media (max-width: 768px) {
  .sponser-stat-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .long-ribbon{
  margin-left: 0px;
}

  .sponser-description {
    font-size: 1.3rem;
        max-width: 100%;
        text-align: center;
  }
  .sponser-ribbon::before {
  border-left: 30px solid #6103ee;
  border-top: 30px solid transparent;
  border-bottom: 20px solid transparent;
  transform: rotate(60deg);
}

  .sponser-ribbon {
    font-size: 1.5rem;
  }
  .sponser-ribbon strong{
  font-size: 1rem; 
  vertical-align: text-top; 
}
}

@media (min-width:2000px){
  .sponser-stat-block {
    gap: 90px;
  }
  .sponser-ribbon{
    font-size: 5rem;
  }
  .sponser-description {
    font-size: 2.8rem;
  }
  .sponser-section-wrapper {
     padding: 100px 20px;
  }
  .long-ribbon {
    margin-left: -380px;
}
}
/*------------------------------
Sponser section 2
-----------------------------*/

    .sponser-banner-wrapper {
      border-top: 6px solid #EF5D21;
      border-bottom: 6px solid #EF5D21;
      background-color: #ffffff;
      padding: 20px 15px;
      display: flex;
      justify-content: center;
    }

    .sponser-banner {
      display: flex;
      flex-wrap: wrap;
      max-width: 100%;
      width: 100%;
      border: 2px solid #6103ee;
      margin: 0 50px;
    }

    .sponser-left, .sponser-right {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 14px 20px;
      font-size: 30px;
      font-family: heading;
    }

    .sponser-left {
      background-color: #ffffff;
      color: #EF5D21;
      flex: 1;
      white-space: nowrap;
    }

    .sponser-right {
      background-color: #6103ee;
      color: #ffffff;
      flex: 2;
      flex-wrap: wrap;
      gap: 10px;
    }

    .sponser-divider {
      padding: 0 8px;
      font-weight: bold;
    }

    @media (max-width:768px){
      .sponser-left, .sponser-right {
      font-size: 20px;
    }
    .sponser-right span{
      font-size: 16px;
    }
    }

    @media (min-width:2000px) {
       .sponser-left, .sponser-right {
      font-size: 40px;
    }
    }

    /*-----------------------
    Sponsor section 3
    ----------------------*/
      .sponser-section-1 {
      max-width: 100%;
      margin: 40px auto;
      padding: 40px 20px;
      text-align: center;
    }

 .sponser-badge {
  display: inline-block;
  padding: 12px 20px;
  color: #fff;
  font-weight: bold;
  font-size: 35px;
  background: 
    url('/Images/Homepage_assets/BG.svg'); 
  background-size: contain;
  background-position: center;
  margin: 0 auto;
  font-family: heading;
  background-repeat: no-repeat;
}
.sponser-badge-1{
   padding: 12px 55px;
}
.sponser-badge-2{
   padding: 12px 40px;
}



    .sponser-line {
      width: 3px;
      height: 50px;
      background-color: #EF5D21;
      margin: 20px auto;
    }

    .sponser-text {
      font-size: 20px;
      margin-bottom: 20px;
      line-height: 1.5;
      padding: 0 10px;
      font-family: headingregular;
      color: #666;
      margin-top: 10px;
    }

    .sponser-pillars {
      font-size: 20px;
      margin-bottom: 20px;
      line-height: 1.5;
      padding: 0 10px;
      font-family: headingregular;
      color: #666;
      margin-top: 10px;
    }

    .sponser-star {
          color: #6103ee;
    font-weight: bold;
    margin: 0 5px;
    font-size: 10px;
    vertical-align: text-top;
    }

    .sponser-creator{
      color:#fff;
      font-size: 30px;
    }

    @media (max-width: 600px) {
      .sponser-badge {
        font-size: 30px;
        padding: 10px 19px;
      }
      .sponser-badge-1 {
        font-size: 30px;
        padding: 10px 47px;
      }
      .sponser-badge-2 {
        font-size: 30px;
        padding: 10px 38px;
      }
      .sponser-text {
        font-size: 15px;
      }
       .sponser-star {
          color: #6103ee;
    font-weight: bold;
    margin: 0 2px;
    font-size: 8px;
    vertical-align: text-top;
    }
      .sponser-pillars {
        font-size: 14px;
        gap: 4px;
      }
      .sponser-creator{
      color:#fff;
      font-size: 18px;
    }
    }
    @media (min-width: 2000px){
      .sponser-badge-1{
        font-size: 70px;
        padding: 20px 100px!important;
      }
       .sponser-badge{
        font-size: 70px;
        padding:20px 33px;
      }
       .sponser-badge-2{
        font-size: 70px;
        padding: 20px 75px;
      }
      .sponser-text {
    font-size: 40px;
      }
      .sponser-pillars {
    font-size: 40px;
      }
      .sponser-line {
    width: 5px;
    height: 120px;
      }
      .sponser-creator {
    color: #fff;
    font-size: 60px;
}
    }

    /*----------------------------------
Sponser Cls
--------------------------------*/
.sponser-cls-wrapper {
   background-color: #ff3c3c;
  background-image: url('/Images/Homepage_assets/04.svg'); 
   background-repeat: no-repeat;
 background-position: top -250px right -300px;
  background-size: 550px auto; 
  color: #fff;
  padding: 40px 20px 100px 20px;
  position: relative;
}

.cls-bottom-image {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 180px;
  height: auto;
  z-index: 1;
}
.cls-bottom-image-1 {
  position: absolute;
  bottom: 0;
  right: 0px;
  width: 280px;
  height: auto;
  z-index: 0;
}

.sponser-cls-divider {
  width: 10px;
  background-color: #fff;
  height: 100%;
}

.sponser-cls-container {
  max-width: 100%;
  margin: 0 auto;
}

.sponser-cls-section {
  display: flex;
  align-items: center;
  max-width: 1500px;
  margin: auto;
  padding: 20px;
  gap: 50px;
}

.sponser-cls-heading {
  font-size: 3.5rem;
  font-weight: bold;
  text-transform: capitalize  ;
  text-align: right;
  font-family: helvaticamedium;
  letter-spacing: -2px;
  line-height: 1;
}
.sponser-cls-heading span {
  font-size: 2rem;
  font-weight: 100;
  text-transform: capitalize;
  text-align: right;
  font-family: headingregular;
  letter-spacing: -2px;
}



.sponser-cls-divider {
  width: 2px;
  height: 100px;
  background-color: #fff;
}

.sponser-cls-content {
  font-size: 25px;
  line-height: 1.3;
  font-family: headingregular;
}

@media (max-width: 768px) {
  .sponser-cls-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .sponser-cls-divider {
    width: 100%;
    height: 3px;
  }
  .sponser-cls-heading span {
    font-size: 1.5rem;
    letter-spacing: 0px;
}

  .cls-bottom-image {
    width: 80px;
  }

  .sponser-cls-wrapper {
    padding-bottom: 150px !important;
  }

  .sponser-cls-mobile {
    padding-bottom: 0px !important;
  }

  .cls-bottom-image-1 {
    width: 180px;
  }

  .sponser-cls-heading {
    font-size: 25px;
    text-align: left;
    margin-bottom: 5px;
    letter-spacing: -1px;
    line-height: 1.1;
  }

  .sponser-cls-content {
    font-size: 16px;
  }
}

.sponser-cls-list {
  padding-left: 20px;
  margin-top: 5px;
}

.sponser-cls-list-item {
  margin-bottom: 5px;
}

.sponser-cls-bold {
  font-weight: bold;
}

.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.read-more {
  background-color: #6103ee;
  color: white;
  padding: 20px 50px;
  font-size: 1.5rem;
  border: none;
  box-shadow: 8px 8px 0 #FFF;
  font-family: heading;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 20px 0;
}

.read-more:hover {
  transform: translateY(-2px);
  box-shadow: 8px 12px 0 #FFF;
}

.heading-bottom{
  font-size: 2.5rem;
}

@media (max-width: 700px) {
  .read-more {
    font-size: 0.9rem;
    padding: 20px 30px;
  }
  .heading-bottom{
  font-size: 1.5rem!important;
  letter-spacing: 0px !important;
}
}

@media (min-width: 768px) {
  .sponser-cls-section {
    flex-direction: row;
    align-items: center;
  }

  .sponser-cls-heading {
    width: 35%;
    margin-bottom: 0;
  }

  .sponser-cls-content {
    width: 45%;
  }
  
}

@media (min-width: 2000px) {
  .sponser-cls-section {
    max-width: 100%;
    gap: 70px;
    padding: 30px;
  }

  .sponser-cls-heading {
    font-size: 5.5rem;
  }

  .sponser-cls-content {
    font-size: 60px;
  }

  .sponser-cls-divider {
    width: 2px;
    height: 280px;
  }

  .creator-text-reservation span {
    font-size: 30px;
  }

  .read-more {
    background-color: #6103ee;
    color: white;
    padding: 35px 50px;
    font-size: 3.5rem;
  }

  .heading-bottom{
    font-size: 4.5rem;
  }
  .sponser-cls-heading span {
    font-size: 4rem;
  }
}

/*----------------------------------------
Sponser end
-------------------------------------------*/
.sponsore-bottom {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 50px 20px;
  text-align: center;
}
.top-left-icon {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0px;
}

.top-left-icon img {
  width: 150px;
  height: auto;
}

.top-center-icon{
  text-align: center;
}
.top-center-icon img{
  width: 600px;
  margin-top: -50px;
}

.sponser-section-end{
background-color: rgba(97, 3, 238, 1);
    background-image: url(/Images/Homepage_assets/latest/whcls.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 50px;
    position: relative;
}
.sponsore-item {
  flex: 1 1 250px;
  max-width: 300px;
  color: white;
}

.sponsore-icon {
  background: white;
  border-radius: 50%;
  width: 220px;
  height: 220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 0 #ffbf00;
  position: relative;
}

.sponser-icon-orange{
   box-shadow: 0 10px 0 #ff5800;
}

.sponsore-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.sponsore-line {
  width: 3px;
  height: 60px;
  background: #ffbf00;
  margin: 50px auto;
}

.sponsore-item h3 {
  font-size: 2rem;
  margin: 10px 0 5px;
  font-family: heading;
  font-weight: 100;
}

.sponsore-item p {
  font-size: 1rem;
  color: #f3f4f6;
  font-family: heading;
  font-weight: 100;
}


@media (min-width:2000px){
  .sponsore-item {
    flex: 1 1 250px;
    max-width: 450px;
    color: white;
}
.sponsore-bottom {
    gap: 300px;
}
.sponsore-icon {
    background: white;
    border-radius: 50%;
    width: 350px;
    height: 350px;
}
.sponsore-item h3 {
    font-size: 3rem;
}
.sponsore-item p {
    font-size: 2rem;
}
.contact-nfo {
    max-width: 1500px!important;
}
.contact-nfo h2 {
    font-size: 55px!important;
}
.contact-nfo .contact-block {
    font-size: 30px!important;
}
.contact-nfo p {
    margin-bottom: 40px;
    font-size: 35px!important;
}
}

@media (max-width:768px){
  .top-center-icon {
    text-align: center;
    padding-top: 140px;
}
.top-center-icon img {
    width: 100%;
    margin-top: 20px;
    padding:0px 20px
}
}

@media screen and (min-width:900px) and (max-width:1400px){
  .logo img {
    height: 60px;
}
.header {
    padding: 20px 70px;
    height: 80px;
}
.top-center-icon img {
    width: 500px;
    margin-top: -50px;
}
  
    .header-img{
      max-width: 300px;
    }
    .news-section .right h2 {
    font-size: 35px;
    }
    .news-section .right h4 {
    margin-bottom: 25px;
    }
    .news-section .right p {
    font-size: 13px;
    }
    .our-card h1 {
    font-size: 3rem;
    word-spacing: -10px;
}
.our-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0px;
}
.our-card-item-1 .number {
    font-size: 4rem;
}
.our-card-item-1 .title {
    font-size: 1.3rem;
}
.our-card-item-1 .description {
    font-size: 13px;
}
.content p {
    font-family: headingregular;
    font-size: 14px;
    margin-top: 14px;
}
.creator-award-home .left img {
    max-width: 250px;
    height: auto;
}
.creator-award-home .right{
  margin-top: 50px;
}
.creator-award-home .right img {
    width: 180px;
}
.creator-award-home .right p {
    font-size: 13px;
}
.announcement-section h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;}
    .announcement-section h1 {
    font-size: 60px;
    }
    .announcement-image {
    width: 400px;
}
    .best-award-item h3 {
        font-size: 1rem;
    }
    .best-award-item p {
    font-size: 14px;
    }
    .why-cls-image {
    position: relative;
    display: inline-block;
    width: 280px;
    }
    .why-cls-image .overlay-image {
    width: 280px;
}
.timeline-item.left .date-box , .timeline-item.right .date-box {
    font-size: 3.5rem;
    margin-right: 0px;
}
.timeline-item .date-box span {
    font-size: 1.3rem;
    margin-left: -16px;
}
.timeline-item.left .date-box::after {
    transform: translateY(-50%) rotate(88deg);
    border-top: 35px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 35px solid #ffbf00;
}
.timeline-item .content-box h3 {
    font-size: 18px;
}
.timeline-item.left .content-box ul li , .timeline-item.right .content-box ul li {
    font-size: 18px;
}
.accordion-title {
    font-size: 2.5rem;
}
.accordion-header {
    font-size: 14px;
}
.accordion-content {
    font-size: 12px;
}
.title-sponsor {
    font-size: 3.5rem;
}
.co-sponsors span {
    position: relative;
    font-size: 2rem;
}
.partners div {
    font-size: 1.5rem;
}
.co-sponsor-lines {
    border-top: 5px solid #ff5800;
    margin: 0px auto;
    width: 40%;
}
.about-cls p {
    font-size: 14px;
    max-width: 700px;
}
.about-cls h3 {
    font-size: 2rem;
}
.about-cls h2 {
    font-size: 3rem;
}
.about-section-2 h2 strong {
    font-size: 2.5rem;
}
.about-section-2 h2 {
    font-size: 2rem;
}
.circle {
    width: 300px;
    height: 300px;
}
.circle-wrapper::before {
    width: 300px;
    height: 300px;
}
.circle.white {
    width: 320px;
    height: 320px;
}
.circle-wrapper-red::before {
    width: 320px;
    height: 320px;
}
.circle h3 {
    margin-bottom: 10px;
    font-size: 20px;
}
.circle p {
    font-size: 16px;
}
.creator-text {
    font-size: 22px;
}
.creator-text-reservation span {
    font-size: 16px;
}
.creator-text-reservation {
    font-size: 1.5rem;
}
.cls-content {
    font-size: 14px;
}
    .cls-heading {
        font-size: 1.5rem;
        letter-spacing: -1px;
    }
.cls-divider {
    width: 2px;
    height: 110px;
    background-color: #fff;
}
.cls-section {
    gap: 30px;
}
.reserve-section h2 {
    font-size: 3rem;
}
.reserve-section p {
    font-size: 1.5rem;
}
.reserve-item img {
    width: 200px;
    height: 156px;
    margin-bottom: 40px;
}
.reserve-item a {
    font-size: 1rem;
}
.jury-poster {
    max-width: 350px;
}
.creator-text-award {
    font-size: 20px;
}
.creator-award-about .creator-image img {
    max-width: 250px;
}
.creator-award-about .creator-text-award h2 {
    font-size: 23px;
    letter-spacing: -1px;
}
.creator-award-about .creator-text-award p {
    font-size: 13px;
}
.creator-award-about .creator-text-award h3 {
    font-size: 22px;
    letter-spacing: -1px;
}
.best-award h2 {
    font-size: 2rem;
}
.creator-award-banner h2 {
    font-size: 20px;
    margin-bottom: 0px;
}
.creator-award-banner h1 {
    font-size: 30px;
}
.short-img {
    height: 130px;
    width: 40%;
}
.awards-card h3 {
    font-size: 25px;
}
.awards-date {
    font-size: 15px;
}
.awards-list {
    font-size: 13px;
}
.awards-step-number {
    font-size: 40px;
}
.awards-card {
    max-width: 380px;
}
.nominee-button {
    padding: 20px 70px;
    font-size: 1.3rem;
}
.nominee-submit h2 {
    font-size: 3rem;
}
.nominee-icon img {
    width: 150px;
}
.reserve-section-contact h2 {
    font-size: 3rem;
}
.reserve-section-contact p {
    font-size: 2rem;
}
.reserve-item-contact img {
    width: 200px;
    height: 150px;
}
.reserve-item-contact a {
    padding: 30px 80px;
    font-size: 1.5rem;
}
.read-more-1 {
    padding: 30px 40px;
    font-size: 1.5rem;
}
.checkbox {
    font-size: 14px;
}
.nominee-field-group label {
    font-size: 1.3rem;
}
.nominee-field-group input, .nominee-field-group textarea {
    font-size: 1.3rem;
    padding: 10px 10px;
}
h1 {
    text-align: center;
    font-size: 2.5rem;
}
.buttons button {
    padding: 15px 40px;
    font-size: 16px;
}
.cls-bottom-image {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 150px;
    height: auto;
    z-index: 1;
}
.reserve-bottom-image {
    right: 20px;
    width: 150px;
}
.creator-bottom-image {
    right: 30px;
    width: 110px;
}
.cls-bottom-image-1 {
    position: absolute;
    bottom: 0;
    right: 0px;
    width: 200px;
    height: auto;
    z-index: 0;
}
.top-left-img {
    left: 50px;
    width: 180px;
}
.footer-left a {
    font-size: 14px;
}
.reserve-button-footer {
    font-size: 12px;
}
.social-links, .social-links a {
    font-size: 12px;
}
.social-links > :nth-child(2) {
    color: #fff;
    font-size: 12px;
}
.copyright, .copyright a {
    font-size: 10px;
}
.sponser-subheading {
  font-size:2rem!important;
}

.sponser-heading {
  font-size: 3.5rem!important;
}
.sponser-left, .sponser-right{
  font-size: 25px!important;
}
.sponser-cls-heading {
    font-size: 2.5rem!important;
}
.sponser-cls-heading span {
    font-size: 1.5rem!important;
    letter-spacing: -1px!important;
}
.sponser-cls-content {
    font-size: 18px!important;
}
.cls-bottom-image {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 100px!important;
    height: auto;
    z-index: 1;
}
.heading-bottom{
  font-size: 2rem!important;
  letter-spacing: 0px !important;
}
}

@media screen and (min-width:768px) and (max-width:900px){
  .cls-bottom-image {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 100px!important;
    height: auto;
    z-index: 1;
}
.cls-bottom-image-1 {
    right: 0px;
    width: 180px!important;
}
.reserve-bottom-image {
    right: 0px!important;
    width: 120px!important;
}
    .creator-bottom-image {
        right: 0px!important;
        width: 100px!important;
    }
    .top-left-img {
    left: 50px;
    width: 150px!important;
}
.corner-image {
  width: 30px; 
}
.top-right {
  width: 50px;
}
.sponser-subheading {
  font-size:1.5rem!important;
}

.sponser-heading {
  font-size: 2.5rem!important;
}
.sponser-section {
    height: 300px!important;
}
.sponser-left, .sponser-right{
  font-size: 16px!important;
}
.sponser-cls-heading {
    font-size: 2rem!important;
}
.sponser-cls-heading span {
    font-size: 1.3rem!important;
}


.sponser-cls-content {
    font-size: 16px!important;
}

.heading-bottom{
  font-size: 1.5rem!important;
  letter-spacing: 0px !important;
}
}



/* 
@media screen and (min-width:768px) and (max-width:1400px){
  .logo img {
    height: 60px;
}
.header {
    padding: 20px 70px;
}
.nav-link {
        font-size: 14px;
    }
    .reserve-button {
        padding: 15px 20px;
        font-size: 14px;
    }
    .header-img{
      max-width: 300px;
    }
    .news-section .right h2 {
    font-size: 35px;
    }
    .news-section .right h4 {
    margin-bottom: 25px;
    }
    .news-section .right p {
    font-size: 13px;
    }
    .our-card h1 {
    font-size: 3.5rem;
    word-spacing: -10px;
}
.our-card h2 {
    font-size: 2rem;
    margin-bottom: 0px;
}
.our-card-item-1 .number {
    font-size: 5rem;
}
.our-card-item-1 .title {
    font-size: 1.5rem;
}
.our-card-item-1 .description {
    font-size: 16px;
}
.content p {
    font-family: headingregular;
    font-size: 14px;
    margin-top: 14px;
}
.creator-award-home .left img {
    max-width: 250px;
    height: auto;
}
.creator-award-home .right{
  margin-top: 50px;
}
.creator-award-home .right img {
    width: 200px;
}
.creator-award-home .right p {
    font-size: 15px;
}
.announcement-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;}
    .announcement-section h1 {
    font-size: 80px;
    }
    .announcement-image {
    width: 500px;
}
    .best-award-item h3 {
        font-size: 1rem;
    }
    .best-award-item p {
    font-size: 14px;
    }
    .why-cls-image {
    position: relative;
    display: inline-block;
    width: 320px;
    }
    .why-cls-image .overlay-image {
    width: 320px;
}
.timeline-item.left .date-box , .timeline-item.right .date-box {
    font-size: 4rem;
    margin-right: 0px;
}
.timeline-item .date-box span {
    font-size: 1.5rem;
    margin-left: -16px;
}
.timeline-item.left .date-box::after {
    transform: translateY(-50%) rotate(88deg);
    border-top: 35px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 35px solid #ffbf00;
}
.timeline-item .content-box h3 {
    font-size: 20px;
}
.timeline-item.left .content-box ul li , .timeline-item.right .content-box ul li {
    font-size: 20px;
}
.accordion-title {
    font-size: 3rem;
}
.accordion-header {
    font-size: 16px;
}
.accordion-content {
    font-size: 14px;
}
.title-sponsor {
    font-size: 4rem;
}
.co-sponsors span {
    position: relative;
    font-size: 2.5rem;
}
.partners div {
    font-size: 2rem;
}
.about-cls p {
    font-size: 16px;
    max-width: 700px;
}
.about-cls h3 {
    font-size: 2.5rem;
}
.about-cls h2 {
    font-size: 3.5rem;
}
.about-section-2 h2 strong {
    font-size: 3rem;
}
.about-section-2 h2 {
    font-size: 2.5rem;
}
.circle {
    width: 300px;
    height: 300px;
}
.circle-wrapper::before {
    width: 300px;
    height: 300px;
}
.circle.white {
    width: 320px;
    height: 320px;
}
.circle-wrapper-red::before {
    width: 320px;
    height: 320px;
}
.circle h3 {
    margin-bottom: 10px;
    font-size: 25px;
}
.circle p {
    font-size: 18px;
}
.creator-text {
    font-size: 22px;
}
.creator-text-reservation {
    font-size: 2rem;
}
.cls-content {
    font-size: 14px;
}
    .cls-heading {
        font-size: 1.5rem;
        letter-spacing: -1px;
    }
.cls-divider {
    width: 2px;
    height: 110px;
    background-color: #fff;
}
.cls-section {
    gap: 30px;
}
.reserve-section h2 {
    font-size: 3.5rem;
}
.reserve-section p {
    font-size: 2rem;
}
.reserve-item img {
    width: 200px;
    height: 156px;
    margin-bottom: 40px;
}
.reserve-item a {
    font-size: 1rem;
}
.jury-poster {
    max-width: 300px;
}
.creator-text-award {
    font-size: 20px;
}
.creator-award-about .creator-image img {
    max-width: 250px;
}
.creator-award-about .creator-text-award h2 {
    font-size: 25px;
}
.creator-award-about .creator-text-award p {
    font-size: 15px;
}
.creator-award-about .creator-text-award h3 {
    font-size: 25px;
}
.best-award h2 {
    font-size: 2.5rem;
}
.creator-award-banner h2 {
    font-size: 25px;
    margin-bottom: 0px;
}
.creator-award-banner h1 {
    font-size: 35px;
}
.short-img {
    height: 130px;
    width: 40%;
}
.awards-card h3 {
    font-size: 25px;
}
.awards-date {
    font-size: 15px;
}
.awards-list {
    font-size: 13px;
}
.awards-step-number {
    font-size: 40px;
}
.awards-card {
    max-width: 380px;
}
.nominee-button {
    padding: 20px 70px;
    font-size: 1.3rem;
}
.nominee-submit h2 {
    font-size: 3rem;
}
.nominee-icon img {
    width: 150px;
}
.reserve-section-contact h2 {
    font-size: 3rem;
}
.reserve-section-contact p {
    font-size: 2rem;
}
.reserve-item-contact img {
    width: 200px;
    height: 150px;
}
.reserve-item-contact a {
    padding: 30px 80px;
    font-size: 1.5rem;
}
.read-more-1 {
    padding: 30px 80px;
    font-size: 1.5rem;
}
.checkbox {
    font-size: 10px;
}
.nominee-field-group label {
    font-size: 1.3rem;
}
.nominee-field-group input, .nominee-field-group textarea {
    font-size: 1.3rem;
    padding: 10px 10px;
}
h1 {
    text-align: center;
    font-size: 2.5rem;
}
.buttons button {
    padding: 15px 40px;
    font-size: 16px;
}
.cls-bottom-image {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 150px;
    height: auto;
    z-index: 1;
}
.reserve-bottom-image {
    right: 20px;
    width: 150px;
}
.creator-bottom-image {
    right: 30px;
    width: 110px;
}
.cls-bottom-image-1 {
    position: absolute;
    bottom: 0;
    right: 0px;
    width: 200px;
    height: auto;
    z-index: 0;
}
.top-left-img {
    left: 50px;
    width: 180px;
}
}

@media screen and (min-width:768px) and (max-width:900px){
  .cls-bottom-image {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 100px!important;
    height: auto;
    z-index: 1;
}
.cls-bottom-image-1 {
    right: 0px;
    width: 180px!important;
}
.reserve-bottom-image {
    right: 0px!important;
    width: 120px!important;
}
    .creator-bottom-image {
        right: 0px!important;
        width: 100px!important;
    }
    .top-left-img {
    left: 50px;
    width: 150px!important;
}
.corner-image {
  width: 30px; 
}
.top-right {
  width: 50px;
}
} */

 .contact-nfo {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .contact-nfo h2 {
      font-size: 35px;
      font-weight: bold;
      margin-bottom: 15px;
      font-family: heading;
      color: #6103ee;
      font-weight: 100;
    }

    .contact-nfo a {
      color: #6103ee;
      text-decoration: none;
    }

    .contact-nfo a:hover {
      text-decoration: underline;
    }

    .contact-nfo .columns {
      display: flex;
      flex-direction: row;
      gap: 40px;
      flex-wrap: wrap;
    }

    .contact-nfo .column {
      flex: 1;
      min-width: 280px;
    }

    .contact-nfo p {
      margin-bottom: 40px;
      font-size: 20px;
      line-height: 1.6;
      color: #6103ee;
      font-family: heading;
      font-weight: 100;
      margin-top: 40px;
    }

    .contact-nfo .contact-block {
      margin: 20px 0px;
      color: #6103ee;
      font-family: heading;
      font-size: 20px;
      line-height: 1.5;
    }

    .contact-nfo strong {
      display: inline-block;
      margin-bottom: 4px;
    }

    @media (max-width:768px){
      .contact-nfo h2 {
    font-size: 30px;
      }
      .contact-nfo .contact-block {
    margin: 20px 0px;
    color: #6103ee;
    font-family: heading;
    font-size: 16px;
    line-height: 1.5;
}
    }

        .sponsor-section-1 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 100px 20px;
      position: relative;
      text-align: center;
      
    }

    .sponsor-btn-1 {
          background: #6103ee;
    color: #fff;
    border: none;
    padding: 30px 80px;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: heading;
    box-shadow: 12px 12px 0 #ffbf00;
    text-decoration: none;
    margin: 50px 0px;
    cursor: default;
    }

 

    .partners-1 {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      margin-top: 150px;
      position: relative;
    }

    .product-block-small-2{
      margin-left: -70px;
      margin-top: -17px;
    }
    .product-block-small-1{
      margin-right: 30px;
    }


    .partner-block-1 {
      flex: 1;
      min-width: 250px;
      text-align: end;
      margin-bottom: 40px;
    }
    .partner-block-2 {
      flex: 1;
      min-width: 250px;
      text-align: start;
      margin-bottom: 40px;
    }

    .partner-block-1 img {
      max-width: 150px;
      height: auto;
      margin-bottom: 10px;
    }

    .partner-block-1 small {
      display: block;
      color: #000;
      font-weight: bold;
      margin-bottom: 40px;
      font-family: heading;
      font-size: 20px;
      font-weight: 100;
    }

    .divider-1 {
      width: 3px;
      height: 60px;
      background: #000;
      margin: 0 100px;
    }

   
    

    @media screen and (max-width: 768px) {
      .partners-1 {
        flex-direction: column;
        gap: 40px;
      }
       .product-block-small-2{
      margin-left: 0px;
    }
    .product-block-small-1{
      margin-right: 0px;
    }


      .divider-1 {
        display: none;
      }

      .hand-illustration-1 {
        position: relative;
        margin: 0 auto;
        display: block;
        margin-top: 30px;
      }
    }

    @media (max-width:768px){
       .sponsor-btn-1 {
          background: #6103ee;
    color: #fff;
    border: none;
    padding: 30px 30px;
    font-size: 1.5rem;
    margin: 20px 0px;
       }
       .sponsor-section-1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 130px 20px;
       }
       .partner-block-1 , .partner-block-2{
  text-align: center;
}
    }

    @media (min-width:1500px){
      .main-bottom{
        width:140px
      }
      .sponsor-section-1 {
    max-width: 100%;
      }
    }
    @media (min-width:2000px){
      .main-bottom{
        width:140px
      }
      .sponsor-section-1 {
    max-width: 100%;
      }
      .partner-block-1 img {
    max-width: 250px;
      }
      .partner-block-1 small {
    font-size: 30px;
    font-weight: 100;
}
.product-block-small-1{
      margin-right: 50px;
    }
    .product-block-small-2{
      margin-top: -40px;
      margin-bottom: 70px!important;
    }
  
.chd-logo{
      max-width:300px!important;
    }
    }

    .chd-logo{
      max-width:230px!important;
    }

   
    /*-----------------------------
    Partners
    ------------------------------*/
        .our-partner-logo-section {
      max-width: 100%;
      margin: 0 auto;
      text-align: center;
      position: relative;
       padding-top: 100px;
    }

    .our-partner-logo-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
      gap: 50px;
     
    }

    .our-partner-logo-item {
      width: 300px;
      height: 160px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
    }

    .our-partner-logo-item p {
      font-size:17px;
      color: #666;
      margin-bottom: 20px;
      font-family: heading;
      margin-left: -40px;
    }

    .our-partner-logo-item img {
      height: 80px;
      max-width: 100%;
      object-fit: contain;
      display: block;
      border-right: 1px solid #000;
      padding-right: 50px;
    }

    .partner-logo-big img{
       height: 100px!important;
       border-right: 0px solid #000;
      padding-right: 0px;
      margin-top: -20px;
    }

    .our-partner-logo-bottom {
      margin-top: 10px;
    }

    .our-partner-logo-bottom p {
       font-size:17px;
      color: #666;
      margin-bottom: 20px;
      font-family: heading;
    }

    .our-partner-logo-bottom img {
      height: 80px;
      object-fit: contain;
      max-width: 100%;
      margin-left: 0px;
    }

    .our-partner-logo-hand {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 60px;
    }

    .cls-partner-image {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 125px; 
  height: auto;
  z-index: 1; 
}

    @media (max-width: 768px) {
      .our-partner-logo-item {
        width: 40%;
      }
.cls-partner-image {
    width: 55px;
}
.partner-logo-big img
{
  margin-left: 0px;
}
  
      .our-partner-logo-item img {
    border-right: 0px solid #000;
    padding-right: 0px;
}
.our-partner-logo-item p{
  margin-left: 0px;
}
.our-partner-logo-bottom {
    margin-top: 20px;
}
    }

    @media (max-width: 480px) {
      .our-partner-logo-item {
        width: 100%;
      }

      .our-partner-logo-bottom img {
        height: 70px;
      }
    }

    @media (min-width:2000px){
      .our-partner-logo-bottom img {
    height: 140px;
      }
      .partner-logo-big img {
    height: 270px !important;
      }
      .our-partner-logo-item img {
    height: 140px;
      }
      .our-partner-logo-item p {
    font-size: 32px;
      }
      .our-partner-logo-bottom {
    margin-top: 100px;
}
.our-partner-logo-item {
    width: 600px;
}
.our-partner-logo-bottom p {
    font-size: 32px;
}
.cls-partner-image {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 170px;
}
    }


    .hidden{
      visibility: hidden;
    }

    @media (max-width:1024px){
      .hidden{
      display: none!important;
    }
    }

    
    @media (min-width:2505px){
      .hidden{
      display: none!important;
    }
    }

     @media (min-width:1760px) and (max-width:2020px){
      .hidden{
      display: none!important;
    }
    }
