@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@1,500&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
body,html{
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background-color: #fff;
}
::selection {
  color: white;           /* Text color while selecting */
  background: grey;    /* Background color while selecting */
}
@font-face {
    font-family: 'kola';
    src: url(../fonts/Kola-Regular.ttf);
}
@font-face {
    font-family: 'X';
    src: url(../fonts/Xirod.otf);
}
/* Aktiv Grotesk Fonts */
@font-face {
  font-family: 'ak-Black';
  src: url('../fonts/aktiv/AktivGrotesk-Black.ttf') format('truetype');
}

@font-face {
  font-family: 'ak-BlackItalic';
  src: url('../fonts/aktiv/AktivGrotesk-BlackItalic.ttf') format('truetype');
}

@font-face {
  font-family: 'ak-Bold';
  src: url('../fonts/aktiv/AktivGrotesk-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'ak-BoldItalic';
  src: url('../fonts/aktiv/AktivGrotesk-BoldItalic.ttf') format('truetype');
}

@font-face {
  font-family: 'ak-Hairline';
  src: url('../fonts/aktiv/AktivGrotesk-Hairline.ttf') format('truetype');
}

@font-face {
  font-family: 'ak-HairlineItalic';
  src: url('../fonts/aktiv/AktivGrotesk-HairlineItalic.ttf') format('truetype');
}

@font-face {
  font-family: 'ak-Italic';
  src: url('../fonts/aktiv/AktivGrotesk-Italic.ttf') format('truetype');
}

@font-face {
  font-family: 'ak-Light';
  src: url('../fonts/aktiv/AktivGrotesk-Light.ttf') format('truetype');
}

@font-face {
  font-family: 'ak-LightItalic';
  src: url('../fonts/aktiv/AktivGrotesk-LightItalic.ttf') format('truetype');
}

@font-face {
  font-family: 'ak-Medium';
  src: url('../fonts/aktiv/AktivGrotesk-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'ak-MediumItalic';
  src: url('../fonts/aktiv/AktivGrotesk-MediumItalic.ttf') format('truetype');
}

@font-face {
  font-family: 'ak-Regular';
  src: url('../fonts/aktiv/AktivGrotesk-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'ak-Thin';
  src: url('../fonts/aktiv/AktivGrotesk-Thin.ttf') format('truetype');
}

@font-face {
  font-family: 'ak-ThinItalic';
  src: url('../fonts/aktiv/AktivGrotesk-ThinItalic.ttf') format('truetype');
}

@font-face {
  font-family: 'ak-XBold';
  src: url('../fonts/aktiv/AktivGrotesk-XBold.ttf') format('truetype');
}

@font-face {
  font-family: 'ak-XBoldItalic';
  src: url('../fonts/aktiv/AktivGrotesk-XBoldItalic.ttf') format('truetype');
}

/* Other Fonts */
@font-face {
  font-family: 'Neue-SemiBold';
  src: url('../fonts/NeueMetanaNext-SemiBold.otf') format('opentype');
}

@font-face {
  font-family: 'Neue-Black';
  src: url('../fonts/NeueMetanaNextOutline-Black.otf') format('opentype');
}



 /* toggle button */
 
 .frame, .menu-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5vw;
  height: 5vw;
}
.frame {
  position: fixed;
  width: 4vw;
  height: 4vw;
  right: 5vw;
  top: 2vw;
}
.frame{
  display: flex;
  z-index: 999999;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #000000;
  transition: all ease .4s;
}
.frame.active{
  background-color: #000;
  border: 2px solid #fff;
}
.menu-icon {
  width: 2.5vw;
  height: 2.5vw;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: end;
}
.line-1 {
  background: #000;
  width: 100%;
  height: 3px;
  border-radius: 5px;
  position: absolute;
}
.line-2 {
  background: #000;
  width: 80%;
  height: 3px;
  border-radius: 5px;
  position: absolute;
}
.line-3 {
  background: #000;
  width: 60%;
  height: 3px;
  border-radius: 5px;
  position: absolute;
}
.line-1 {
  transition: 500ms;
  transform: translateY(-10px);
  animation: animateReverse 600ms ease-in-out;
}
.line-2 {
  transition: 500ms;
  transform: scale(1);
  opacity: 1;
}
.line-3 {
  transition: 500ms;
  transform: translateY(10px);
  animation: animate2Reverse 600ms ease-in-out;
}
.menu-icon.active {
  animation: rotateIcon 600ms ease-in-out forwards;
}
.line-1.active {
  animation: animate 600ms ease-in-out forwards;
  background: #fff;
}
.line-2.active {
  transform: scale(0);
  background: #fff;
  opacity: 0;
}
.line-3.active {
  animation: animate2 600ms linear forwards;
  background: #fff;
}
.frame.active{
  border-color: #000000;
}
@keyframes animate {
  50% {
      transform: translateY(0px) rotate(0deg);
 }
  100% {
      transform: translateY(0px) rotate(-45deg);
 }
}
@keyframes animateReverse {
  0% {
      transform: translateY(0px) rotate(45deg);
 }
  50% {
      transform: translateY(0px) rotate(0deg);
 }
  100% {
      transform: translateY(-10px) rotate(0deg);
 }
}
@keyframes animate2 {
  50% {
      transform: translateY(0px) rotate(0deg);
 }
  100% {
      transform: translateY(0px) rotate(45deg);
      width: 100%;
 }
}
@keyframes animate2Reverse {
  0% {
      transform: translateY(0px) rotate(-45deg);
 }
  50% {
      transform: translateY(0px) rotate(0deg);
 }
  100% {
      transform: translateY(10px) rotate(0deg);
 }
}
@keyframes rotateIcon {
  100% {
      transform: rotate(90deg);
 }
}
/* Navbar */
#navbar{
    position: fixed;
    width: 100%;
    height: 0;
    display: flex;
    align-items: end;
    justify-content: end;
    z-index: 9999;
    top: 0;
}
#navbar .reg-btn{
  color: #000;
}
#navbar .reg-btn::before{
  border: 2px solid #000;
}
#navbar .reg-btn:hover{
  background-color: #000;
  color: #fff;
}
.navbar-scrolled{
  top: 0 !important;
  z-index: 99999;
}
/* .navbar-scrolled .nav-link{
  background-color: #01001f00;
  color: #000;
} */
.nav-left{
  position: absolute;
  background-image: url(../images/na-imgg.webp);
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 50%;
  top: -100vh;
  left: 0;
  transition: all ease-in .4s;
}
.nav-right{
  width: 50%;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  overflow: hidden;
  background-color: #fffffff4;
  transition: all ease-in .4s;
}
.left-hov{
  top: 0;
}
.right-hov{
  height: 100vh;
}
.borders{
  position: absolute;
  width: 25vw;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  z-index: 0;
}
.bor-box{
  width: 49%;
  height: 20vw;
  border: 1px solid #01001f22;
}
.nav-links{
  width: 25vw;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 4vw;
    font-family: 'x';
    font-size: .8vw;
    z-index: 1;
}
.nav-link{
  text-decoration: none;
  padding: 0 .5vw;
  cursor:pointer;
  color: #01001f;
}
.tce_logo{
      position: fixed;
    width: 5.5vw;
    right: 5vw;
    bottom: 2.5vw;
    z-index: 99999;
}
#logo {
   mix-blend-mode: difference;
  transition: all 0.3s ease;
  transition: filter 0.3s ease;
}

/* #logo.inverted {
  filter: invert(1);
} */
.traicon-mob{
  display: none;
}
.traicon-mob img{
width: 100%;
}
.nav-btn{
    width: 10vw;
    height: 2.5vw;
    background-color: #752bc8;
    border-radius: 5vw;
    border: none;
    font-family: 'kola';
    color: #fff;
  }
  .active{
    color: #e3b127;
  }
/* cover */
#v100{
  width: 100%;
  height: 100vh;
}
#loader{
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 10000;
  background-color: #000;
  gap: 2vw;
  color: #fff;
  font-family: 'x';  
}
.loader {
  width: 48px;
  height: 48px;
  border: 3px dotted #FFF;
  color: #fff;
  border-style: solid solid dotted dotted;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 2s linear infinite;
}
.loader::after {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px dotted #752bc8;
  border-style: solid solid dotted;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  animation: rotationBack 1s linear infinite;
  transform-origin: center center;
}
    

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
} 
#cover{
  position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: end;
    justify-content: center;
    z-index:0;
    overflow: hidden;
    background-color: #0d0b21;
}
.cover-bg{
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
   background-position: center;
}
.cover-bg3{
  background-image: url(../images/coverBgg.webp);
  opacity: 0;
  transition: all ease .6s;
}
.cover-bg1{
  background-image: url(../images/cover-bg12.webp);
  opacity: 0;
  transition: all ease .6s;
}
.cover-bg3 .c-patch{
  background: linear-gradient(to top, #01001f94 40%, #01001f45 80%);
}
.cover-bg.active {
  opacity: 1;
  z-index: 1;
}
.slide-btn {
  position: absolute;
  top: 45%;
  width: 3vw;
  height: 3vw;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  border:2px solid #fff;
  z-index: 1000;
  font-family: 'poppins';
  line-height: .75vw;
  transition: all ease .4s;
}
.slide-btn svg{
  fill: #ffffff;
  width: 2.5vw;
  translate: -3px 1px;
  transition: all ease .4s;
}
.slideprev-btn svg{
  rotate: 180deg;
}
.slideprev-btn {
  position: absolute;
  right: 5vw;
  transform: translateY(-5vw);
}
.slide-btn:hover{
  background-color: #fff;
  color: #000;
}
.slide-btn:hover svg{
  fill: #00071f;
}
.slidenext-btn {
  position: absolute;
  right: 5vw;
}
.c-patch{
  position: absolute;
  width: 100%;
  height: 100%;
    background: linear-gradient(to top, #01001f70 0%, #01001f21 80%);
  }
  .cover-bg2 .c-patch{
    background: linear-gradient(to top, #01001fa9 0%, #01001f21 80%);
  }
  
#cover .borders{
  width: 90%;
  height: 100%;
}
#cover .bor-box{
  width: 16.5%;
  height: 50%;
  border: 1px solid #ffffff52;
  border-bottom: none;
  border-top: none;
}
.cover-cont{
  position: relative;
  width: 82%;
  height: 35vw;
  display: flex;
  flex-direction: column;
  justify-content: start;
  z-index: 10;
  gap: 2vw;
  margin-bottom: 5vw;
}
.cov-line{
  display: none;
  width: 100%;
  height: 1px;
  background-color: #ffffff52;
  border-radius: 1vw;
}
  h1{
    position: relative;
    margin: 0;
    padding: 0;
    font-family: 'x';
    font-size: 4.5vw;
    display: flex;
    flex-direction: column;
    line-height: 4.5vw;
    color: #fff;
    z-index: 10;
  }
  .event-logo{
    width: 36vw;
    translate: -4vw;
  }
  .cov-down{
    display: flex;
    justify-content: space-between;
    gap: 2vw;
  }
  .cd-left{
    display: flex;
    flex-direction: column;
    gap: 1vw;
    font-family: 'ak-regular';
    color: #fff;
    font-size: 1.5vw;
  }
  /* .date{

  }
  .place{
    
  } */
  .cd-right{
    font-size: 2.2vw;
    color: #fff;
    font-family: 'ak-thin';
    text-align: start;
    translate: 3.5vw;
  }
  .cd-right span{
    font-family: 'ak-medium';
    font-size: 2.2vw;
    color: #fff;
    transform: translateX(-1vw);
  }
  .dot{
    box-shadow: 1px 1px 100px #752bc8;
  }
  .reg-buttons{
    display: flex;
    gap: 2vw;
  }
  .reg-btn{
    position: relative;
    width: 10vw;
    height: 2.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'ak-regular';
    border-radius: 4vw;
    border: 0;
    color: #fff;
    background-color: #c2ccf11c;
    backdrop-filter: blur(5px);
    /* background: linear-gradient(to right,#752bc8,#1639eb); */
    transition: all ease .4s;
    cursor: pointer;
  }
  .reg-btn:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    border-radius: 5vw;
    transition: all ease .4s;
  }
  .reg-btn:hover{
    background-color: #fff;
    color: #00071f;
  }
#cover-video{
  position: absolute;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}
.countdown {
    display: flex;
    gap: 1vw;
    text-align: center;
    margin-top: 0vw;
  }
  
  .countdown .count-dig div {
    width: 1vw;
    font-family: "kola";
    font-weight: 700;
    color: #ffffff;
  }
  
  .countdown .count-box {
    width: 5vw;
    height: 5vw;
    background: linear-gradient(45deg,#a1a1a13a,#00000027);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1vw;
    backdrop-filter: blur(30px);
    gap: 0.2vw;
  }
  
  .countdown span {
    display: flex;
    font-size: 1.4vw;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .countdown span div {
    width: 100%;
    text-align: center;
    transform: translateY(0);
    padding: 0;
  }
  
  .count-des {
    color: rgb(202, 202, 202);
    padding: 0;
    margin: 0;
    font-family: "montserrat";
    font-size: 0.9vw;
  }
  /* overview */
  #overview{
    position: relative;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
  }
  .overview-container{
    position: relative;
    z-index: 1;
    width: 90%;
    display: flex;
    align-items: start;
    justify-content: center;
    border-top: 1px solid #01001f22;
  }
  #overview .borders{
    width: 90%;
    z-index: 0;
  }
  #overview .bor-box{
    width: 16.55%;
    height: 20vw;
    border: 1px solid #01001f22;
  }
  .over-head{
    width: 100%;
    font-size: 2vw;
    font-family: 'montserrat';
    font-weight: 800;
    color: #000;
    text-align: start;  
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    line-height: 1;
    background-image: linear-gradient(to right, #752bc8, #1639eb);
  }
  .over-r{
    width: 15vw;
    position: absolute;
    height: 15vw;
    border: 1px solid #000;
    right: 10.5vw;
    top: 0vw;
    background: #01001f;
  }
  .over-left{
    width: 60%;
    background-color: #fff;
    display: flex;
    padding: 2vw 0;
    border-left: 1px solid #01001f22;
    flex-direction: column;
    gap: 2vw;
  }
  .over-text {
    font-size: 1vw;
    padding: 0 .5vw;
    font-family: 'montserrat';
    line-height: 1.8vw;
    height: 30vw;
    overflow: hidden;
    text-align: justify;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}
  .over-right{
    position: relative;
    width: 40%;
    height: 40vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-left: 1px solid #01001f22;
    border-right: 1px solid #01001f22;
    gap: 2vw;
    /* background-color: #fff; */
  }
  .over-animate{
    color: #03045e;
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
  }
  .over-right img{
    position: absolute;
    width: 100%;
    left: 0;
  }
  .over-img1{
    position: absolute;
    width: 15vw;
    height: 15vw;
    right: 1vw;
    bottom: 2vw;
    background: url(../images/focus/over2.jpg);
    background-size: cover;
    z-index: 1;
    border: 6px solid #ffffff;
    /* background-position: center; */
  }
  .over-img2{
    position: absolute;
    width: 23vw;
    height: 30vw;
    left: 1vw;
    top: 1vw;
    background: url(../images/focus/speak.jpg);
    background-size: cover;
  }
  /* video */
  #video-section{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 4vw;
  }
  .num-boxes{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: start;
  }
  .num-box{
    width: 27vw;
    height: 15vw;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }
  .num-num span,.num-num{
    font-family: 'neue-semibold';
    font-size: 4vw;
    color: #01001f;
  }
  .odometer span{
    width: 3.4vw;
  }
  .num-num sup{
    font-size: 2vw;
    font-family: 'neue-semibold';
  }
  .num-des{
    font-family: 'ak-regular';
    font-size: 1.2vw;
  }
.video-box{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  .video-img-box{
    position: relative;
    width: 40%;
    height: 100vh;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .video-patch{
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00071f57;
    z-index: 1;
  }
  .video-img-box img{
    width: 100vw;
    position: absolute;
  }
  .play-btn{
    position: relative;
    width: 4vw;
    overflow: hidden;
    height: 4vw;
    display: flex;
    align-items: center;
    justify-content: start;
    font-family: 'ak-regular';
    font-size: 2vw;
    color: #Fff;
    border-radius: 4vw;
    border: 3px solid #fff;
    backdrop-filter: blur(10px);
    cursor: pointer;
  }
  .play-btn p{
    position: absolute;
    margin-left: 1.5vw;
    z-index: 0;
  }
  .play-icon{
    position: absolute;
    width: 4vw;
    height: 4vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    backdrop-filter: blur(10px);
    background: #cdcdcd0f;
    right: -3px;
    z-index: 10;
    border-radius: 50%;
  }
  .play-icon svg{
    width: 70%;
    margin-left: .3vw;
    fill: #fff;
    transition: all ease .4s; 
  }
  #video-popup{
    position: fixed;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-color: #000000d6;
    backdrop-filter: blur(4px);
    transition: all ease .4s;
  }
  
  #video{
    width: 90%;
    height: 90vh;
    border-radius: .5vw;
    object-fit: cover;
  }
  .vid-close{
    position: absolute;
    width: 4vw;
    height: 4vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 7vw;
    top: 4vw;
    border: 3px solid #fff;
    backdrop-filter: blur(4px);
    cursor: pointer;
    z-index: 9999;
    background-color: #00000038;
    transition: all ease .4s;
  }
  .vid-close svg{
    width: 40%;
    fill: #fff;
    transition: all ease .4s; 
  }
  .vid-close:hover{
    background-color: #fff;
  }
  .vid-close:hover svg{
    fill: #00071f;
  }
  #video-popup.vid-show{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  #video-section .borders{
    position: absolute;
    top: 0;
    width: 90%;
  }
  #video-section .bor-box {
    width: 30%;
  }
  /* who will you meet */
  #who{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 5vw 0;
    transition: all ease .4s;
    /* background-color: #0d0b21; */
  }
  .who-container{
    width: 90%;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2vw;
  }
  .title{
    font-family: 'ak-black';
    color: #01001f;
    font-size: 5vw;
  }
  .who-boxes{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1vw;
    padding-bottom: 4vw;
  }
  .who-box{
    position: relative;
    width: 13vw;
    height: 6vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'source sans 3';
    color: #000;
    text-align: center;
    border: 1px solid #752bc8b7;
    font-size: .95vw;
    overflow: hidden;
    /* border-radius: 1vw; */
    transition: all ease .4s;
  }
  .wb1{
    position: relative;
  }
  .who-box span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    /* border-radius: 50%; */
    background-color: #9437ff;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
  }
  .who-box:hover {
    color: #ffffff;
    /* background: url(../images/chip_bg.png); */
    background-repeat: repeat;
    background-size: 5vw;
    box-shadow: 1px 1px 10px 4px #cdcdcd;
  }
  .who-box:hover span {
    width: 30vw;
    height: 30vw;
  }
  .who-box:active {
    background-color: #cdd8b9;
  }
  .who-cont{
    display: flex;
    width: 100%;
  }
  /* amchart */
  #chartdiv{
    position: relative;
    width: 40%;
    height: 500px;
    /* background-color: #fff; */
    transition: all ease .4s;
  }
  /* #chartdiv:hover{
    box-shadow: 0px 10px 10px 4px #6c82c532;
  } */
  /* #chartdiv::before{
    content: '';
    position: absolute;
    width: 10vw;
    height: 3vw;
    background-color: #01001f;
    left: 0;
    bottom: 0;
    z-index: 15;
  } */
  .sectors{
    width: 60%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .sec-box {
    width: 8.5vw;
    height: 12vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1vw;
    border: 1px solid #cdcdcd;
    /* box-shadow: 0 0 0px #0d0b210f, 0 0 00px #0d0b210d, inset 0px 14px 14px 3px #ffffff2d, inset 1px -10px 15px 4px #ffffff2d; */
    transition: all ease .4s;
}
.sb-1{
  border-top: 0px solid #cdcdcd;
  border-left: 0px solid #cdcdcd;
}
.sb-2{
  border-left: 0px solid #cdcdcd;
}
.sb-3{
  border-bottom: 0px solid #cdcdcd;
  border-left: 0px solid #cdcdcd;
}
.sb-l{
  border-right: 0px solid #cdcdcd;
}
.sec-box:hover{
  background-color: #6771dc;
}
  .sec-name{
    text-align: center;
    font-family: 'source sans 3';
    font-size: 1vw;
    line-height: 1.2vw;
    color: #000;
    transition: all ease .4s;
  }
  .sec-icon{
    width: 35%;
  }
  .sec-icon svg{
    width: 100%;
    fill: #000000cd;
    transition: all ease .4s;
  }
  .sec-box:hover svg{
    fill: #fff;
    transform: rotateY(180deg);
  }

  .sec-box:hover .sec-name{
    color: #fff;
  }

  /* bff */
  #bff{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
  }
  #bff video{
    width: 100%;
    height: 80vh;
  }
  .bff-patch{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to bottom,#01001f 10%,#01001f00 30%,#01001f00 50%,#01001f 90%);
  }
  .bff-patch1{
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,#01001f 20%,#01001f00 50%,#01001f 80%);
  }


/* business focused format */

canvas{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: transparent;
  transition: all ease .4s;
}
#focus{
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 6vw 0;
  transition: all ease .4s;
}
.focus-patch{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #01001fb6;
}
.focus-container{
  position: relative;
  width: 90%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2vw 0;
  border-radius: 2vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 10vw;
  transition: all ease .4s;
}
.focus-left{
  width: 34%;
  height: 43vw;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.focus-right{
  width: 64%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2vw;
  z-index: 2;
}
.focus-head{
  position: relative;
  font-family: 'x';
  font-size: 3vw;
  color: #fff;
  margin: 1vw 0 0 4vw;
}
.focus-head:after{
  content: '';
  width: 5vw;
  height: 3px;
  position: absolute;
  background-color: #8224ec;
  left: 0;
  bottom: -1vw;
}
.focus-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  z-index: -1;
}
.focus-box{
  position: relative;
  width: 24vw;
  height: 13vw;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  gap: 1vw;
  backdrop-filter: blur(2px);
  transition: all ease .4s;
}
.focus-box:hover{
  backdrop-filter: blur(4px);
}
.focus-bg.f-active {
  opacity: 1;
}
.fb{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.fb:before{
  position: absolute;
  content: '';
  width: 2px;
  height: 1vw;
  background-color: #fff;
  left: 0;  
  top: 0;
}
.fb::after{
  position: absolute;
  content: '';
  width: 2px;
  height: 1vw;
  background-color: #fff;
  right: 0;  
  bottom: 0;
}
.focus-box:before{
  position: absolute;
  content: '';
  width: 1vw;
  height: 2px;
  background-color: #fff;
  left: 0;  
  top: 0;
}
.focus-box:after{
  position: absolute;
  content: '';
  width: 1vw;
  height: 2px;
  background-color: #fff;
  right: 0;  
  bottom: 0;
}
.focus-name{
  width: 100%;
  font-family: 'montserrat';
  font-weight: 600;
  display: flex;
  justify-content: end;
  color: #fff;
}
.focus-name span{
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: start;
  margin-right: 1vw;
}
.focus-icon{
  width: 25%;
  display: flex;
  align-items: center;   
  justify-content: center;
}
.focus-icon svg{
  width: 50%;
  fill: #9437ff;
  transition: all ease .4s;
}
.focus-des{
  width: 70%;
  font-family: 'source sans 3';
  font-size: 1vw;
  line-height: 1.3vw;
  margin-right: 1vw;
  color: #fff;
}
/* why */
#why{
     position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    z-index: 10;
    padding: 6vw 0;
    overflow: hidden;
    transition: all ease .4s;
    align-items: center;
    justify-content: center;
}
#why .borders {
    position: absolute;
    width: 90%;
}
#why .bor-box {
    width: 20%;

}
#why .title{
  font-size: 4vw;
  margin-bottom: 4vw;
}
.why-container{
  width: 90%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.why-carousel{
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4vw 0;
}
.swiper-wrapper {
  transition-timing-function: ease-in-out !important;
}
.why-carousel .item{
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease .3s;
}
.why-item{
  width: 18vw;
  height: 20vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 5px solid #01001f;
  transition: all ease .8s;
  transform: translateY(10vw) rotate(-12deg);
}
.why-img{
  width: 30vw;
  height: auto;
  transition: all ease .3s;
}
.why-cont{
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2vw;
}
.why-head{
  font-family: 'ak-thin';
  font-size: 2.2vw;
  margin: 2vw 0 4vw 0 ;
  color: #01001f;
  text-align: center;
}
.why-box{
  width: 70%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2vw;
  justify-content: center;
  min-height: 15vw;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: all ease .3s; 
}
.why-box.text-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.why-name{
  font-family: 'ak-black';
  font-size: 2.2vw;
  text-align: center;
}
.why-des{
  font-family: 'ak-medium';
  width: 85%;
  font-size: 1.2vw;
  text-align: center;
}
.why-active{
  width: 25vw;
  height: 20vw;
  transform: translateY(-4vw);
}
.why-left-active{
  rotate: -12deg;
  transform: translateY(0vw);
}
.why-right-active{
  rotate: 12deg;
    transform: translateY(0vw);
}
#why .swiper-slide{
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-nav{
  position: relative;
  width: 80%;
  top: 10vw;
}
 /* Why exhibit */
 #business-temp{
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 3vw 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: url(../images/businessPatch.jpg); */
  background-size: cover;
  background-position-x: -5vw;
}
.businessPatch{
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(180deg, rgba(0,0,0,1) 0%, #00000080 20%, rgba(0, 0, 0, 0) 49%, #00000080 80%, rgba(0,0,0,1) 100%); */
}
.tBusiness-container{
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  gap: 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.tBusinessBoxes{
  width: 85% !important;
  height: 22vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vw;
}
.tBusinessBox{
  position: relative;
  width: 23vw;
  height: 12vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #022030bb;
  border-radius: 1vw;
  gap: .6vw;
  padding: 2px;
  background: linear-gradient(45deg, #1639ebcd 0%, #0d0a3800 35%, #00000000 50%, #3c1d0200 65%, #752bc8cd 100%);
  background-size: cover;
  transition: all ease .5s;
}
.tBusHead{
  font-size: 1.25vw;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'montserrat';
  color: white;
  width: 90%;
  margin-top: 1vw;
  transition:all ease .4s;
}
.tBusDes{
  position: absolute;
  font-size: 0.95vw;
  font-weight: 400;
  font-family: 'source sans 3';
  color: #fff;
  width: 90%;
  line-height: 1.2vw;
  opacity: 0;
  transition:all ease .4s;
}
.tBusiness-container .item{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw 0;
}
.tBInbox{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1vw;
  border-radius: .8vw;
  background: #0f0b396e;
}
.tBusinessBox::before{
  content: '';
  background-color: #0d0b2100;
  width: 3vw;
  height: 2.7vw;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cdcdcd3d;
  right: 2.5vw;
  top: 1vw;
  font-size: 2.8vw;
  border-radius: .5vw;
  font-family: 'poppins';
  font-weight: 900;
}
.bus-active{
  border-color: #752bc8;
  width: 25vw;
  height: 20vw;
  transform: translateY(-3.5vw);
  background-color: #1639eb;
}
.bus-active .tBusHead{
  color: #fff;
  font-size: 1.4vw;
  margin-top: 3.5vw;
}
.bus-active .tBusDes{
  position: relative;
  font-size: 1.1vw;
  line-height: 1.4vw;
  opacity: 1;
}
.bus-active:before {
  top: 2vw;
  font-size: 3.5vw;
  right: 3.5vw;
  color: #ff10ba;
}
.bus-active .why-icon{
  top: 1.5vw;
  background-color: #ff10ba;
}
.why-icon{
  position: absolute;
  width: 2.5vw;
  height: 2.5vw;
  padding: .5vw;
  border-radius: 50%;
  left: 1.5vw;
  top: 1vw;
  fill: #ff10ba;
  border: 1px solid #ff10ba;
}
.bus-active svg{
  fill: #0d0b21;
}
.tb1::before{
  content: '01';
}
.tb2::before{
  content: '02';
}
.tb3::before{
  content: '03';
}
.tb4::before{
  content: '04';
}
.tb5::before{
  content: '05';
}
.tb6::before{
  content: '06';
}
#business-temp .owl-prev{
  display: flex;
  color: #fff;
  left: -4vw;
  backdrop-filter: blur(3px);
  position: absolute;
  top: 8vw;
  font-size: 3vw;
  width: 3vw;
  height: 3vw;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1639eb00;
  backdrop-filter: blur(4px);
  /* box-shadow: 0 0 0.4vw 0.2vw #752bc8; */
}
#business-temp .owl-next{
  display: flex;
  color: #fff;
  right: -4vw;
  position: absolute;
  top: 8vw;
  font-size: 3vw;
  width: 3vw;
  height: 3vw;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1639eb00;
  backdrop-filter: blur(4px);
    /* box-shadow:    
  0 0 0.4vw 0.2vw #752bc8; */
}
.bCir{
  position: absolute;
  width: 5vw;
  height: 5vw;
  border-radius: 50%;
  background: linear-gradient(114deg, #00000000, #752bc8);
}
.bCir1{
  right: 5vw;
  top: 7vw;
  width: 7vw;
  height: 7vw;
}
.bCir2{
  left: 17vw;
  top: 28vw;
  background:linear-gradient(to right,#00000000,#1639eb);
}
.bCir3{
  width: 5.5vw;
  height: 5.5vw;
  top: 15vw;
  left: 52vw;
  background:linear-gradient(to right,#00000000,#434343f1);
}
#business-temp .owl-prev span{
  transform: translateY(-0.4vw);
}
#business-temp .owl-next span{
  transform: translateY(-0.4vw);
}

/* themes */
.themes-wrapper{
  background-color: #01001f;
}
#themes{
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 10;
  padding: 4vw 0;
  gap: 2vw;
  /* overflow: hidden; */
  background-color: #01001f;
}
#themes .dot1{
  left: -22%;
  z-index: -1;
  top: 20vw;
}
#themes .title{
  width: 90%;
  color: #Fff;
}
.themes-container{
  width: 90%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  gap: 2vw;
}
.themes-boxes{
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: left;
  /* gap: 1vw; */
  flex-wrap: nowrap;
} 
#themes .owl-carousel, .owl-carousel .owl-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
 }
.theme-box{
  position: relative;
  width: 20vw;
  height: 17vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #01001f;
  gap: .6vw;
  padding: 2px;
  overflow: hidden;
  border-radius: 1vw;
}
.theme-box:hover .theme-patch{
  background-position-y: -100%;
}
.theme-patch{
  position: absolute;
  width: 100%;
  height: 105%;
  background: linear-gradient(to top,#000 0%,#01001f00 100%);
  z-index: 2;
  transition: all ease .4s;
}
.theme-img{
  position: absolute;
  width: 100%;
  height: auto;
  z-index: 1;
}
.theme-name{
  position: absolute;
  z-index: 3;
  bottom: 1vw;
  color: #fff;
  font-family: 'ak-medium';
}
.row-2{
  align-self: end;
}
/* summit-highlights */
#summit-highlights{
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
#summit-highlights .title{
  text-align: center;
}
#summit-highlights .borders{
  position: absolute;
  top: 0;
  z-index: 10;
  width: 90%;
}

#summit-highlights .bor-box{
  width: 16.50%;
  height: 15vw;
  border: #01001f0d solid 1px;
}
#sum-glow{
  position: relative;
  width: 100%;
  height: 25vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sum-big-glow{
  position: absolute;
  width: 80vw;
  height: 60vw;
  border-radius: 50%;
  border-top: 4px solid #fff;
  top: 46%;
  backdrop-filter: blur(10px);
  z-index: 2;
  box-shadow: 0 0 2vw 1px #cdcdcd71,inset 0 0 2vw 1px #cdcdcd71;
}
.sum-circle-glow{
  position: absolute;
  width: 15vw;
  height: 15vw;
  border-radius: 50%;
  border: 5px solid #fff;
  z-index: 0;
  animation: pulse3 1s alternate infinite;
  box-shadow: 1px 1px 10vw 5px #8124ecce, inset 0 0 45px 38px #cdcdcd24;
}
.sum-patch{
  position: absolute;
    width: 70%;
    height: 100%;
    z-index: 10;
    background: linear-gradient(to right, #01001f, #01001f00 50%, #01001f 100%);
}
.summit-container{
  width: 85%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 4vw 0;
  gap: 6vw;
}
@keyframes pulse3 {
  0% {
      box-shadow: 0px 0px 8vw 1vw #8124ecce, inset 0 0 45px 38px #cdcdcd24;
  }
  100% {
      box-shadow: 0px 10px 15vw 1vw #8124ecce, inset 0 0 45px 38px #cdcdcd24;
  }
}

.summit-cont{
  position: relative;
  width: 100%;
  height: 50vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.summit-boxes{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.summit-box{
  position: absolute;
  border-radius: 1vw;
  width: 25vw;
  height: 20vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #d1cfe82d;
  padding: 2px;
  transition: all ease .4s;
}
.sum-inner{
  background: #01001fa6;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 1vw;
  gap: 1vw;
  backdrop-filter: blur(4px);
  transition: all ease .4s;
  background-size: cover;
}

.sb1:hover{
  background: url(../images/focus/sum1.jpg);
  background-size: cover;
  background-position: center;
}
.summit-box:hover{
  background: #dfdee42d;
}
.summit-box:hover .sum-inner{
  background: #01001fb9;
  box-shadow:inset 0 0 1vw 1px #cdcdcd36;
  backdrop-filter: blur(0);
}

.sb1{
  background: url(../images/focus/sum1.jpg);
  background-size: cover;
  background-position: center;
}
.sb2{
  background: url(../images/focus/sum2.jpg);
  background-size: cover;
  background-position: center;
}
.sb3{
  background: url(../images/focus/sum3.jpg);
  background-size: cover;
  background-position: center;
}
.sb1:hover{
  background: url(../images/focus/sum1.jpg);
  background-size: cover;
  background-position: center;
}
.sb2:hover{
  background: url(../images/focus/sum2.jpg);
  background-size: cover;
  background-position: center;
}
.sb3:hover{
  background: url(../images/focus/sum3.jpg);
  background-size: cover;
  background-position: center;
}
.summit-box:hover .sum-icon{
  box-shadow: 0 .5vw 2vw 1px #742bc8a2;
}
.sum-inner:before{
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  background: linear-gradient(to right,#cdcdcd00,#cdcdcd9c,#cdcdcd00);
}

.sum-inner:after{
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  top: -2px;
  background: linear-gradient(to right,#cdcdcd00,#cdcdcd9c,#cdcdcd00);
}
.sum-name{
  font-family: 'x';
  color: #fff;
  text-align: center;
}
.sum-des{
  width: 90%;
  text-align: center;
  font-family: 'montserrat';
  font-size: 1vw;
  color: #fff;
}
.summit-box:hover .sum-name{
  text-shadow: 0 0 1vw 10px #000;
}
.sb-outer-box{
  position: absolute;
}
.sb1{
  left: -2vw;
}
.sb2{
  right: -2vw;
}
.sb3{
  bottom: 0;
}
.sum-icon{
  position:absolute;
  top: -2.25vw;
  width: 6vw;
  height: 4.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2vw;
  background: linear-gradient(to bottom, #752bc8, #1639eb);
  z-index: 1;
  border: 2px solid #cdcdcdcd;
  transition: all ease .4s;
}
.sum-icon svg{
  width: 50%;
  fill: #fff;
}
.summit-bg-box{
  position: absolute;
  width: 75%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #cdcdcdcd;
  border-radius: 4vw;
  padding: 2px;
  z-index: 1;
  background: linear-gradient(to bottom, #01001fc9 0, #ffffffbb 50%, #ffffff 100%);
}
.sum-bg-inner{
  width: 100%;
  height: 100%;
  border-radius: 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}

.sum-bg-inner .sum-icon{
  position: absolute;
  border-radius: 50%;
  height: 6vw;
  top: -3vw;
}
/* .sum-bg-inner .sum-icon:before{
  position: absolute;
  width: 7vw;
  height: 7vw;
  left: -.5vw;
  top: -.5vw;
  content: '';
  border-radius: 50%;
  border: 1px solid #cdcdcd;
} */
.summit-bg-box:before{
  width: 2px;
  position: absolute;
  content: '';
  top: 2px;
  height: 30vw;
  background: linear-gradient(to bottom,#01001f 5%,#01001fcd 50%,#ffffff 95%);
}

/* sponsors */
#sponsors{
  width: 100%;
  height: auto;
  min-height: 100vh;
  display: flex;
  padding-top: 3vw;
  justify-content: center;
  align-items: center;
  padding-bottom: 3vw;
  background: linear-gradient(to bottom,#01001f,#140129);
}
#sponsors .title{
  font-size: 4vw;
  text-align: start;
  color: #fff;
}
.sponsors-container{
  width: 80%;
  height: auto;
  min-height: 40vh;
  gap: 4vw;
}
.sponsors-cont{
  width: 100%;
  height: auto;
  min-height: 30vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3vw;
}
.sponsors-h{
  border:  2px solid #9437ff;
  padding: 0.5vw 1vw;
  font-family: "montserrat";
  text-transform: uppercase;
  font-size: 1.05vw;
  font-weight: 600;
  border-radius: 1vw;
  color: #fff;
}
.spon-boxes{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vw;
  flex-wrap: wrap;
  margin-top: 1.5vw;
}
.spon-box{
  width: 16vw;
height: 9vw;
border: 1px solid rgba(0, 0, 0, 0.19);
display: flex;
align-items: center;
justify-content: center;
background-color: #fff;
}
.diamond .spon-box{
  width: 23vw;
height: 12vw;
}
.drone .spon-box{
  width: 20vw;
height: 11vw;
}

.silver .spon-box{
  width: 18vw;
height: 10vw;
}
.media .spon-box{
  width: 12vw;
height: 7vw;
}
.spon-logo{
  width: 80%;
}
/* agenda */
#agenda{
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw 0;
  padding-bottom: 10vw;
  z-index: 10;
  background-color: #140129;
} 
#agenda .title{
  color: #fff;
  text-align: center;
}
.agenda-container{
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3vw;
}
.agenda-boxes{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1vw;
}
.agenda-box{
  width: 100%;
  display: flex;
  min-height: 4vw;
  transition: all ease .4s;
}
.agenda-box:hover{
  background-color: #752bc8;
}
.agenda-box:hover .ag-time{
  border-right: 2px solid #fff;
}
.ag-time{
  font-family: 'poppins';
  font-size: 1.2vw;
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 1vw 0;
  transition: all ease .4s;
  border: 2px solid #752bc8;
}
.ag-right{
  width: 80%;
  font-family: 'montserrat';
  font-size: 1.1vw;
  line-height: 1.5vw;
  color: #ffffff;
  display: flex;
  padding-left: 1vw;
  align-items: center;
  border: 2px solid #752bc8;
  border-left: none;
}
#agenda button{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1639eb;
  font-family: 'x';
  color: #fff;
  cursor: pointer;
}
#agenda button:hover{
  background-color: #fff;
  border-color: #fff;
  color: #01001f;
}
/* gallery */
#gallery{
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  z-index: 10;
  gap: 4vw;
  background-color: #140129;
}
#gallery .title{
  color: #fff;
  text-align: center;
}
.gallery-container{
  width: 90%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1vw;
  /* padding: 3vw 0; */
  overflow: hidden;
}
.gallery-box{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28vw;
  height: 22vw;
  border-radius: 1vw;
  overflow: hidden;
  cursor: pointer;
}
.gal-img{
  width: 130%;
}
.gal-none{
  border: none;
}
/* .gal-box1{
  top: 20vw;
  left: 5vw;
}
.gal-box2{
  top: 30vw;
  right: 5vw;
}
.gal-box3{
  bottom: 0;
  left: 0;
}
.gal-box4{
  bottom: 0;
  right: 0;
}
.gal-box5{
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.gal-box6{
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.gal-box7{
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.gal-box8{
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.gal-box9{
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.gal-box10{
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
} */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 9999;
}

.popup-img {
  width: 60vw;
  border-radius: 1vw;
  transform: scale(0.5);
  transition: transform 0.4s ease;
}

.popup.show {
  visibility: visible;
  opacity: 1;
}

.popup.show .popup-img {
  transform: scale(1);
}

.popup .close {
  position: absolute;
  top: 2%;
  right: 3%;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  z-index: 10000;
}
.gal-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 1rem;
  cursor: pointer;
  z-index: 10000;
  border-radius: 50%;
}

.prev-btn {
  left: 3%;
}

.next-btn {
  right: 3%;
}

.nav-btn:hover {
  background: rgba(255,255,255,0.2);
}
/* ***************Footer Section**************** */
#footer {
  position: relative;
  width: 100vw;
  height: 10vw;
  background: linear-gradient(86deg, #140129 8%, #8b26ff 48%, #140129 79%);
  display: flex;
  align-items: center;
  z-index: 10;
}

.footerContainer {
  display: flex;
  justify-content: space-between;
  width: 99vw;
  align-items: center;
}

.fLeft {
  width: 60vw;
  height: 8vw;
  display: flex;
  flex-direction: row;
  margin: 0 0 0 1vw;
  gap: 0.8vw;
}

.fMails {
  width: 12vw;
  height: 1.8vw;
  display: flex;
  border: 1.5px solid white;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 20px;
  cursor: pointer;
}

.fUp {
  display: flex;
  gap: .7vw;
}

.fRight {
  width: 25vw;
  height: 10vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1vw;
}

.fUp div {
  width: 2vw;
  height: 2vw;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1.5px white solid;
  transition: all ease .4s;
}

.fUp div:hover {
  transform: translateY(-3px);
  background-color: #09427b;
  border: 1.5px #09427b solid;

}

.fUp div:hover .fLinks {
  color: #fff;
}

.fLinks {
  font-size: 1.25vw;
  padding-top: 0.1vw;
  color: #fff;
}

.fCopy {
  color: white;
  font-family: 'Montserrat';
  font-size: 0.8vw;
  font-weight: 400;
}

.fCopy span a {
  font-weight: 600;
  color: white;
  text-decoration: none;
}









.foot-l {
  width: 70%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 1.5vw 0vw;
}

.mail-heading {
  color: white;
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 0.9vw;
}

.mail-box {
  width: 26%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}


.mail {
  font-family: 'Montserrat';
  color: white;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9vw;
  transition: all 0.3s ease;
}

.mb-cont {
  cursor: pointer;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0.8vw 0vw;
  padding-left: 1vw;
}

.mb-cont::before {
  content: "";
  width: 0.1vw;
  z-index: -1;
  height: 3.8vw;
  display: block;
  background-color: #1639eb;
  position: absolute;
  margin-left: -1vw;
  transition: all 0.5s ease;
}

.mail-box:hover .mb1::before {
  width: 13.5vw;
}

.mail-box:hover .mb2::before {
  width: 15.5vw;
}

.mail-box:hover .mb3::before {
  width: 14.5vw;
}


/* forms */
.modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .4s;
  z-index: 100000000;
  }
  
  
  .modalContents {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg,rgb(28, 28, 28),black);
  width: 90%;
  /* backdrop-filter: blur(3px); */
  border-top: none;
  border: 1px solid rgb(141, 141, 141);
  border-top: none;
  }
  .form-img-box{
    width: 30%;
    overflow: hidden;
    height: 26vw;
  }
  .form-img{
    width: 110%
  }
  
  .form-heading {
  font-family: "x";
  color: rgb(255, 255, 255);
  font-size: 1vw;
  border-bottom: none;
  padding: 0.5vw 0vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #752bc8, #1639eb);
  width: 90%;
  border: 1px solid rgb(141, 141, 141);
  border-bottom: none;
  }
  
  .modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 1.3vw;
  }
  
  .modalBg {
  width: 100%;
  height: 100%;
  background: linear-gradient(43deg,rgba(0, 0, 0, 0.938),rgba(28, 27, 27, 0.814),rgba(0, 0, 0, 0.786));    
  }
  form{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  }
  .del-amount-box{
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 93%;
    padding: 0.5vw;
    margin-top: 0.5vw;
    background-color: #313131;
  }
  .del-price-input-box{
    display: flex;
    align-items: center;
    gap: 0.3vw;
  }
  .del-list{
    padding: 0;
    margin: 0;
    margin-left: 2vw;
    margin-top: 0.5vw;
  }
   li{
    font-size: 0.55vw;
    font-family: "Poppins";
    font-weight: 300;
  
  }
  .del-price-input-box label{
    color: white;
    font-family: "Poppins";
    font-size: 0.6vw;
    display: flex;
    align-items: center;
    gap: 0.3vw;
  }
  .del-price-input-box label sup{
    color: red;
    font-size: 0.5vw;
  }

  .inputs{
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  }
  
  .inputs input{
  border-radius: 0px;
  margin: 1vw 0vw;
  background-color: transparent;
  border: none;
  border-bottom:1px solid #ffffff37;
  display: flex;
  align-items: center;
  width: 45%;
  height: 1.7vw;
  font-size: 0.7vw;
  color: #ffffff;
  }
  .inputs input:focus{
  outline: none;
  background-color: none;
  }

  .inputs input::placeholder{
  font-family: "Poppins";
  color: #ffffff;
  font-size: 0.55vw;
  transform: translate(0.1vw,0vw);
  font-weight: 300;
  }
  .check-box{
  width: 93%;
  height: auto;
  }
  .checks{
  padding: 0.4vw 0vw;
  }
  .checks label{
  display: flex;
  }
  .f-btn{
  background: none;
  border: none;
  font-family: "Poppins";
  font-size: 1vw;
  font-weight: 600;
  color: #ffffff;
  padding: 0.2vw 1vw;
  margin: 1vw 0vw;
  cursor: pointer;
  background-color: #1639eb;
  }
  
  .f-btn:hover{
  color: #ffffff;
  background-color: #09427b;
}
  
  
  /* Hide the default checkbox */
  input[type="checkbox"] {
  display: none;
  }
  
  /* Create a custom checkbox style */
  .custom-checkbox {
  width: 0.5vw;
  height: 0.5vw;
  border: 0.5px solid #ffffff;
  cursor: pointer;
  transform: translateY(0.1vw);
  }
  /* Style for when the checkbox is checked */
  input[type="checkbox"]:checked + .custom-checkbox::after {
  position: absolute;
  content: '\2714';
  font-size: 0.8vw;
  top: -80%;
  color: #ed1459;
  }
  
  
  .is-show {
  visibility: visible;
  opacity: 1;
  scale: 1.45;
  }
  
  .lt {
  width: 96%;
  margin-left: 1%;
  font-size: 0.55vw;
  font-family: "Poppins";
  font-weight: 300;
  color: #ffffff;
  text-transform: uppercase;
  }
  .in-box .lt{
    font-weight: 500;
  }
  .clModal{
  position: absolute;
  font-family: "Montserrat";
  font-weight: 800;
  font-size: 0.8vw;
  top: 0.6vw;
  right: 3vw;
  background-color: #000000;
  width: 1vw;
  height: 1vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color:  #ffffff;
  cursor: pointer;
  opacity: 1;
  }

/* Style for invalid text fields */
input.invalid {
  border: 1px solid rgb(255, 0, 0);
}

/* Style for invalid custom checkbox */
label.invalid .custom-checkbox,
.del-price-input-box.invalid .custom-checkbox {
  border: 1px solid rgb(255, 0, 0);
}

.form-message{
  margin-top: 0.5vw;
  font-family: "poppins";
  text-transform: uppercase;
  color: rgb(255, 0, 0);
  font-size: 0.55vw;
  display: none;
}
.mshow{
  display: block;
}
.form-interest{
  width: 93%;
  background-color: #393939;
  padding: 0.5vw;
}
.in-h{
  color: white;
  font-family: "Poppins";
  font-size: 0.55vw;
  color: #fff;
}
.in-box{
  margin-top: 0.5vw;
  display: flex;
  flex-direction: column;
  gap: 0.3vw;
}
.in-box label{
display: flex;
gap: 0.5vw;
}






@media screen and (max-width: 600px) {
  body,html{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  #toggle{
    position: fixed;
    top: 0;
    z-index: 99999;
  }
  .traicon-mob{
    display: block;
    position: fixed;
    width: 20vw;
    top: 4vw;
    left: 4vw;
    z-index: 100;
  }
  .reg-buttons {
    flex-direction: column;
    gap: 4vw;
}
  .frame{
    display: flex;
  }
  /* navbar */
  #navbar {
    width: 100%;
    height: 100vh;
    z-index: 0;
  }
  .nav-left{
    width: 100%;
    height: 30%;
    top: -100vh;
  }
  .nav-right{
    width: 100%;
    height: 0;
  }
  
.left-hov{
  top: 0;
}
.right-hov{
  height: 70%;
}
  .borders {
    position: absolute;
    width: 100vw;
    height: 100%;
  }
  .bor-box {
    width: 49%;
    height: 50vw;
  }
  .nav-links{
    align-items: center;
    justify-content: center;
  }
  .frame {
    position: fixed;
    width: 10vw;
    height: 10vw;
    right: 5vw;
    top: 4vw;
}
.menu-icon {
  width: 5.5vw;
}
.over-text {
  font-size: 3.1vw;
  line-height: 4.4vw;
  width: 95%;
  height: auto;
}
  .nav-container {
    width: 85%;
    height: auto;
    flex-direction: column;
    gap: 12vw;
  }

  .nav-links {
    font-family: 'x';
    font-size: 3.2vw;
    flex-direction: column;
    gap: 10vw;
}
.nav-link{
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}
.tce_logo {
  width: 20vw;
  left: 4vw;
  top: 5vw;
}
  .bor-patch {
    height: 85vh;
    border-radius: 3vw;
}
.event-logo {
  width: 70vw;
  font-size: 3vw;
  line-height: 6vw;
}
.dp{
  flex-direction: column;
}
.date {
  font-family: 'poppins';
  color: #fff;
  font-size: 4.5vw;
}
.place {
  font-size: 4vw;
}
.tagline {
  font-size: 3.5vw;
}
.reg-btn {
  position: relative;
  width: 38vw;
  height: 8vw;
  font-size: 3vw;
}
.cover-container {
  gap: 6vw;
}
.robo {
  position: absolute;
  width: 70vw;
}
.dp{
  background: transparent;
  gap: 2vw;
}
.dot {
  left: -60vw;
  bottom: 20vw;
}
@keyframes pulse {
  0% {
    box-shadow: 0px 0px 60vw 30vw #752bc8;
}
100% {
    box-shadow: 0px 0px 50vw 20vw #752bc8;
}
}
h2{
  font-size: 6vw;
}
.overview-container {
  width: 90%;
  height: auto;
  padding: 5vw 0;
  flex-direction: column;
}
.title{
  font-size: 6vw;
}
#cover{
  align-items: center;
}
.cover-bg1{
  background-position: -180vw 0vw;
}
.cover-bg2{
  background-position: -170vw 0vw;
}
.c-patch{
  background: #01001f8f !important; 
}
.cover-cont{
  height: auto;
  gap: 10vw;
}
.slide-btn {
  position: absolute;
  top: 36vh;
  width: 10vw;
  height: 10vw;
}
.slide-btn svg{
  fill: #ffffff;
  width: 6vw;
  translate: 0px 2px;
}
.slideprev-btn {
  transform: translateY(-18vw);
}
.slide-btn svg {
  fill: #ffffff;
  width: 7.5vw;
  translate: -3px 1px;
  transition: all ease .4s;
}
h1{
  font-size: 7.5vw;
  line-height: 7.5vw;
}
.cov-down {
  gap: 2vw;
  flex-direction: column;
}
.cd-right {
  font-size: 4.5vw;
  translate: 0;
}
.cd-right span {
  font-family: 'ak-medium';
  font-size: 4.4vw;
}
.cover-container{
  margin-bottom: 40vw;
}
.countdown .count-box {
  width: 14vw;
  height: 14vw;
}
.countdown .count-dig div {
    width: 3vw;
}
.countdown span {
    display: flex;
    font-size: 4.4vw;
}
.count-des {
    font-size: 2.6vw;
}

/* overview */

#overview{
  height: auto;
}
.over-head {
  width: 100%;
  font-size: 5vw;
}
.over-left {
  width: 100%;
}
.over-img2 {
  position: absolute;
  width: 45vw;
  height: 60vw;
}
.over-right {
  position: relative;
  width: 100%;
  height: 80vw;
}
.over-r {
  width: 25vw;
  position: absolute;
  height: 25vw;
  border: 1px solid #000;
  right: 42.5vw;
}
.over-img1 {
  width: 35vw;
  height: 35vw;
  right: 15vw;
  bottom: 0vw;
}
/* video */
#video {
  width: 90%;
  height: auto;
}
.vid-close {
  position: absolute;
  width: 7.5vw;
  height: 7.5vw;
  right: 7vw;
  top: 70vw;
}
/* who */
#who{
  height: auto;
}
.who-cont {
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
}
#chartdiv {
  position: relative;
  width: 100%;
  height: 400px;
}
.who-boxes{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.who-box {
  position: relative;
  width: 40vw;
  height: 14vw;
  font-size: 3vw;
}
.who-box:hover span {
  width: 60vw;
  height: 60vw;
}
.sectors {
  width: 90%;
}
.sec-box {
  width: 25vw;
  height: 25vw;
  gap: 3vw;
}
.sec-icon {
  width: 35%;
}
.sec-name {
  font-size: 3vw;
}
/* focus */
#focus {
  background-color: #00071f;
}
.focus-container {
  flex-direction: column;
}
.focus-head {
  position: relative;
  font-family: 'x';
  font-size: 7vw;
}
.focus-left {
  width: 100%;
}
.focus-right {
  width: 90%;
}
.focus-box {
  position: relative;
  width: 100%;
  height: 30vw;
  padding: 4vw 0;
}
.focus-des {
  font-size: 3.3vw;
  line-height: 4vw;
}
.focus-box:before {
  width: 3vw;
}
.focus-box:after {
  width: 3vw;
}
.fb:before {
  width: 2px;
  height: 3vw;
}
.fb::after {
  width: 2px;
  height: 3vw;
}
.focus-icon svg {
  width: 40%;
}
/* numbers */
#numbers .title {
  font-size: 4vw;
}
.num-boxes{
  flex-wrap: wrap;
  gap: 3vw;
  align-items: center;
  justify-content: center;
}
.num-box {
  width: 25vw;
  height: 25vw;
}
.num-num {
  font-size: 8vw;
}
.num-des {
  font-family: 'ak-regular';
  font-size: 3.2vw;
}
.num-name {
  font-size: 3.3vw;
  line-height: 4vw;
}
/* video */

#video-section .bor-box {
  width: 32.9%;
}
.video-img-box {
  width: 100%;
  height: 30vh;
}
.video-box {
  width: 100%;
  height: auto;
}
.play-btn {
  width: 20vw;
  height: 6vw;
}
.play-icon {
  width: 6vw;
  height: 6vw;
}
.play-btn p {
  position: absolute;
  margin-left: 2.5vw;
  font-size: 3.4vw;
}
.theme-box {
  width: 40vw;
  height: 30vw;
}
.num-container {
  padding: 4vw 0;
  border-radius: 4vw;
}
.themes-boxes {
  width: 100%;
  flex-wrap: wrap;
  justify-content: left;
  gap: 1vw;
}
.theme-name {
  font-size: 3vw;
}
/* why sponsor */
.tBusinessBox {
    position: relative;
    width: 70vw;
    height: 52vw;
}
.why-icon {
 width: 6.5vw;
  height: 6.5vw;
}
.bus-active:before {
  top: 4vw;
  font-size: 7.5vw;
  right: 8.5vw;
  color: #ff10ba;
}
.bus-active .tBusHead {
  font-size: 4vw;
}
.bus-active .tBusDes {
  position: relative;
  font-size: 3vw;
  line-height: 3.4vw;
  opacity: 1;
}
#business-temp {
  width: 100%;
  height: auto;
  padding: 10vw 0;
}
.bCir1 {
  right: 5vw;
  top: 7vw;
  width: 20vw;
  height: 20vw;
}
.bCir2 {
  width: 12vw;
  height: 12vw;
}
.bCir3 {
  display: none;
}
#business-temp {
  width: 100%;
  height: 50vh;
}
.bCir2 {
  width: 12vw;
  height: 12vw;
  top: 112vw;
  left: 8vw;
}
#business-temp .title {
  font-size: 5vw;
}
#business-temp .owl-prev {
  top: 25vw;
  font-size: 7vw;
}
#business-temp .owl-next {
  top: 25vw;
  font-size: 7vw;
}
/* why exhibit */
#why {
  width: 100%;
  height: 80vh;
}
#why .title {
  font-size: 6.5vw;
}
#why .bor-box {
  width: 32.5%;
}
.why-name {
  font-size: 4vw;
}
.why-item{
  width: 40vw;
  height: 30vw;
}
.why-des {
  width: 130%;
  font-size: 3.5vw;
}
.why-active {
  width: 55vw;
  height: 40vw;
  transform: translateY(0vw);
}
.why-img {
  width: 65vw;
}
.why-nav {
  position: relative;
  width: 110%;
  top: -25vw;
}
/* summit-highlights */
.summit-bg-box {
  border: none;
  background: none;
}
.sum-name {
  font-size: 2.5vw;
}
.summit-cont {
  width: 100%;
  height: 100vh;
}
.summit-box {
  position: relative;
  left: 0;
  right: 0;
  border-radius: 2vw;
  width: 70vw;
  height: 54vw;
}
.sum-des {
  font-size: 3vw;
}
.sum-icon {
  top: -5.25vw;
  width: 13vw;
  height: 10vw;
}
.sum-bg-inner .sum-icon {
  border-radius: 50%;
  height: 12vw;
}
.sum-bg-inner .sum-icon {
  top: -20vw;
  display: none;
}
.summit-bg-box:before {
  height: 200vw;
  top: -5.25vw;
}
.sum-inner {
  border-radius: 2vw;
  gap: 3vw;
}
/* sponsors */
.sponsors{
  min-height: 60vh;
  padding: 10vw 0vw;
}
#sponsors .title {
    font-size: 6vw;
}
.sponsors .title::after {
  right: 45vw;
  width: 30%;
}
.sponsors-container{
  min-height: auto;
}
.sponsors-cont{
  min-height: auto;
}
.sponsors-h {
  padding: 2.5vw 3vw;
  font-size: 4vw;
  border-radius: 3vw;
}
.sponsors-cont {
  margin-top: 10vw;
}
.spon-box {
  width: 44vw;
  height: 25vw;
}
.media .spon-box {
  width: 24vw;
  height: 13vw;
}
.diamond .spon-box {
  width: 80vw;
  height: 42vw;
}
.drone .spon-box {
  width: 68vw;
  height: 40vw;
}
.silver .spon-box{
  width: 55vw;
height: 30vw;
}
.spon-boxes{
  margin-top: 6vw;
}
/* agenda */
#agenda{
  padding: 10vw 0;
}
.agenda-container {
  width: 95%;
  gap: 9vw;
}
.agenda-box{
  min-height: 20vw;
}
.ag-time {
  font-family: 'kola';
  font-size: 2.5vw;
}
.ag-right {
  width: 80%;
  font-size: 3.3vw;
  line-height: 4vw;
}
/* gallery */
.gal-none{
  display: none;
}
.gallery-box {
  width: 45vw;
  height: 35vw;
}
.gal-btn{
  font-size: 6vw;
}
.gallery-container {
    width: 95%;
}

/* footer */

#footer {
  width: 100vw;
  height: 35vw;
}
.footerContainer {
  flex-direction: column;
  gap: 4vw
}
.mb2{
  margin-left: 2vw;
}
.mail-box:hover .mb1::before {
  display: none;
}
.mb-cont {
  width: auto;
  align-items: center;
}
.mb-2{
  border-left: 1px solid rgba(209,36,53,1);
  border-right: 1px solid rgba(209,36,53,1);
  padding-right: 1vw;
}
.mb2 a{
  padding-right: 1.2vw;
}
.mail-box:hover .mb2::before {
 display: none;
}
.mail-box:hover .mb3::before {
  display: none;
}
.fRight {
  width: 45vw;
  gap: 2vw;
}
.fUp {
  justify-content: space-around;
}
.fUp div {
  width: 4vw;
  height: 4vw;
}
.fLinks {
  font-size: 2.55vw;
}
.fLeft {
  width: 85vw;
  height: auto;
  display: flex;
  flex-direction: row;
  margin: 0 0 0 0vw;
  gap: 0.8vw;
  justify-content: center;
  align-items: center;
}
.mb-cont::before {
  display: none;
}
.mail-box {
  width: 40%;
}
.mail-heading {
  font-size: 1.85vw;
  text-align: center;
}
.mail {
  font-weight: 500;
  font-size: 2.02vw;
}
.fCopy {
  padding-left: 1vw;
  font-size: 1.825vw;
}
section{
  padding: 0;
}

/* form */
.modalWrapper {
  width: 70%;
}

.inputs input {
  width: 85%;
  height: 4.7vw;
  font-size: 1.5vw;
}

.modalContents {
  width: 80%;
}

.inputs input::placeholder {
  font-family: "Poppins";
  font-size: 1.5vw;
  transform: translate(0.3vw, 0vw);
}
form{
  width: 100%;
}
.form-heading {
  font-size: 2.6vw;
  font-weight: 800;
  margin: 0vw 0vw;
  margin-top: 4.5vw;
  text-align: center;
  line-height: 4vw;
  width: 80%;
}

.check-box {
  width: 85%;
}
.checks label{
  gap: 0.5vw;
}
.custom-checkbox {
  width: 1.5vw;
  height: 1.5vw;
}

.lt {
  font-size: 1.6vw;
  list-style: 1.7;
}

input[type="checkbox"]:checked+.custom-checkbox::after {
  left: -0.2vw;
  font-size: 1.5vw;
}

.f-btn {

  font-size: 2vw;
  border-radius: 5px;
  padding: 0.5vw 3vw;
  margin: 2vw 0vw;
}

.clModal {
  font-size: 1.8vw;
  width: 3vw;
  height: 3vw;
}
.form-img-box{
  display: none;
}
.del-amount-box {
  width: 86%;
  padding: 1.5vw;
  margin-top: 2.5vw;
}
.del-amount-box  .custom-checkbox{
  transform: translateY(-0.4vw);
}
.del-price-input-box label {
  font-size: 2vw;
  font-weight: 800;
}
.del-price-input-box {
  gap: 1.5vw;
}
.del-list li {
  font-size: 1.4vw;
}
.form-message {
  margin-top: 2.5vw;
  font-size: 1.95vw;
  display: none;
}
.in-h {
  font-size: 1.75vw;
}
.form-interest {
  width: 85%;
  background-color: #393939;
  padding: 1.5vw;
}
.in-box {
  margin-top: 1.5vw;
  gap: 0.9vw;
}

}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    body,html{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  #toggle{
    position: fixed;
    top: 0;
    z-index: 9999999;
  }
  .traicon-mob{
    display: block;
    position: fixed;
    width: 20vw;
    top: 4vw;
    left: 4vw;
    z-index: 100;
  }
  .reg-buttons {
    flex-direction: column;
    gap: 4vw;
}
  .frame{
    display: flex;
  }
  /* navbar */
  #navbar {
    width: 100%;
    height: 100vh;
    z-index: 9;
  }
  .nav-left{
    width: 100%;
    height: 30%;
    top: -100vh;
  }
  .nav-right{
    width: 100%;
    height: 0;
  }
  
.left-hov{
  top: 0;
}
.right-hov{
  height: 70%;
}
  .borders {
    position: absolute;
    width: 100vw;
    height: 100%;
  }
  .bor-box {
    width: 49%;
    height: 50vw;
  }
  .nav-links{
    align-items: center;
    justify-content: center;
  }
  .frame {
    position: fixed;
    width: 10vw;
    height: 10vw;
    right: 5vw;
    top: 4vw;
    
}
.menu-icon {
  width: 5.5vw;
}
.over-text {
  font-size: 2.4vw;
  line-height: 3.5vw;
  width: 95%;
  height: auto;
}
  .nav-container {
    width: 85%;
    height: auto;
    flex-direction: column;
    gap: 12vw;
  }

  .nav-links {
    font-family: 'x';
    font-size: 3.2vw;
    flex-direction: column;
    gap: 10vw;
}
.nav-link{
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}
.tce_logo {
  width: 15vw;
  bottom: 6vw;
}
  .bor-patch {
    height: 85vh;
    border-radius: 3vw;
}
.event-logo {
  width: 60vw;
  font-size: 3vw;
  line-height: 6vw;
}
.dp{
  flex-direction: column;
}
.date {
  font-family: 'poppins';
  color: #fff;
  font-size: 3vw;
}
.place {
  font-size: 3vw;
}
.tagline {
  font-size: 3.5vw;
}
.reg-btn {
  position: relative;
  width: 32vw;
  height: 7vw;
  font-size: 3vw;
}
.cover-container {
  gap: 6vw;
}
.robo {
  position: absolute;
  width: 70vw;
}
.dp{
  background: transparent;
  gap: 2vw;
}
.dot {
  left: -60vw;
  bottom: 20vw;
}
@keyframes pulse {
  0% {
    box-shadow: 0px 0px 60vw 30vw #752bc8;
}
100% {
    box-shadow: 0px 0px 50vw 20vw #752bc8;
}
}
h2{
  font-size: 6vw;
}
.overview-container {
  width: 90%;
  height: auto;
  padding: 5vw 0;
  flex-direction: column;
}
.title{
  font-size: 6vw;
}
#cover{
  align-items: center;
}
.cover-bg1{
  background-position: -70vw 0vw;
}
.cover-bg2{
  background-position: -170vw 0vw;
}
.c-patch{
  background: #01001f8f !important; 
}
.cover-cont{
  height: auto;
  gap: 4vw;
}
.slide-btn {
  position: absolute;
  top: 66vh;
  width: 7vw;
  height: 7vw;
}
.slide-btn svg{
  fill: #ffffff;
  width: 6vw;
  translate: 0px 2px;
}
.slideprev-btn {
  transform: translateY(-16vw);
}
.slide-btn svg {
  fill: #ffffff;
  width: 7.5vw;
  translate: -3px 1px;
  transition: all ease .4s;
}
h1{
  font-size: 7.5vw;
  line-height: 7.5vw;
}
.cov-down {
  gap: 2vw;
  flex-direction: column;
}
.cd-right {
  font-size: 3.5vw;
      translate: 0vw;
}
.cd-right span {
  font-family: 'ak-medium';
  font-size: 4vw;
}
.cover-container{
  margin-bottom: 40vw;
}
.countdown .count-box {
 width: 10vw;
  height: 10vw;
}
.countdown .count-dig div {
    width: 3vw;
}
.countdown span {
    display: flex;
    font-size: 3.4vw;
}
.count-des {
    font-size: 2.6vw;
}

/* overview */

#overview{
  height: auto;
}
.over-head {
  width: 100%;
  font-size: 5vw;
}
.over-left {
  width: 100%;
}
.over-img2 {
  position: absolute;
  width: 45vw;
  height: 60vw;
}
.over-right {
  position: relative;
  width: 100%;
  height: 80vw;
}
.over-r {
  width: 25vw;
  position: absolute;
  height: 25vw;
  border: 1px solid #000;
  right: 42.5vw;
}
.over-img1 {
  width: 35vw;
  height: 35vw;
  right: 15vw;
  bottom: 0vw;
}
/* video */
#video {
  width: 90%;
  height: auto;
}
.vid-close {
  position: absolute;
  width: 7.5vw;
  height: 7.5vw;
  right: 7vw;
  top: 70vw;
}
/* who */
#who{
  height: auto;
}
.who-cont {
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
}
#chartdiv {
  position: relative;
  width: 100%;
  height: 400px;
}
.who-boxes{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.who-box {
  position: relative;
  width: 40vw;
  height: 14vw;
  font-size: 2.4vw;
}
.who-box:hover span {
  width: 60vw;
  height: 60vw;
}
.sectors {
  width: 90%;
}
.sec-box {
  width: 25vw;
  height: 25vw;
  gap: 3vw;
}
.sec-icon {
  width: 35%;
}
.sec-name {
  font-size: 2.4vw;
  line-height: 2.5vw;
}
/* focus */
#focus {
  background-color: #00071f;
}
.focus-container {
  flex-direction: column;
}
.focus-head {
  position: relative;
  font-family: 'x';
  font-size: 5vw;
}
.focus-name span {
  font-size: 2.9vw;
}
.focus-left {
  width: 100%;
}
.focus-right {
  width: 100%;
}
.focus-box {
  position: relative;
  width: 47%;
  height: 30vw;
  padding: 4vw 0;
}
.focus-des {
  font-size: 2.4vw;
  line-height: 4vw;
}
.focus-box:before {
  width: 3vw;
}
.focus-box:after {
  width: 3vw;
}
.fb:before {
  width: 2px;
  height: 3vw;
}
.fb::after {
  width: 2px;
  height: 3vw;
}
.focus-icon svg {
  width: 40%;
}
/* numbers */
#numbers .title {
  font-size: 4vw;
}
.num-boxes{
  flex-wrap: wrap;
  gap: 3vw;
  align-items: center;
  justify-content: center;
}
.num-box {
  width: 25vw;
  height: 25vw;
}
.num-num {
  font-size: 8vw;
}
.num-num span, .num-num {
    font-family: 'neue-semibold';
    font-size: 4vw;
}
.num-des {
  font-family: 'ak-regular';
  font-size: 2.4vw;
}
.num-name {
  font-size: 3.3vw;
  line-height: 4vw;
}
/* video */

#video-section .bor-box {
  width: 32.9%;
}
.video-img-box {
  width: 90%;
  height: 40vh;
}
.video-box {
  width: 100%;
  height: auto;
}
.play-btn {
  width: 20vw;
  height: 6vw;
}
.play-icon {
  width: 6vw;
  height: 6vw;
}
.play-btn p {
  position: absolute;
  margin-left: 2.5vw;
  font-size: 3.4vw;
}
.theme-box {
  width: 40vw;
  height: 30vw;
}
.num-container {
  padding: 4vw 0;
  border-radius: 4vw;
}
.themes-boxes {
  width: 100%;
  flex-wrap: wrap;
  justify-content: left;
  gap: 1vw;
}
.theme-name {
  font-size: 3vw;
}
/* why sponsor */
.tBusinessBox {
    position: relative;
    width: 70vw;
    height: 52vw;
}
.why-icon {
 width: 6.5vw;
  height: 6.5vw;
}
.bus-active:before {
  top: 4vw;
  font-size: 7.5vw;
  right: 8.5vw;
  color: #ff10ba;
}
.bus-active .tBusHead {
  font-size: 4vw;
}
.bus-active .tBusDes {
  position: relative;
  font-size: 3vw;
  line-height: 3.4vw;
  opacity: 1;
}
#business-temp {
  width: 100%;
  height: auto;
  padding: 10vw 0;
}
.bCir1 {
  right: 5vw;
  top: 7vw;
  width: 20vw;
  height: 20vw;
}
.bCir2 {
  width: 12vw;
  height: 12vw;
}
.bCir3 {
  display: none;
}
#business-temp {
  width: 100%;
  height: 50vh;
}
.bCir2 {
  width: 12vw;
  height: 12vw;
  top: 112vw;
  left: 8vw;
}
#business-temp .title {
  font-size: 5vw;
}
#business-temp .owl-prev {
  top: 25vw;
  font-size: 7vw;
}
#business-temp .owl-next {
  top: 25vw;
  font-size: 7vw;
}
/* why exhibit */
#why {
  width: 100%;
  height: 80vh;
}
#why .title {
  font-size: 6.5vw;
}
#why .bor-box {
  width: 32.5%;
}
.why-name {
  font-size: 4vw;
}
.why-item{
  width: 40vw;
  height: 30vw;
}
.why-des {
  width: 130%;
  font-size: 3.5vw;
}
.why-active {
  width: 55vw;
  height: 40vw;
  transform: translateY(0vw);
}
.why-img {
  width: 65vw;
}
.why-nav {
  position: relative;
  width: 110%;
  top: -25vw;
}
/* summit-highlights */
.summit-bg-box {
  border: none;
  background: none;
}
.sum-name {
  font-size: 2.5vw;
}
.summit-cont {
  width: 100%;
  height: 100vh;
}
.summit-box {
  position: relative;
  left: 0;
  right: 0;
  border-radius: 2vw;
  width: 70vw;
  height: 54vw;
}
.sum-des {
  font-size: 3vw;
}
.sum-icon {
  top: -5.25vw;
  width: 13vw;
  height: 10vw;
}
.sum-bg-inner .sum-icon {
  border-radius: 50%;
  height: 12vw;
}
.sum-bg-inner .sum-icon {
  top: -20vw;
  display: none;
}
.summit-bg-box:before {
  height: 200vw;
  top: -5.25vw;
}
.sum-inner {
  border-radius: 2vw;
  gap: 3vw;
}
/* agenda */
#agenda{
  padding: 10vw 0;
}
.agenda-container {
  width: 95%;
  gap: 9vw;
}
.agenda-box{
  min-height: 16vw;
}
.ag-time {
  font-family: 'kola';
  font-size: 2.5vw;
}
.ag-right {
  width: 80%;
  font-size: 3.3vw;
  line-height: 3.5vw;
}
/* gallery */
.gal-none{
  display: none;
}
.gallery-box {
  width: 40vw;
  height: 35vw;
}
.gal-btn{
  font-size: 6vw;
}
/* sponsors */
.sponsors{
  min-height: auto;
  padding: 10vw 0vw;
}
#sponsors .title {
    font-size: 5vw;
}
.sponsors .title::after {
  right: 45vw;
  width: 30%;
}
.sponsors-container{
  min-height: auto;
}
.sponsors-cont{
  min-height: auto;
}
.sponsors-h {
  padding: 2.5vw 3vw;
  font-size: 2.5vw;
  border-radius: 3vw;
}
.sponsors-cont {
  margin-top: 10vw;
}
.spon-box {
  width: 44vw;
  height: 23vw;
}
.diamond .spon-box {
  width: 70vw;
  height: 35vw;
}
.drone .spon-box {
  width: 58vw;
  height: 32vw;
}
.silver .spon-box{
  width: 50vw;
height: 27vw;
}
.media .spon-box {
  width: 24vw;
  height: 13vw;
}
.spon-boxes{
  margin-top: 6vw;
}
/* agenda */
.agenda{
  height: 170vw;
}
.agenda-olay{
  width: 100%;
  height: 170vw;
}
.agenda-cont {
  width: 90%;
  height: auto;
}
.agenda-box:nth-child(2){
  display: none;
}
.agenda-box{
  width: 100%;
  height: 150vw;
}

.agenda-cont-box {
  width: 95%;
  padding: 2.5vw 0vw;
}
.agenda-cont-box {
    display: flex;
    width: 95%;
    padding: 2.5vw 0vw;
}
.ag-des {
  width: 65%;
  font-size: 3vw;
}
.agenda-day{
  font-size: 10vw;
}

.ag-time {
  width: 30%;
  font-size: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ag-btn {
  width: 31vw;
  height: 6.3vw;
  font-size: 2.5vw;
  border-radius: 10vw;
}

/* footer */
.footerContainer{
  flex-direction: column;
}
.fLeft {
  width: 100vw;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5vw;
}
.mail-box{
  width: fit-content;
}
.mb-cont{
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
}
.mb-cont::before{
  display: none;
}
.mail{
  font-size: 2.5vw;
}
.mail-heading{
  font-size: 3.5vw;
}
.fRight{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
  margin-top: 4vw;
}
.s-f{
  align-items: center;
}
.s-f::after{
  display: none;
}
.org{
  width: 100%;
  height: auto;
  padding-bottom: 3vw;
  gap: 3vw;
}
.foot-logo-box {
  gap: 0.5vw;
  height: 20vw;
  width: 30vw;
}
.fl-des {
  font-size: 2.8vw;
}
.foot-logo-box img {
  width: 13vw;
}
.fUp div{
  width: 6vw;
  height: 6vw;
}
.fLinks{
  font-size: 3vw;
}
.fCopy{
  font-size: 2.5vw;
  margin-top: 2.5vw;

}

/* form */
.modalWrapper {
  width: 70%;
}

.inputs input {
  width: 85%;
  height: 4.7vw;
  font-size: 1.5vw;
}

.modalContents {
  width: 80%;
}

.inputs input::placeholder {
  font-family: "Poppins";
  font-size: 1.5vw;
  transform: translate(0.3vw, 0vw);
}
form{
  width: 100%;
}
.form-heading {
  font-size: 2.5vw;
  font-weight: 800;
  margin: 0vw 0vw;
  margin-top: 4.5vw;
  text-align: center;
  line-height: 4vw;
  width: 80%;
}

.check-box {
  width: 85%;
}

.custom-checkbox {
  width: 0.9vw;
  height: 0.9vw;
}

.lt {
  font-size: 1vw;
}

input[type="checkbox"]:checked+.custom-checkbox::after {
  left: -0.2vw;
  font-size: 1.5vw;
}

.f-btn {

  font-size: 2vw;
  border-radius: 5px;
  padding: 0.5vw 3vw;
  margin: 2vw 0vw;
}

.clModal {
  right: 1vw;
  font-size: 2.8vw;
  width: 5vw;
  height: 5vw;
  top: 4vw;
}
.form-img-box{
  display: none;
}
.del-amount-box {
  width: 86%;
  padding: 1.5vw;
  margin-top: 2.5vw;
}
.del-amount-box  .custom-checkbox{
  transform: translate(-0.5vw, -0.1vw);
}
.del-price-input-box label {
  font-size: 1.8vw;
  font-weight: 800;
}
.del-price-input-box {
  gap: 1.2vw;
}
.del-list li {
  font-size: 1.4vw;
}
.form-message {
  margin-top: 2.5vw;
  font-size: 1.95vw;
  display: none;
}
.in-h {
  font-size: 1.75vw;
}
.form-interest {
  width: 85%;
  background-color: #393939;
  padding: 1.5vw;
}
.in-box {
  margin-top: 1.5vw;
  gap: 0.9vw;
}



}