@import url('https://fonts.googleapis.com/css2?family=Barlow: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=Fugaz+One&family=Lexend+Tera:wght@100..900&family=Lexend:wght@100..900&family=Michroma&family=Montserrat: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=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=Rajdhani:wght@300;400;500;600;700&family=Source+Sans+3:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Teko:wght@300;400;500;600;700&display=swap');

body,html{
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
h1,h2,h3,h4,h5,h6{
  margin: 0;
}

@font-face {
  font-family: "tellicam";
  src: url("../fonts/Tallica-Medium.ttf");
}
@font-face {
  font-family: "tellical";
  src: url("../fonts/Tallica-Light.ttf");
}
@font-face {
  font-family: "gunterzbold";
  src: url("../fonts/Gunterz-Bold.otf");
}
@font-face {
  font-family: "gunterzblack";
  src: url("../fonts/Gunterz-Black.otf");
}
@font-face {
  font-family: "gunterzm";
  src: url("../fonts/Gunterz-Medium.otf");
}
a{
  text-decoration: none;
}
/* color :: #dba400 */
#content{
  height: fit-content;
  background-image: url("../images/cover-bg.jpg");
  background-size: cover;
  background-attachment: fixed;
}

  /* toggle button */
 
  .frame, .menu-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 14vw;
    height: 14vw;
}
.frame {
    background: #3faf82;
    width: 15vw;
    height: 15vw;
}
.frame{
    display: none;
  }
.menu-icon {
    width: 9vw;
    height: 9vw;
    position: relative;
    cursor: pointer;
}
.line-1 {
    background: #fff;
    width: 100%;
    height: 1.2vw;
    border-radius: 5px;
    position: absolute;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}
.line-2 {
    background: #fff;
    width: 100%;
    height: 1.2vw;
    border-radius: 5px;
    position: absolute;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}
.line-3 {
    background: #fff;
    width: 100%;
    height: 1.2vw;
    border-radius: 5px;
    position: absolute;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}
.line-1 {
    transition: 500ms;
    transform: translateY(-15px);
    animation: animateReverse 600ms ease-in-out;
}
.line-2 {
    transition: 500ms;
    transform: scale(1);
    opacity: 1;
}
.line-3 {
    transition: 500ms;
    transform: translateY(15px);
    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;
}
.line-2.active {
    transform: scale(0);
    opacity: 0;
}
.line-3.active {
    animation: animate2 600ms linear forwards;
}
@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(-15px) rotate(0deg);
   }
}
@keyframes animate2 {
    50% {
        transform: translateY(0px) rotate(0deg);
   }
    100% {
        transform: translateY(0px) rotate(45deg);
   }
}
@keyframes animate2Reverse {
    0% {
        transform: translateY(0px) rotate(-45deg);
   }
    50% {
        transform: translateY(0px) rotate(0deg);
   }
    100% {
        transform: translateY(15px) rotate(0deg);
   }
}
@keyframes rotateIcon {
    100% {
        transform: rotate(90deg);
   }
}

/* navbar */
.navbar{
  width: 100%;
  height: 4vw;
  position: fixed;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.5vw;
}
.navbar-container{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.traicon_logo{
  width: 5.5vw;
  margin-left: 1vw;
}
.traicon-mob{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1vw;
  gap: 1vw;
}
.tce_logo{
  width: 6vw;
}
.navbar ul{
  display: flex;
  gap: 1.5vw;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.216);
  padding: 1vw 2vw;
  border: 2px solid #dba400;
  border-radius: 2vw;
  backdrop-filter: blur(10px);
  font-size: 1vw;
  font-family: "Source Sans 3";
}
.navbar ul li a{
  color: white;
}
.nav-button{
  margin-right: 1vw;
  padding: 0.9vw 2vw;
  font-family: "Source Sans 3";
  color: white;
  border-radius: 3vw;
  border: 2px solid #dba400;
  font-size: 1vw;
  cursor: pointer;
  transition: all ease .4s;
}
.nav-button:hover{
  background-color: #dba400;
  color: #000;
}
.nav-active{
  color: #dba400;
}
/* home */
#home{
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.cover-box{
  width: 60%;
  height: 70vh;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  opacity: 0.7;
  
}
.cover-img-box{
  width: 25%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.cove-im-overlay{
  width: 100%;
  height: 100%;
  position: absolute;
background: linear-gradient(rgba(0, 0, 0, 0),rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.619));
  z-index: 2;
}
.cover-img{
  width: 130%;
  filter: grayscale();
}
.countdown{
    display: flex;
    width: 60%;
    justify-content: end;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 10;
}
.count-box{
  width: 11vw;
  height: 22vw;
 /* background-image: url("../images/count-bg.png"); */
 background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.count-dig{
  display: flex;
  overflow: hidden;
  color: white;
  font-size: 5vw;
  font-family: "tellical";
  line-height: 9vw;
}
.count-des{
  color: #dba400;
  font-family: "tellicam";
  font-size: 2vw;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px black;
}
.video-cont{
  position: absolute;
  width: 100%;
  height: 100%;
}
.cover-patch{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to top, #000000ea,#000000cc,#000000cc,#000000cc );
    z-index: 5;
}
#cover-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cover-content{
  width: 90%;
  height: 80vh;
  position: relative;
  z-index: 10;
}
.event-logo{
  width: 30vw;
}
.logo-cont{
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 1vw;
  margin-top: 3vw;
}
.logo-cont:after{
  position: absolute;
  content: '';
  width: 1px;
  height: 100%;
  right: 13vw;
  background: linear-gradient(to top,#00000000, #a7a7a78e, #00000000);
}
.hr25 {
  width: 13vw;
  height: fit-content;
}
.date-place{
  display: flex;
  color: white;
  align-items: center;
  gap: 1vw;
  margin-left: 1vw;
  font-family: "Poppins";
  font-size: 1.2vw;
  font-weight: 300;
  margin-top: 1vw;
}
.date{
  position: relative;
}
.place{
  margin-top: .2vw;
}
.date::after{
  content: "";
  width: 1px;
  height: 1.5vw;
  background-color: #dba400;
  position: absolute;
  right: -0.5vw;
  margin-top: 0.3vw;
}
.tagline{
  color: rgba(255, 255, 255, 0.501);
  font-family: "gunterzbold";
  margin-top: 3vw;
  margin-left: 1vw;
  width: 30vw;
  font-size: 1.7vw;
}
.tagline span{
  font-family: "gunterzbold";
  font-size: 2.5vw;
  color: transparent;
  -webkit-text-stroke: 2px;
  -webkit-text-stroke-color: #dba400;
  opacity: 1;
}
.cov-btns{
  display: flex;
  gap: 1vw;
  align-items: center;
  margin-left: 1vw;
  margin-top: 2vw;
}
.cov-btn{
  color: white;
  display: flex;
  justify-content: center;
  padding: 1vw;
  width: 10vw;
  border-radius: 2vw;
  border: 2px solid #dba400;
  font-family: "gunterzm";
  padding-top: 1.2vw;
  font-size: 0.9vw;
  cursor: pointer;
  transition: all ease .4s;
}
.cov-btn:hover{
  background-color: #dba400;
  color: #000;
}
/* overview */
#overview{
  width: 100%;
  height: 100vh;
 display: flex;
 align-items: center;
 justify-content: center;
 padding-bottom: 0;
}
.over-left,.over-right{
  width: 45%;
  height: 90vh;
  position: relative;
}
.title{
  position: relative;
color: transparent;
font-family: "gunterzblack";
font-size: 4vw;
-webkit-text-stroke-color: #dba400;
-webkit-text-stroke-width: 2px;
}
.over-right .title{
  margin-top: 3vw;
}
.over-left{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.over-right p{
  color: white;
  font-family: "Source Sans 3";
  font-size: 1vw;
  line-height: 1.7;
  font-weight:300;
  position: relative;
}
.over-img-box{
width: 70%;
height: 70vh;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
position: relative;
transform: rotate(3deg);
box-shadow: 0.5vw 0.5vw 1vw rgba(0, 0, 0, 0.437);
opacity: 0.7;
}

.tape{
  width: 18vw;
  transform: rotate(-30deg);
  position: absolute;
  z-index: 2;
  top: 5vw;
  left: 2vw;
}
.over-patch{
  width: 20vw;
  height: 5vw;
  position: absolute;
  background-color: #dba400;
  right: -12%;
  top: 3vw;
  opacity: 0.7;
}
.over-img-box video{
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: grayscale();
  transition: all 0.3s ease;
}
.over-img-box:hover video{
  filter: none;
}
/* numbers */
#numbers{
  width: 100%;
  height: 25vw;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #dba400; */
}
.numbers-container{
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  
}
.num-box{
  width: 12vw;
  height: 12vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 0px solid #cdcdcd;
  border-radius: 1vw;
  backdrop-filter: blur(1px);
}
.num-bg{
  position: absolute;
  width: 115%;
  height: 115%;
  z-index: 0;
  transform: translateX(-.5vw);
  background: url(../images/sqtor1.png);
  background-size: cover;
  opacity: 0.85;
}
.num-num{
  position: relative;
  font-size: 2.5vw;
  font-family: 'rajdhani';
  font-weight: 900;
  letter-spacing: 2px;
  color: #000000;
  z-index: 1;
}
.num-num sup{
  position: absolute;
  top: -.5vw;
}
.num-name{
  font-size: 1.2vw;
  height: 3vw;
  font-family: 'source sans 3';
  line-height: 1.3vw;
  text-align: center;
  color: #000000;
  font-weight: 400;
  z-index: 1;
}
/* why section */
.whysection{
  width: 100%;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-left: none;
  border-right: none;
  background-color: #dba400;
  position: relative;
  margin-top: 9vw;
}
.why-paper{
  width: 100%;
  position: absolute;
}
.why-patch-top{
  position: absolute;
  top: -7vw;
  width: 100%;
  height: 10vw;
 
  background-repeat: no-repeat;
}
.why-patch-bottom{
  position: absolute;
  bottom: -6vw;
  width: 100%;
  height: 9vw;
  background-repeat: no-repeat;
}
.why-container{
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
.whysection .title{
  -webkit-text-stroke-color: #000;
  -webkit-text-stroke-width: 2px;
  height: 5vw;
  }
  .why-box{
    width: 25vw;
    height: 14vw;
    padding: 0vw 1vw;
    display: flex;
    align-items: start;
    gap: .5vw;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0px 12px 20px -5px #303030a8;
    transition: all ease .5s;
  }
  .why-box:hover{
    box-shadow: 0px 12px 20px -5px #303030a8;
  }
  .why-num{
    font-size: 2.5vw;
    font-family: 'poppins';
    font-weight: 800;
    border-bottom: 2px solid #fff;
  }
  .why-sub-head{
    font-size: 1.15vw;
    font-family: 'montserrat';
  }
  .why-sub-head span{
    font-weight: 600;
  }
  .why-des{
    font-size: 1vw;
    font-family: 'poppins';
    font-weight: 300;
  }
  .why-boxes{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    z-index: 2;
  }

/* who will you meet */
#who{
  position: relative;
  width: 100%;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10vw 0 4vw;
}
/* .who-patch{
  position: absolute;
  width: 25vw;
  height: 35vw;
  top: 15vw;
  right: 0;
  background: url(../images/who-bg.jpg); 
  background-size: cover;
  background-position: -14vw 0;
} */
.who-container{
  width: 90%;
  height: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 2vw;
}
.job-boxes{
  width: 100%;
  display: flex;
}
.job-titles{
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  height: 18vw;
  gap: .5vw;
}
.job-box{
  width: 22vw;
  height: 5vw;
  display: flex;
  color: #fff;
}
.job-num{
  font-size: 2.5vw;
  width: 5vw;
  height: 5vw;
  font-weight: 600;
  font-family: 'rajdhani';
  display: flex;
  align-items: center;
  justify-content: center;
}
.job-names{
  width: 20vw;
  height: 5vw;
  font-size: 1vw;
  line-height: 1.15vw;
  display: flex;
  align-items: center;
  justify-content: start;
  font-family: 'source sans 3';
  font-weight: 300;
  padding: 0 .5vw ;
}
.chart-container{
  width: 50%;
  display: flex;
}
#chartdiv{
  width: 50%;
  height: 20vw;
  /* position: absolute; */
  right: 18vw;
  top: 27vw;
}
#chartdiv text{
  font-family: 'montserrat';
}
.chart-names{
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2vw;
  justify-content: center;
  padding: 0 1vw;
}
.chart-box{
  display: flex;
  flex-direction: column;
  gap: .2vw;
}
.chart-name{
  position: relative;
  font-family: 'montserrat';
  color: #fff;
  font-size: 1vw;
}
.chart-name span{
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 1.3vw;
}
.chart-bar{
  width: 100%;
  height: .7vw;
  border-radius: .6vw;
  background: #cdcdcd;
}
.chart-fill{
  height: 100%;
  width: 0;
  transition: width 1s ease-out;
  border-radius: .6vw;
}
.themes{
  position: relative;
  width: 100vw;
  height: auto;
  padding: 1.5vw 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #00000040;
  background-size: cover;
}
.themes .theme-box:nth-child(6){
  border: none;
}
.themes .theme-box:nth-child(12){
  border: none;
}
.themes::before{
  position: absolute;
  content: '';
  width: 87vw;
  top: 7.5vw;
  display: block;
  height: 1px;
  background-color: #cdcdcd;
}
.theme-box{
  width: 14.5vw;
  height: 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #cdcdcd;
}
.t-icon{
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-icon svg{
  width: 60%;
  fill: #fff;
  transition: all ease .4s;
}
.t-des{
  text-align: start;
  font-size: .85vw;
  width: 60%;
  font-family: 'montserrat';
  color: #fff;
  transition: all ease .4s;
}
.theme-box:hover svg{
  fill: #dba400;
  transform: rotateY(180deg);
}
.theme-box:hover .t-des{
  color: #dba400;
}
/* why speak */
#WS{
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws-container{
  width: 90%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.ws-head-patch{
  width: 30vw;
  height: 5vw;
  position: absolute;
  background-color: #dba400;
  right: -6%;
  top: 1vw;
  opacity: 0.7;
}
.splide__track{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws-subhead{
  font-size: 1.1vw;
  font-family: 'source sans 3';
  color: #fff;
}
.ws-boxes{
  width: 100%;
  display: flex;
  height: 35vw;
}
.ws-left{
  position: relative;
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws-circle{
  position: absolute;
  width: 48vw;
  height: 48vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #88888850;
  z-index: 0;
}
.ws-circle div{
  width: 90%;
  height: 90%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #88888850;
}
.ws-image{
  position: relative;
  width: 25vw;
  height: 25vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #303030;
  z-index: 1;
}
.ws-img{
  position: absolute;
  opacity: 0;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background-size: cover;
}
.ws-right{
  width: 60%;
  height: 35vw;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
}
.ws-slider{
  width: 100%;
  height: 90%;
  display: flex;
  gap: 1vw;
  flex-direction: column;
}

.ws-slide {
  width: 100%;
  height: 8vw;
  background: #00000040;
  backdrop-filter: blur(1px);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  border-radius: .5vw;
  padding: .5vw 0;
  transition: all ease .4s;
}
.ws-cont{
  width: 79%;
  display: flex;
  flex-direction: column;
  gap: .5vw;
}
.ws-topic{
  font-size: 1.4vw;
  font-family: 'montserrat';
  color: #edfff8;
  font-weight: 600;
}
.ws-des{
  font-size: 1vw;
  font-family: 'poppins';
  color: #edfff8;
  font-weight: 300;
}
.ws-icon-cont{
  width: 19%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws-icon{
  width: 6vw;
  height: 6vw;
  margin: 1vw 0vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #dba400;
  background-color: #dba400;
  transition: all ease .4s;
}
.ws-slider .ws-active .ws-slide{
  background: #dba400;
}
.ws-active .ws-icon{
  background: #edfff8;
}
.ws-icon svg{
  width: 40%;
  fill: #fff;
  transition: all ease .4s;
}
.ws-active svg{
  fill: #dba400;
}
.ws-active .ws-topic{
  color: #000;
}
.ws-active .ws-des{
  color: #000;
}
/* major */
#major{
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  /* backdrop-filter: blur(2px); */
}
.major-container{
  width: 90%;
  height: 80vh;
  display: flex;
}
.major-left{
  width: 30%;
  height: 100%;
  gap: 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
}
.major-right{
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.major-boxes{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4vw;
  column-gap: 4vw;
}
.major-head{
  position: relative;
  font-size: 2.5vw;
  font-family: 'montserrat';
  text-align: start;
  width: 90%;
  font-weight: 600;
  padding-top: 3vw;
}
.major-head:after{
  position: absolute;
  content: "";
  width: 40%;
  height: 3px;
  background-color: #dba400;
  bottom: -1vw;
  left: 0;
}
.major-des{
  width: 90%;
  font-size: 1.1vw;
  font-family: 'source sans 3';
  font-weight: 300;
}
.major-box{
  position: relative;
  width: 25vw;
  height: 17vw;
  display: flex;
  padding: 0 1vw;
  justify-content: center;
  /* backdrop-filter: blur(2px); */
}
.m-patch{
  position: absolute;
  width: 115%;
  height: 115%;
  background: url(../images/rect_torn.png);
  background-size: cover;
  z-index: 0;
  opacity: 0.7;
}
.m-left{
  width: 20%;
  height: 100%;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  z-index: 1;
  color: #000;
}
.m-left div{
  font-size: 2.4vw;
  font-weight: 800;
  margin-top: 4vw;
  font-family: 'montserrat';
  display: flex;
  align-items: start;
  justify-content: center;
  height: 4vw;
  font-family: 'rajdhani';
}
.m-right{
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  margin-top: 4vw;
  gap: .5vw;
  z-index: 1;
  color: #000;
}
.m-topic{
  font-size: 1.1vw;
  font-family: 'montserrat';
  font-weight: 600;
}
.m-sub-topic{
  font-size: 1.1vw;
  font-family: 'source sans 3';
  font-weight: 300;
  color: white;
  line-height: 1.5vw;
}
.m-des{
  font-size: 1vw;
  font-family: 'source sans 3';
}
/* speakers */
/* speakers */
#speakers{
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6vw 0 0vw;
}
.speakers-container{
  width: 90%;
  height: auto;
  display: flex;
  gap: 3vw;
  flex-direction: column;
}
.speaker-boxes{
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4vw;
}
#speakers .item{
  height: 35vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.speak-box{
  position: relative;
  width: 18vw;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}
.speak-box:hover .speak-img{
  padding-top: 1vw;
}
.speak-box:hover .speak-details{
  padding-top: 2vw;
}
.speak-img{
  width: 100%;
  height: 18vw;
  border-radius: 1vw 1vw 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #45454588;
  overflow: hidden;
  transition: all ease .4s;
}
.speak-img img{
  width: 100%;
  /* filter: grayscale(.5); */
  transition: all ease .4s;
}
.speak-details{
  width: 100%;
  height: 7vw;
  padding: 1.5vw .5vw;
  background-color: #dba400;
  display: flex;
  border-radius: 1vw 1vw 0 0;
  flex-direction: column;
  align-items: center;
  transform: translateY(-0.5vw);
  gap: .2vw;
  transition: all ease .4s;
}
.speak-name{
  font-family: 'montserrat';
  font-size: 1.3vw;
  font-weight: 800;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  width: 95%;
  text-shadow: 1px 1px 2px #000000;
}
.speak-job{
  font-size: 0.9vw;
  font-family: 'montserrat';
  text-align: center;
  width: 95%;
}
.speak-comp{
  font-size: 1vw;
  font-weight: 600;
  font-family: 'montserrat';
  text-align: center;
  width: 95%;
}
/* SPEAKER CAROUSEL */
.spk-box{
  width: 21.5vw;
  height: 25vw;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 3vw;
  padding: 3vw 0 0 0;
}
.spk-inbox{
  width: 90%;
  height: 80%;
  border: 0.2vw solid #26ada7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 2vw;
 
}
.spk-img-box{
  width: 15vw;
  height: 15vw;
  background-color: #26ada7;
  border-radius: 50%;
  position: absolute;
  margin-bottom: 12.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* box-shadow: inset 0.2vw 0.2vw 1vw rgba(0, 0, 0, 0.274),inset -0.2vw -0.2vw 1vw rgba(0, 0, 0, 0.175); */
}
.spk-hover{
  width: 40vw;
  height: 2vw;
  position: absolute;
  z-index: 2;
  /* background: linear-gradient(rgba(255, 255, 255, 0.374),rgba(255, 255, 255, 0.284),rgba(255, 255, 255, 0.33)); */
  transform:rotate(-50deg);
  margin-left: -20vw;
  border-radius: 10vw;
  /* box-shadow: 0.2vw 0.2vw 2vw 1vw #76d5d05b; */
  transition: all 0.3s ease;
}
#speakers .spk-img{
  width: 90%;
  margin-top: 2vw;
  /* filter: grayscale(); */
  transition: all 0.3s ease;
}
.spk-cont{
  height: 10vw;
  margin-top: 10vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
#speakers .spk-box:hover .spk-img{
 filter: none;
}
.spk-box:hover .spk-hover{
  margin-left: 10vw;
}
.spk-box:hover .spk-name{
  transform: scale(1.05);
  text-decoration: underline;
}
.spk-name{
  font-family: "Montserrat";
  font-weight: 700;
  color: #26ada7;
  text-transform: uppercase;
  font-size: 1.2vw;
  transition: all 0.5s ease;
}
.spk-job{
  margin-top: 0.3vw;
  font-family: "Poppins";
  font-size: 0.9vw;
  color: #fff;
}
.spk-company{
  margin-top: 0.3vw;
  font-family: "Poppins";
  font-weight: 600;
  font-size: 0.9vw;
  color: #fff;
}
.speaker-up{
  display: flex;
}
.speaker-up .owl-item{
  display: flex;
  align-items: center;
  justify-content: center;
}
#speakers .speaker-up .owl-nav .owl-prev {
  position: absolute;
  width: 3vw;
  height: 3vw;
  border-radius: 4vw;
  font-size: 2.3vw;
  left: -3.5vw;
  top: 50%;
  font-family: 'montserrat';
  background-color: #26ada7;
}
#speakers .speaker-up .owl-nav .owl-next {
  position: absolute;
  width: 3vw;
  height: 3vw;
  border-radius: 4vw;
  font-size: 2.3vw;
  right: -3.5vw;
  top: 50%;
  font-family: 'montserrat';
  background-color: #26ada7;
}
/* SPEAKER CAROUSEL
.spk-box{
  width: 21.5vw;
  height: 25vw;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 3vw;
  padding: 3vw 0 0 0;
}
.spk-inbox{
  width: 90%;
  height: 80%;
  border: 0.2vw solid #dba400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 2vw;
 
}
.spk-img-box{
  width: 15vw;
  height: 15vw;
  background-color: #dba400;
  border-radius: 50%;
  position: absolute;
  margin-bottom: 12.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.spk-hover{
  width: 40vw;
  height: 2vw;
  position: absolute;
  z-index: 2;
  transform:rotate(-50deg);
  margin-left: -20vw;
  border-radius: 10vw;
  transition: all 0.3s ease;
}
#speakers .spk-img{
  width: 90%;
  margin-top: 2vw;
  transition: all 0.3s ease;
}
.spk-cont{
  height: 10vw;
  margin-top: 10vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
#speakers .spk-box:hover .spk-img{
 filter: none;
}
.spk-box:hover .spk-hover{
  margin-left: 10vw;
}
.spk-box:hover .spk-name{
  transform: scale(1.05);
  text-decoration: underline;
}
.spk-name{
  font-family: "Montserrat";
  font-weight: 700;
  color: #dba400;
  font-size: 1.2vw;
  transition: all 0.5s ease;
}
.spk-job{
  margin-top: 0.3vw;
  font-family: "Poppins";
  font-size: 0.9vw;
  color: #fff;
}
.spk-company{
  margin-top: 0.3vw;
  font-family: "Poppins";
  font-weight: 600;
  font-size: 0.9vw;
  color: #fff;
}
.speaker-up{
  display: flex;
}
.speaker-up .owl-item{
  display: flex;
  align-items: center;
  justify-content: center;
}
#speakers .speaker-up .owl-nav .owl-prev {
  position: absolute;
  width: 3vw;
  height: 3vw;
  border-radius: 4vw;
  font-size: 2.3vw;
  left: -3.5vw;
  top: 50%;
  font-family: 'montserrat';
  background-color: #dba400;
}
#speakers .speaker-up .owl-nav .owl-next {
  position: absolute;
  width: 3vw;
  height: 3vw;
  border-radius: 4vw;
  font-size: 2.3vw;
  right: -3.5vw;
  top: 50%;
  font-family: 'montserrat';
  background-color: #dba400;
} */


/* SPONSORS */
#sponsors {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 7vw 0vw;
  gap: 3vw;
}
.sponsors{
  padding-top: 15vw !important;
}
#sponsors .title{
  width: 85%;
}

.sponsors-container{
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}
.spon-cont{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.spon-name{
  font-family: 'montserrat';
  font-size: 1.2vw;
  padding: .3vw .8vw;
  color: #fff;
  background-color: #dba400;
}
.spon-boxes{
    width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1vw;
  padding: 2vw 0;
}
.spon-box{
  width: 12vw;
  height: 7vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.spon-img{
  width: 70% !important;
}
.gold .spon-box{
  width: 25vw;
  height: 12vw;
}
.media .spon-box{
  width: 13vw;
  height: 7vw;
}
.spons-cont{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.spon-h{
  color: #000;
  font-family: "poppins";
  font-weight: 600;
  padding: 0.5vw 2vw;
  background-color: #dba400;
  /* text-shadow: 1px 1px 2px #000000b7; */
}
/* AGENDA */
#agenda{
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* gallery */
.gallery{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  padding-top: 5vw;
 }
 .gallery-cir{
  width: 10vw;
  height: 10vw;
  background: linear-gradient(60deg,#ffce1b,#dba400,#f837d200);
  position: absolute;
  border-radius: 50%;
  left: 1vw;
  top: 6vw;
 }
 .gc2{
  left: auto;
  right: 1vw;
  width: 6vw;
  height: 6vw;
  background: linear-gradient(60deg,#ffce1b,#dba400,#f837d200);
  top: 20vw;
 }
 .gc3{
  right: auto;
  width: 3vw;
  height: 3vw;
  background: linear-gradient(60deg,#ffce1b,#dba400,#f837d200);
  top:auto;
  bottom: 0;
left: 7vw;
 }
.gallery .title{
  width: 80%;
}
.carousel{
  width: 80vw;
  height: 40vw;
  border-radius: 1vw;
  overflow: hidden;
  position: relative;
  /* border: 1px solid #61fdfd4c; */
  margin-top: 2vw;
}


.carousel .list .item{
  width: 9vw;
  height: 13vw;
  position: absolute;
  top: 80%;
  transform: translateY(-70%);
  left: 70%;
  border-radius: 20px;
  box-shadow: 0.3vw 0.3vw 0.5vw rgba(0, 0, 0, 0.796);
  background-position: 50% 50%;
  background-size: cover;
  z-index: 10;
  transition: 1s;
  background-size: cover;
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2){
  top: 0;
  left: 0;
  transform: translate(0, 0);
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.carousel .list .item:nth-child(3){
  left: 63%;
}

.carousel .list .item:nth-child(4){
  left: calc(63% + 10vw);
}

.carousel .list .item:nth-child(5){
  left: calc(63% + 20vw);
}

.carousel .list .item:nth-child(6){
  left: calc(63% + 30vw);
}

.carousel .list .item:nth-child(n+7){
  left: calc(63% + 40vw);
  opacity: 0;
}





.list .item .content{
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translateY(-50%);
  width: 400px;
  text-align: left;
  color: #fff;
  display: none;
}

.list .item:nth-child(2) .content{
  display: block;
}

/* next prev arrows */

.arrows{
  position: absolute;
  top: 80%;
  right: 52%;
  z-index: 100;
  width: 300px;
  max-width: 30%;
  display: flex;
  gap: 10px;
  align-items: center;
}

.arrows button{
 width: 3vw;
 height: 3vw;
 border-radius: 50%;
 outline: none;
 border: none;
 font-size: 1.5vw;
 font-family: Poppins;
 background: linear-gradient(45deg,#dba400,#dba400);
 color: white;

}

.arrows button:hover{
  background: #fff;
  color: #000;
}


/* time running */
.carousel .timeRunning{
  position: absolute;
  z-index: 11;
  width: 0%;
  height: 4px;
  background-color: #ffce1b;
  left: 0;
  top: 0;
  animation: runningTime 7s linear 1 forwards;
}

@keyframes runningTime {
  from{width: 0%;}
  to{width: 100%;}
}

/* forms */
.modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .4s;
  z-index: 1000;
  }
  
  
  .modalContents {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43, 43, 43, 0.084);
  width: 90%;
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.299);
  border-top: none;
  }
  .form-img-box{
    width: 30%;
    overflow: hidden;
    height: 22vw;
  }
  .form-img{
    width: 100%;
  }
  
  .form-heading {
  font-family: "gunterzm";
  color: rgb(255, 255, 255);
  font-size: 1.3vw;
  border:1px solid rgba(255, 255, 255, 0.205);
  border-bottom: none;
  padding: 0.5vw 0vw;
  padding-top: 0.8vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background:linear-gradient(45deg,#ebebeb3d,#9d9c9a36,#ffffff24);
  backdrop-filter: blur(5px);
  width: 90%;
  }
  
  .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.834),rgba(0, 0, 0, 0.725));    
  backdrop-filter: blur(3px);
  }
  form{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70%;
  }
  .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 #d1d1d18a;
  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: #bbbbbb;
  font-size: 0.5vw;
  transform: translate(0.1vw,0vw);
  }
  .check-box{
  width: 95%;
  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;
  border: 1px solid white;
  box-shadow: 0.05vw 0.05vw 0.2vw #dba400,-0.05vw -0.05vw 0.2vw #dba400,inset 0.05vw 0.05vw 0.2vw #2eeeb5,inset -0.05vw -0.05vw 0.2vw #2eeeb5;
  }
  
  .f-btn:hover{
  color: #ffffff;
   box-shadow: 0.05vw 0.05vw 0.2vw #ffce1b,-0.05vw -0.05vw 0.2vw #ffce1b,inset 0.05vw 0.05vw 0.2vw #ffce1b,inset -0.05vw -0.05vw 0.2vw #ffce1b;
  }
  
  
  /* Hide the default checkbox */
  input[type="checkbox"] {
  display: none;
  }
  
  /* Create a custom checkbox style */
  .custom-checkbox {
  width: 0.3vw;
  height: 0.3vw;
  border: 0.5px solid #ffffff;
  cursor: pointer;
  transform: translateY(0.1vw);
  position: relative;
  }
  /* Style for when the checkbox is checked */
  input[type="checkbox"]:checked + .custom-checkbox::after {
  position: absolute;
  content: '\2714';
  font-size: 0.5vw;
  top: -90%;
  color: #ffffff;
  }
  
  
  .is-show {
  visibility: visible;
  opacity: 1;
  scale: 1.5;
  }
  
  .lt {
  width: 96%;
  margin-left: 1%;
  font-size: 0.45vw;
  font-family: "Poppins";
  font-weight: 500;
  color: #c8c8c8;
  }
  .clModal{
  position: absolute;
  font-family: "Montserrat";
  font-weight: 800;
  font-size: 0.8vw;
  top: 1vw;
  right: 3vw;
  background-color: #3f3b3c;
  width: 1vw;
  height: 1vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color:  #ffffff;
  cursor: pointer;
  opacity: 0.4;
  }

/* footer */
#footer {
  width: 100%;
  height: auto;
  background: #00000024;
  display: flex;
  align-items: center;
  border-top: 1px solid #09173e;
  margin-top: 2vw;
  position: relative;
  border-top: 2px solid #dba400;
  }
  /* .footer::before{
    content: "";
    height: 1px;
    width: 8vw;
    background: linear-gradient(to right, #37ecf800, #70f5fa, #37ecf800);
    position: absolute;
    top: -0.06vw;
    left: 5vw;
    box-shadow: 0 0 0.9vw 0.3vw #f837d229;
  } */
  
  .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: #dba400;
  border: 1.5px #dba400 solid;
  color: black;
  
  }
  
  .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:linear-gradient(to right,#dba400,#dba400);
  position: absolute;
  margin-left: -1vw;
  transition: all 0.5s ease;
  }
  
  .mail-box:hover .mb-cont::before{
  width: 100%;
  }


/* mobile responsive */
@media screen and (max-width: 450px){
  body,html{
      overflow-x: hidden;
  }
  .traicon_logo{
    display: none;
  }
  .traicon-mob{
    position: fixed;
    top: 6vw;
    left: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
  }

  .traicon-mob:after{
    right: 13vw;
  }
  .traicon-mob img{
    display: block;
    width: 20vw;
    height: fit-content;
    z-index: 3;
  }
  .logo-cont:after {
    right: 19.5vw;
  }
  .nav-button{
    display: none;
  }
  #navBar{
    position: fixed;
    width: 100%;
    height: 100vh;
    left: -110vw;
  }
  .navbar-container{
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
  }
  .navlist{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .navbar ul {
    font-size: 5vw;
    gap: 7vw;
  }
  .frame{
    display: flex;
    position: fixed;
    right: 2vw;
    top: 2vw;
    z-index: 9999;
    background-color: transparent;
  }
  .cover-box {
    width: 100%;
    height: auto;
    position: absolute;
    right: 0;
    margin-bottom: 30vw;
    top: 60%;
    display: flex;
    align-items: center;
    opacity: 0.7;
}
.count-dig {
  font-size: 11vw;
  line-height: 20vw;
}
.count-box {
  width: 20vw;
  height: 35vw;
}
.countdown {
  width: 100%;
  display: flex;
  position: absolute;
  right: 0;
  bottom: 40vw;
  gap: 2vw;
  align-items: center;
  justify-content: center;
}
.cover-content {
  width: 90%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  gap: 2vw;
}
.event-logo {
  width: 67vw;
}
.hr25 {
  width: 20vw;
  height: fit-content;
}
.logo-cont {
    gap: 1vw;
    margin-top: 20vw;
}
.date-place {
  gap: 1vw;
  font-size: 4.5vw;
  flex-direction: column;
  font-weight: 300;
  line-height: 5vw;
}
.count-des {
  font-size: 5vw;
}
.tagline {
  margin-top: 5vw;
  margin-left: 1vw;
  width: 75vw;
  font-size: 4.5vw;
  text-align: center;
}
.tagline span{
  font-size: 4.5vw;
}
.cov-btns{
  gap: 4vw;
  margin-top: 5vw;
}
.cov-btn {
  padding: 2vw;
  width: 30vw;
  border-radius: 5vw;
  font-size: 3vw;
}
.date::after {
  display: none;
}

/* overview */
#overview {
  width: 100%;
  height: auto;
  flex-direction: column;
  padding: 20vw 0;
}
.over-left {
  width: 90%;
  height: auto;
}
.over-img-box {
  width: 97%;
  height: 40vh;
  width: 90%;
}
.over-left, .over-right {
  width: 90%;
  height: auto;
}
.over-right .title {
  margin-top: 10vw;
}
.title{
  font-size: 9vw;
}
.over-patch {
  width: 30vw;
  height: 10vw;
  right: -12%;
  top: 10vw;
}
.over-right p {
  font-size: 3.5vw;
}
/* numbers */
#numbers {
  width: 100%;
  height: auto;
}
.num-box {
  width: 25vw;
  height: 25vw;
}
.numbers-container {
  flex-wrap: wrap;
  justify-content: center;
  gap: 5vw;
}
.num-num {
  font-size: 6vw;
}
.num-name {
  font-size: 3.5vw;
  line-height: 3.5vw;
}
.why-boxes {
  gap: 5vw;
}
.why-box {
  width: 85vw;
  height: 30vw;
  padding: 6vw 1vw;
}
.why-num {
  font-size: 5.5vw;
}
.why-sub-head {
  font-size: 4vw;
}
.why-des {
  font-size: 3.4vw;
}
.whysection {
  width: 100%;
  height: auto;
  padding: 10vw 0;
}
.whysection .title {
  height: auto;
}
.why-container {
  gap: 5vw;
}
/* who will you meet */
.job-boxes {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.job-titles {
  width: 100%;
  height: auto;
}
.job-num {
  font-size: 4.5vw;
  width: 15vw;
  height: 15vw;
}
.job-names {
  width: 100%;
  height: auto;
  font-size: 3vw;
  line-height: 3.15vw;
}
.job-box {
  width: 49%;
  height: 15vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chart-container {
  width: 100%;
}
#chartdiv {
  width: 50%;
  height: 50vw;
}
.chart-name span {
  font-size: 3vw;
}
.chart-name {
  font-size: 3vw;
}
.chart-bar {
  width: 100%;
  height: 1.7vw;
  border-radius: 2vw;
}
.theme-box {
  width: 45vw;
  height: 22vw;
  border: none;
}
.themes::before {
  width: 1px;
  top: 4.5vw;
  left: 50%;
  height: 95%;
}
.t-des {
    text-align: start;
    font-size: 2.85vw;
}
/* why-speak */
#WS {
  width: 100%;
  height: auto;
  padding: 10vw 0;
}
.ws-boxes {
  height: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ws-right {
  width: 60%;
  height: 35vw;
}
.ws-slide {
  height: 50vw;
}
.ws-circle {
  width: 90vw;
  height: 90vw;
}
.ws-image {
  width: 50vw;
  height: 50vw;
}
.ws-left {
  width: 100%;
  height: 75vw;
}
.ws-right {
  width: 100%;
  height: 53.5vw;
}
.ws-icon {
  width: 15vw;
  height: 15vw;
}
.ws-icon svg {
  width: 55%;
}
.ws-topic {
  font-size: 3.6vw;
}
.ws-des {
  font-size: 3vw;
}
.ws-container {
  gap: 10vw;
}
.ws-head-patch {
  width: 19vw;
  height: 9vw;
}
#major{
  height: auto;
  padding: 10vw 0;
}
.major-container {
  width: 90%;
  height: auto;
  flex-direction: column;
  gap: 5vw;
}
.major-left {
  width: 100%;
  height: 100%;
}
.major-head {
  font-size: 6vw;
  width: 100%;
}
.major-des {
  width: 100%;
  font-size: 3.4vw;
}
.major-right {
  width: 100%;
  gap: 2vw;
}
.major-boxes{
  gap: 12vw;
}
.major-box {
  position: relative;
  width: 70vw;
  height: 45vw;
}
.m-left div {
  font-size: 5.5vw;
  margin-top: 10vw;
  height: auto;
  font-family: 'rajdhani';
}
.m-topic {
  font-size: 3.1vw;
  margin-top: 7vw;
}
.m-sub-topic {
  font-size: 3.3vw;
  line-height: 4vw;
}
.m-right{
  gap: 2vw;
}
/* speakers */
/* new-speakers */
.speak-box {
  position: relative;
  width: 35vw;
  height: auto;
}
.speak-img{
  height: 35vw;
  border-radius: 2vw 2vw 0 0;
}
.speak-name {
  font-size: 2.4vw;
  line-height: 2.4vw;
}
.speak-details {
  width: 100%;
  height: 14vw;
  gap: 0.5vw;
  justify-content: center;
}
.speak-job {
  font-size: 1.8vw;
}
.speak-comp {
  font-size: 1.9vw;
}
/* SPEAKERS CAROUSEL */
.speakerHead {
  font-family: 'montserrat';
  font-size: 6.7vw;
}
.speaker-container {
  width: 100%;
}
.spk-box {
  width: 45vw;
  height: 70vw;
}
.spk-inbox {
  width: 90%;
  height: 50vw;
  padding: 0vw 2vw;
}
.spk-img-box {
  width: 34vw;
  height: 34vw;
  margin-bottom: 34.5vw;
}
.spk-hover{
  display: none;
}
.spk-cont {
  height: 25vw;
}
.spk-name {
  font-size: 3vw;
}
.spk-job {
  font-size: 2.9vw;
}
.spk-company {
  font-size: 2.9vw;
}
.spk-img{
  filter: none;
}
#speakers .speaker-up .owl-nav .owl-prev {
  font-size: 5vw;
  right: -3.5vw;
  width: 6vw;
  height: 6vw;
  top: 55%;
}
#speakers .speaker-up .owl-nav .owl-next {
  font-size: 5vw;
  right: -3.5vw;
  width: 6vw;
  height: 6vw;
  top: 55%;
}
/* sposnors */
.gold .spon-box {
  width: 35vw;
  height: 20vw;
}
.spon-name {
  font-size: 3vw;
  padding: 0.5vw 1vw;
}
.spon-box {
  width: 29vw;
  height: 18vw;
}
.media .spon-box {
  width: 22vw;
  height: 13vw;
}
/* gallery */
/* gallery */
.carousel {
  width: 80vw;
  height: 122vw;
  border-radius: 3vw;

}
.carousel .list .item{
 width: 26vw;
 height: 36vw;
 border-radius: 3vw;
 box-shadow: 0vw 0vw 1.2vw black;
}
.carousel .list .item:nth-child(3){
  left: 64%;
}

.carousel .list .item:nth-child(4){
  left: calc(67% + 50vw);
}

.carousel .list .item:nth-child(5){
  left: calc(67% + 80vw);
}
.arrows button {
  width: 10vw;
  height: 10vw;
  font-size: 5.5vw;
}

/* footer */

#footer {
  width: 100%;
  height: auto;
  padding: 3vw 0vw;
}
.footerContainer {
  flex-direction: column;
  gap: 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;
}
.mail-box:hover .mb2::before {
 display: none;
}
.mail-box:hover .mb3::before {
  display: none;
}
.fRight {
  width: 80vw;
  gap: 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fUp {
  justify-content: space-around;
  gap: 2vw;
}
.fUp div {
  width: 4vw;
  height: 4vw;
}
.fLinks {
  font-size: 2.55vw;
}

.fLeft {
  width: 85vw;
  height: auto;
  display: flex;
  flex-direction: column;
  margin: 0 0 0 0vw;
  gap: 0.8vw;
  justify-content: center;
  align-items: center;
}
.mb-cont::before {
  display: none;
}
.mail-box {
  width: 80%;
}
.mailHead3{
  font-size: 1.92vw;
}
.mail-heading {
  font-size: 2.5vw;
  text-align: center;
}
.mail {
  font-weight: 500;
  font-size: 2.2vw;
}
.fCopy {
  padding-left: 1vw;
  font-size: 2.5vw;
}

/* forms */
.modalWrapper {
  width: 50%;
}

.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: 3vw;
  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 {
  font-size: 1.8vw;
  width: 3vw;
  height: 3vw;
}
.form-img-box{
  display: none;
}
/* 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;
}

}

@media screen and (min-width: 768px) and (max-width: 1124px){


  body,html{
    overflow-x: hidden;
}
.traicon_logo{
  display: none;
}
.line-1 {
  transition: 500ms;
  transform: translateY(-20px);
}
.line-3 {
  transition: 500ms;
  transform: translateY(20px);
}
.traicon-mob{
  position: fixed;
  top: 6vw;
  left: 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vw;
}
.traicon-mob:after{
  right: 13vw;
}
.traicon-mob img{
  display: block;
  width: 12vw;
  height: fit-content;
  z-index: 3;
}
.nav-button{
  display: none;
}
#navBar{
  position: fixed;
  width: 100%;
  height: 100vh;
  left: -110vw;
}
.navbar-container{
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.navlist{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.navbar ul {
  font-size: 5vw;
  gap: 7vw;
}
.frame{
  display: flex;
  position: fixed;
  right: 2vw;
  top: 2vw;
  z-index: 9999;
  background-color: transparent;
}
.cover-box {
  width: 85%;
  height: auto;
  position: absolute;
  right: 0;
  margin-bottom: 30vw;
  top: 60%;
  display: flex;
  align-items: center;
  opacity: 0.7;
}
.count-dig {
  font-size: 8vw;
  line-height: 14vw;
}
.count-box {
  width: 18vw;
  height: 23vw;
}
.countdown {
      width: 100%;
      display: flex;
      position: absolute;
      right: 0;
      bottom: 0;
      gap: 2vw;
      bottom: 25vw;
      align-items: center;
      justify-content: center;
  }
.cover-content {
width: 90%;
height: 75vh;
display: flex;
align-items: center;
justify-content: start;
flex-direction: column;
gap: 0vw;
}
.event-logo {
  width: 65vw;
}
.logo-cont {
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 1vw;
    margin-top: 7vw;
}
.hr25 {
    width: 22vw;
}
.logo-cont:after {
    right: 21.5vw;
}
.date-place {
  gap: 1vw;
  font-size: 3.4vw;
  flex-direction: column;
  font-weight: 300;
  line-height: 3vw;
}
.count-des {
  font-size: 3.2vw;
}
.tagline {
margin-top: 5vw;
margin-left: 1vw;
width: 75vw;
font-size: 3.5vw;
text-align: center;
}
.tagline span{
  font-size: 3.5vw;
}
.cov-btns{
gap: 4vw;
margin-top: 5vw;
}
.cov-btn {
  padding: 1vw;
  width: 30vw;
  border-radius: 5vw;
  font-size: 2.5vw;
}
.date::after {
display: none;
}

/* overview */
#overview {
width: 100%;
height: auto;
flex-direction: column;
padding: 20vw 0;
}
.over-left {
width: 90%;
height: auto;
}
.over-img-box video {
  width: 100%;
  height: 65vh;
}
.over-img-box {
width: 97%;
height: 40vh;
width: 90%;
}
.over-left, .over-right {
width: 90%;
height: auto;
}
.over-right .title {
margin-top: 10vw;
}
.title{
font-size: 9vw;
line-height: 9vw;
}
.over-patch {
width: 30vw;
height: 10vw;
right: -12%;
top: 10vw;
}
.over-right p {
  font-size: 2.5vw;
}
/* numbers */
#numbers {
width: 100%;
height: auto;
}
.num-box {
  width: 18vw;
  height: 18vw;
}
.numbers-container {
flex-wrap: wrap;
justify-content: center;
width: 95%;
gap: 5vw;
}
.num-num {
  font-size: 5vw;
}
.num-name {
font-size: 2.5vw;
line-height: 2.5vw;
}
.why-boxes {
gap: 5vw;
}
.why-box {
  width: 42vw;
  height: 30vw;
  gap: 1vw;
}
.why-num {
  font-size: 4vw;
}
.why-sub-head {
  font-size: 2.4vw;
}
.why-des {
  font-size: 2.4vw;
}
.whysection {
width: 100%;
height: auto;
padding: 10vw 0;
}
.whysection .title {
height: auto;
font-size: 7vw;
}
.why-container {
  width: 95%;
  gap: 5vw;
}
/* who will you meet */
.who-container {
  width: 95%;
}
.job-boxes {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.job-titles {
width: 100%;
height: auto;
}
.job-num {
font-size: 4.5vw;
width: 15vw;
height: 15vw;
}
.job-names {
  width: 100%;
  height: auto;
  font-size: 2.4vw;
  line-height: 2.6vw;
}
.job-box {
width: 49%;
height: 15vw;
display: flex;
align-items: center;
justify-content: center;
}
.chart-container {
width: 100%;
}
#chartdiv {
width: 50%;
height: 50vw;
}
.chart-name span {
font-size: 3vw;
}
.chart-names {
  width: 50%;
  gap: 9vw;
}
.chart-name {
font-size: 3vw;
}
.themes::before {
  display: none;
}
.chart-bar {
width: 100%;
height: 1.7vw;
border-radius: 2vw;
}
.theme-box {
width: 45vw;
height: 22vw;
border: none;
}
.themes::before {
width: 1px;
top: 4.5vw;
left: 50%;
height: 95%;
}
.t-des {
  text-align: start;
  font-size: 2.45vw;
}
/* why-speak */
#WS {
width: 100%;
height: auto;
padding: 10vw 0;
}
.ws-boxes {
height: auto;
flex-direction: column;
align-items: center;
justify-content: center;
}
.ws-circle {
width: 90vw;
height: 90vw;
}
.ws-image {
width: 50vw;
height: 50vw;
}
.ws-left {
width: 100%;
height: 75vw;
}
.ws-right {
width: 100%;
height: 44.5vw;
}
.ws-slide {
  width: 100%;
  height: 42vw;
}
.ws-icon {
width: 15vw;
height: 15vw;
}
.ws-icon svg {
width: 55%;
}
.ws-topic {
  font-size: 3vw;
}
.ws-des {
  font-size: 2.4vw;
}
.ws-container {
  gap: 4vw;
}
.ws-head-patch {
width: 19vw;
height: 9vw;
}
#major{
height: auto;
padding: 10vw 0;
}
.major-container {
  width: 95%;
  height: auto;
  flex-direction: column;
  gap: 5vw;
}
.major-left {
width: 100%;
height: 100%;
}
.major-head {
  font-size: 4.5vw;
width: 100%;
}
.major-des {
width: 100%;
font-size: 2.4vw;
}
.major-right {
width: 100%;
gap: 2vw;
}
.major-boxes{
gap: 12vw;
}
.major-box {
  position: relative;
  width: 56vw;
  height: 37vw;
}
.m-left div {
  font-size: 4vw;
  font-weight: 600;
  margin-top: 10vw;
  font-family: 'montserrat';
}
.m-topic {
  font-size: 3vw;
  margin-top: 6vw;
}
.m-sub-topic {
  font-size: 2.4vw;
  line-height: 3vw;
}
.m-right{
gap: 2vw;
}
/* new-speakers */
.speak-box {
  position: relative;
  width: 35vw;
  height: auto;
}
.speak-img{
  height: 35vw;
  border-radius: 2vw 2vw 0 0;
}
.speak-name {
  font-size: 2.4vw;
  line-height: 2.4vw;
}
.speak-details {
  width: 100%;
  height: 14vw;
  gap: 0.5vw;
  justify-content: center;
}
.speak-job {
  font-size: 1.8vw;
}
.speak-comp {
  font-size: 1.9vw;
}
/* sposnors */
.gold .spon-box {
width: 40vw;
height: 22vw;
}
#sponsors .title {
  width: 90%;
}
.spon-name {
font-size: 3vw;
padding: 0.5vw 1vw;
}
.spon-box {
  width: 21vw;
  height: 14vw;
}
.media .spon-box {
width: 22vw;
height: 13vw;
}









/* forms */
.modalWrapper {
  width: 50%;
}

.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: 3vw;
  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 {
  font-size: 1.8vw;
  width: 3vw;
  height: 3vw;
}
.form-img-box{
  display: none;
}
/* footer */
#footer {
  width: 100vw;
  height: 35vw;
}
.footerContainer {
  flex-direction: column;
  gap: 2vw
}
.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;
}
.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%;
}
.mailHead3{
  font-size: 1.92vw;
}
.mail-heading {
  font-size: 1.95vw;
  text-align: center;
}
.mail {
  font-weight: 500;
  font-size: 2.12vw;
}
.fCopy {
  padding-left: 1vw;
  font-size: 1.825vw;
}
section{
  padding: 0;
}

}