@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=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&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');
@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=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&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');
@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=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&display=swap');

@font-face {
  font-family: "hanson bold";
  src: url("../fonts/Hanson-Bold.ttf");
}
@font-face {
    font-family: "cr";
    src: url("../fonts/Carbon.ttf");
}
body{
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    background-color: rgb(0, 0, 0);
    position: relative;
}
html{
  overflow-x: hidden;
}
a{
    text-decoration: none;
}
h1,h2,h3,h4,h5,h6{
  margin: 0;
  padding: 0;
}
/* colors
orange : ec1a1b
blue : #27d5fa
blue2 : #0c40d1;
yellow : #f2e479;
*/
 .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25d366;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
  }

  .whatsapp-float img {
    width: 40px;
    height: 40px;
  }

.loader{
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 1000000000000000;
  background-color: #000000b3;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}
.loader img{
  width: 90px;
}
.mob-line{
  display: none;
}
/* Loader */
.loader-overlay {
  position: fixed; top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.6);
  display:flex; align-items:center; justify-content:center;
  z-index:1000009999;
}
.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #007BFF;
  border-radius: 50%;
  width: 50px; height: 50px;
  animation: spin 1s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* Popup */
.popup-overlay {
  position: fixed; top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.6);
  display:flex; align-items:center; justify-content:center;
  z-index:10000000;
}
.popup-box {
  background:#000000;
  padding:20px;
  border-radius:10px;
  min-width: 30%;
  max-width: 90%;
  text-align:center;
  box-shadow:0 0 15px rgba(0,0,0,0.3);
  color: white;
  font-family: "figtree";
}
.popup-close {
  float:right;
  cursor:pointer;
  font-size:20px;
  font-weight:bold;
}

/* navbar */
.navbar{
    width: 100%;
    height: 7vw;
position: fixed;
display: flex;
align-items: center;
justify-content: space-between;
z-index: 1000;
}
.navbar ul{
    display: flex;
    align-items: center;
    justify-content: space-around;
    list-style: none;
    width: 40%;
    background-color: rgba(0, 0, 0, 0.223);
    padding: 1vw 1vw 1.1vw 1vw;
    backdrop-filter: blur(20px);
    margin: 0;
}
.navbar ul a{
    color: rgb(255, 255, 255);
    font-family: "Montserrat";
    font-size: 0.75vw;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.3vw 0.7vw;
    border: 1px solid #01d9ff00;
}
.navbar ul a:hover{
  border: 1px solid #00FFD1;
  color: #00FFD1;
}

.navbar ul .active{
  color: #00FFD1;
  border: 1px solid #00FFD1;
}
.nav-logo-box{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vw;
  margin-left: 2vw;
}
.traicon_logo{
    width: 5vw;
}

.trinity_logo{
  width: 4vw;
}
.nav-btn{
    color: rgb(0, 0, 0);
    padding: 0.5vw 1vw;
    background-color:#00FFD1;
    backdrop-filter: blur(3px);
    margin-right: 2vw;
    font-family: "Montserrat";
    font-size: 0.8vw;
    padding-bottom: 0.7vw;
    cursor: pointer;
}
.mob-logo{
  display: none;
}
/* cover */
.flying-element {
    width: 3px;
    height: 3px;
    background-color: #b7f1ff;
    position: absolute;
    border-radius: 50%;
    box-shadow: 0px 0px 4px 2px #2cd5fe;
}
.type-1{
    background-color: #b7f1ff;
    box-shadow: 0px 0px 4px 2px #2cd5fe ;
}
.cover{
    width: 100%;
    height: 136vh;
    position: relative;
}
.cover-img{
    width: 105%;
    position: absolute;
 
    transition: all 0.1s ease;
    margin-top: -2vw;
}
.cover-patch{
    position: absolute;
    width: 100%;
    height: 100%;
   background: linear-gradient(to right,rgba(0, 0, 0, 0.705),rgba(0, 0, 0, 0),rgba(0, 0, 0, 0));
   display: flex;
   justify-content: center;
   z-index: 10;
}
#cf{
    position: absolute;
    z-index: 10;
    height: 100%;
    width: 100%;
}
.cover-cont{
    width: 85%;
    height: 60%;
    margin-top: 8vw;
position: relative;
z-index: 10;
display: flex;
flex-direction: column;
gap: 0.7vw;
justify-content: center;
}
.logo{
  position: relative;
  font-size: 3.5vw;
  font-weight: 900;
  display: flex;
  flex-wrap: wrap;
}
.event-logo{
  width: 40vw;
}
.logo span{
  font-family: 'hanson bold';
  color: #fff;
}
.logo-star{
  position: absolute;
  width: 3.5vw;
  height: 3.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  left: 0%;
  top: -4vw;
  background: rgba(0, 0, 0, .1);
  border: 2px solid #cdcdcd;
}
.logo-star img{
  width: 90%;
}
.star{
  position: absolute;
  width: 2vw;
  height: 2vw;
  z-index: 100;
}
.countdown {
  display: flex;
  gap: 0.5vw;
  text-align: center;
  margin-top: 1vw;
}
.countdown .count-dig div{
  width: 1.1vw;
  font-family: "Montserrat";
  font-weight: 700;
  color: #00C2A8;
}
.countdown .count-box {
width: 6vw;
height: 5vw;
background-color: #0000004e;
border: 1px solid #00FFD13a;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-radius: 1vw;
backdrop-filter:blur(30px);
}
.countdown span {
  display: flex;
  font-size: 1.7vw;
  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: "michroma";
  font-size: 0.8vw;
}
.cover-down-patch{
    position: absolute;
    height: 50vh;
    width: 100%;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0),rgb(0, 0, 0),rgb(0, 0, 0));
}
.cover-br-patch{
    position: absolute;
    height: 22vw;
    width: 57%;
    left: 0;
    bottom: 0;
}


.date-place{
    display: flex;
    gap: 1vw;
    color: white;
    margin-top: 2vw;
    align-items: center;
   font-family: "Lexend Tera";
   font-size: 1vw;
   font-weight: 400;
   
}

.date-place i{
    padding: 0vw 0.5vw;
}

.tagline{
    margin-top: 1vw;
    font-family: "cr";
    color: white;
    font-size: 1.8vw;
    font-weight: 800;
    text-shadow: 0vw 0vw 0.6vw #00C2A8;
}
.keywords{
  padding: 0;
  margin: 0;
  font-family: "montserrat";
  color: white;
  font-weight: 600;
  font-size: 1.2vw;
}
.cov-btns{
    display: flex;
    gap: 2vw;
    margin-top: 1vw;
}
.cov-btn{
    color: white;
    font-family: "Montserrat";
    width: 12vw;
    display: flex;
    font-size: 1.1vw;
    align-items: center;
    justify-content: center;
   cursor: pointer;
    font-weight: 500;
    border: 0.1vw solid #00FFD1;
    display: flex;
    flex-direction: column;
    height: 3vw;
    overflow: hidden;
    position: relative;
}

.cov-btn::before{
  content: "";
  background: #00FFD1;
  height: 100%;
  position: absolute;
  left: 0;
  width: 0%;
  transition: all 0.3s ease;
}

.cov-btn:hover::before{
  width: 100%;
  left: auto;
  right: 0;
}
.cov-btn:hover {
  color: #000;
}
.cov-btn div{
  height: 3vw;
  position: absolute;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.cov-btn div:nth-child(2){
  transform: translateY(3vw);
}
.cov-btn:hover div:nth-child(1){
  transform: translateY(-3vw);
}
.cov-btn:hover div:nth-child(2){
  transform: translateY(0);
}
/* overview */
.overview{
    width: 100%;
    height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 0vw;
    position: relative;
    justify-content: center;
    z-index: 10;
    background: rgb(0, 0, 0);
    margin-top: -20vh;
}
.over-bg{
    width: 100%;
    height: 70vh;
    position: absolute;
    z-index: -1;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 100%;
    background-position-y: -10vw;
}
.over-bg img{
    width: 80%;
    /* filter: grayscale(); */
    display: none;

}
.over-patch{
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.521),rgba(0, 0, 0, 0.351),black);
    position: absolute;
    z-index: 2;
}
.o-left{
    width: 35%;
    height: 100%;
}
.o-right{
  width: 45%;
  height: 100%;
}
.o-left{
    display: flex;
    align-items: center;
    justify-content: center;
}
.over-img-boxes{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1vw;
}
.over-img-box{
width: 16vw;
height: 16vw;
border: 1px solid rgba(255, 255, 255, 0.174);
overflow: hidden;
border-radius: 1vw;
}

.over-img{
  width: 115%;
  transition: all 0.5s ease;
}
.over-img-box:hover .over-img{
transform: translateX(-2.5vw);
opacity: 0.7;
}
.o-right{
    padding-top: 0vw;
    padding-left: 2vw;
}
.o-shape{
    width: 80%;
    margin-top: 07vw;
  margin-left: -10vw;
}
.title{
    padding: 4vw 0vw 0 0vw;
    font-size: 3vw;
    font-family: "cr";
  color: white;
}
.title:hover span{
    cursor: pointer;
}
.title span{
  color: #00FFD1;
}
.overview .title{
  font-size: 2vw;
}
/* .even{
    background: linear-gradient(45deg,#851010,rgb(255, 255, 255) 70%);
    background-size: cover;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

.odd{
  background: linear-gradient(-45deg,#c64343,white 50%);
  background-size: cover;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
} */

.overview p{
    color: rgb(255, 255, 255);
    font-family: "Source Sans 3";
    line-height: 1.6;
    font-weight: 300;
    font-size: 1vw;
    text-align: justify;
}

/* numbers */
.numbers{
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    position: relative;
  
}
.numbers .title{
  font-size: 4vw;
}
.num-left{
    width: 35%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}
.num-right{
    width: 45%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1vw;
}
.num-boxes{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1vw; 
}
.num-title{
    color: white;
    font-family: "CR";
    font-size: 4vw;
    width: 50%;
}
.num-patch{
  width: 100vw;
  position: absolute;
  left: 0;
  top: 7.5vw;
opacity: 0.4;
filter: hue-rotate(15deg);
}
/* .num-title span:nth-child(1){
    background-color: #f72585;
    padding: 0vw 1vw;
    padding-top: 0.6vw;
}
.num-title span:last-child{
    background-color:#4361ee;
    padding: 0vw 1vw;
    padding-top: 0.6vw;
} */
.num-box{
    width: 14vw;
    height: 12vw;
    background-color: #74747463;
    backdrop-filter: blur(3px);
    border-radius: 0.4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 3;
}
.num-box:hover .num-box-patch{
   height: 100%;
}
.num-box:hover .num-des span{
  background: linear-gradient(to left,#000000,#000000);
  -webkit-background-clip: text;
  background-clip: text;
   font-weight: 800;
   color: transparent;
}
.num-box:hover .num-dig{
  color: #000000;
}
.num-box:hover .num-plus{
  color: #000000;
}
.num-box:hover .num-des{
  color: #000000;
}
.num-dig{
    display: flex;
    color: rgb(255, 255, 255);
    font-size: 3vw;
    align-items: center;
    
}
.num-plus{
    font-family: "montserrat";
    transform: translateY(-2vw);
    color: #ffffff;
}
.num-dig .odometer{
    font-family: "cr";


  
}
.num-img{
    width: 30vw;
    position: absolute;
    z-index: -1;
    right: -57vw;
    filter: hue-rotate(55deg);
    opacity: 0.9;
}
.num-des{
    font-size: 0.8vw;
    text-align: center;
    color: #ffffff;
    font-family: "Michroma";
    font-weight: 500;
    position: relative;
    z-index: 1;

}
.num-des span{
background: linear-gradient(to left,#ffffff,#ffffff);
   -webkit-background-clip: text;
   background-clip: text;
    font-weight: 800;
    color: transparent;
}
.num-box-patch{
  position: absolute;
  width: 100%;
  height: 1vw;
 background: linear-gradient(45deg,#00FFD1,#00c19d);
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}


/* whythis */
.why-this{
  width: 100%;
  height: 49vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8vw;
  position: relative;
}
.why-this .title span{
  color: #00FFD1;
}
.why-cont{
  width: 80%;
  height: 90%;
}
.why-this-boxes{
  width: 100%;
  height: 90%;
  display: flex;
}
.why-this-left{
  width: 60%;
  height: 100%;
}
.why-this-left p{
  color: white;
  font-size: 1vw;
  line-height: 1.7;
  font-family: "Source Sans 3";
  width: 90%;
}
.why-this-left-boxes{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5vw;
  margin-top: 1.5vw;
}
.wt-box{
  width: 15vw;
  height: 7vw;
  border-radius: 1vw;
border: 2px solid #00c19d;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.4vw;
transition: all 0.5s ease;
}
.wt-box:hover{
  background-color: #00FFD1;
  box-shadow: 0vw 0vw 1vw 0.5vw #00ffd05f;
}
.wt-box:hover .wt-h,.wt-box:hover .wt-s{
  color: black;
}
.wt-h{
  color: #00FFD1;
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 1vw;
  transition: all 0.5s ease;
  width: 90%;
  text-align: center;
  text-transform: uppercase;
}
.wt-h sup{
  font-size: 0.7vw;
  text-transform: lowercase;
}
.wt-s{
  color: white;
  font-family: "Source Sans 3";
  font-size: 1vw;
  transition: all 0.5s ease;
  text-align: center;
  width: 90%;
}
.why-this-right{
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.why-this-img{
  width: 90%;
  height: 90%;
  margin-top: 10vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.why-this-img img{
  width: 110%;
  transition: all 0.5s ease;
}
.why-this-img-stroke{
  width: 80%;
  height: 90%;
  border: 2px solid #00FFD1;
  position: absolute;
  margin-left: 25%;
  margin-top: 13%;
  transition: all 0.5s ease;
}
.why-this-right:hover img{
  transform: translateX(-1vw);
  opacity: 0.7;
}
.why-this-right:hover .why-this-img-stroke{
  z-index: 10;
  transform: scale(1.01);
}

/* themes */
.themes{
  width: 100%;
  height: 50vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 8vw;
}
.themes .title{
width: 80%;

}
.themes-cont{
  width: 80%;
  height: auto;
  min-height: 80%;
  margin-top: 2vw;
  display: flex;
  flex-direction: column;

}
.theme-box{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.themes-cont .theme-carousel .theme-box img{
  width: 120%;
  position: absolute;
  transition: all 0.5s ease;
} 

.themes-cont .theme-carousel .owl-nav,.themes-cont .theme-carousel .owl-dots{
  display: none;
}

.themes-cont .tc2 .theme-box img{
  width: 120%;
  position: absolute;
  transition: all 0.5s ease;
} 
.themes-cont .item{
  height: 17vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.themes-cont .item:hover .theme-des{
margin-left: 10.3%;
}

.themes-cont .item:hover .theme-box img{
transform: translateX(-8%);
opacity: 0.5;
}

.themes-cont .item:hover .t-des{
  opacity: 1;
}

.theme-des{
  position: absolute;
  width: fit-content;
  z-index: 2;
  color: white;
  font-size: 1vw;
  font-family: "Michroma";
  transition: all 0.5s ease;
  left: 0;
  text-align: left;
  bottom: 3vw;
  padding: 0.6vw 1vw;
  background: linear-gradient(to right,black,transparent);
}
.t-des{
  position: absolute;
  width: 80%;
  height: 80%;
  opacity: 1;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
 .t-line{
  position: absolute;
  width: 110%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.658);
  opacity: 0;
  transition: all 0.5s ease;
 }

 .themes-cont .item:hover .tl1, .themes-cont .item:hover .tl4{
  width: 110%;
  opacity: 1;

 }

 .themes-cont .item:hover .tl2, .themes-cont .item:hover .tl3{
  height:110%;
  opacity: 1;

 }

 .tl1{
 top:0;
 width: 0%;
 }
 .tl4{
  bottom: 0;
  }
 .tl2{
  width: 1px;
  height: 0%;
  left: 0;
  }
  .tl3{
   width: 1px;
   height:0%;
  right:0;
   }


/* scrolling  */
.scrolling-container {
    position: absolute;
    top: 0;
    left: -20vw;
    width: 130%;
    overflow: hidden;
    white-space: nowrap;
   padding: 0.5vw 0vw;
    transform: rotate(-2deg);
   margin-top: 3vw;
   background:linear-gradient(to left,#00FFD1,#047661) ;
  
  }
  
  .scrolling-text {
    display: inline-block;
    white-space: nowrap;
    font-family: "cr";
    font-size: 2vw;
    font-weight: 800;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
  }

  /* who */

  .who{
width: 100%;
height: auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
background-image: url("../images/bg.jpg");
background-size: cover;
  }
  .who .title{
    width: 80%;
    position: relative;
    z-index: 3;
  }
  .whoPara{
    font-size: 1vw;
    font-family: "Source Sans 3";
    font-weight: 600;
    color: white;
    padding: 0;
    margin: 0;
    width: 80%;
    margin-top: 1vw;
  }
.who-patch{
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(rgba(0, 0, 0, 0.155),black);
}
.who-container{
  width: 80%;
  height: 70vh;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-top: 2vw;

}
.who-bg{
  width: 100%;
  height: 100vh;
  position: absolute;
  background-image: url("../images/bg.jpg");
  background-size: cover;
  top: 0;
  z-index: -1;
}
.att-percentage{
width: 35%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 1vw;
}

.att-percentage .att-h{
  width: 92%;
  margin-top: -1vw;
}
.per-list{
  width: 70%;
  height: 7vw;
  position: absolute;
  left: 15%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3vw;
  display: flex;
  align-items: center;
  margin-top: 1vw;
}
.per-des{
  color: white;
  font-family: "Source Sans 3";
  font-size: 0.9vw;
  font-weight: 300;
}
.per-line{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
}
.per-line:nth-child(1) .per-dot{
  background-color: #00FFD1;
}
.per-line:nth-child(3) .per-dot{
  background-color: #ffffff;
}
.per-dot{
  width: 0.8vw;
  height: 0.8vw;
  background-color: #2cd5fe;
}

.att-per-box{
  width: 25vw;
  height: 28.2vw;
  background-color: rgb(38, 38, 38);
  border-radius: 1vw;
  position: relative;
}

#chart {
  width: 100%;
  height: 100%;
  margin-top: 3vw;
}

.attendBoxes{
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5vw;
  padding: 1vw 0;
  border-radius: 1vw;
}

.anim{
opacity: 0;
transform: translateY(50px);
}

.att-h{
  color: rgb(255, 255, 255);
  font-family: "Michroma";
  font-weight: 400;
  font-size: 1vw;
  margin-left: 0.5vw;
}
.att-right{
  width: 65%;
}
.attendBox{
  width: 100%;
  height: 100%;
  border-radius: .5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .2vw;
  background: rgba(209, 209, 209, 0.093);
  transition: all ease .4s;
  backdrop-filter: blur(10px);
}
.att-out{
  width: 12vw;
  height: 9vw;
  display: flex;
  align-items: center;
  justify-content: center;
   /* border:  0.1vw solid #2cd5fe;
  border-radius: 0.7vw;
  box-shadow: 0px 0px 0.4vw #2cd5fe;  */
}
.attIcon{
  width: 30%;
  height: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease .4s;

}
.attIcon svg{
  width: 60%;
  fill: #ffffff;
  transition: all ease .4s;
}
.attDes{
  width: 95%;
  font-family: 'Michroma';
  text-align: center;
  color: #ffffff;
  font-size: 0.6vw;
  transition: all ease .4s;
  text-transform: uppercase;
}
.attPatch{
  position: absolute;
  z-index:0;
  right: -8vw;
  border-radius: 50%;
  top: -10vw;
  width: 30vw;
  height: 30vw;
  background:linear-gradient(45deg,#ac750a,#f4d069);
}
.attendHead{
  width: 95%;
}
.attendBox:hover .attIcon svg{
  transform: rotatey(360deg);
  fill: #000000;
}
.attendBox:hover .attDes{
  color: #000000;
}


    /* by Position */
    .position{
      width: 80%;
      height: auto;
      position: relative;
      z-index: 2;
      margin-top: 2vw;
      padding-bottom: 2vw;
    }
    .pos-cont{
      width: 100%;
     display: flex;
     align-items: center;
     gap: 1vw;
     justify-content: center;
     flex-wrap: wrap;
     margin-top: 5vw;
     padding-bottom: 3vw;
    }
    .pos-box{
      width: 15vw;
      height: 10vw;
      border-radius: 2vw;
      /* background-color: rgba(255, 255, 255, 0.051); */
      backdrop-filter: blur(20px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1vw;
      transition: all 0.2s ease;
      background: linear-gradient(45deg,#1c1c1c61,rgba(100, 100, 100, 0.448));
    }
    .pos-num{
      color: white;
      margin-left: 2vw;
      font-family: "hanson bold";
      font-size: 2vw;
    }
    .pos-num span{
      font-size: 1vw;
      color: #00FFD1;
    }
    .pos-des{
      color: white;
      margin-left: 2vw;
      width: 80%;
      font-family: "source sans 3";
      font-size: 1vw;
    }
    /* .pos-box:nth-child(2){
      border: 1px solid #2cd5fe;
    }
    .pos-box:nth-child(3){
      border: 1px solid #ffb341;
    }
  
    .pos-box:nth-child(2):hover{
      background: #2cd5fe;
    }
    .pos-box:nth-child(3):hover{
      background: #ffb341;
    } */
    .pos-box:hover{
      background: #00FFD1;
      transform: scale(1.07);
    }
    .pos-box:hover .pos-num,.pos-box:hover .pos-num span,.pos-box:hover .pos-des{
      color: #000000;
    }
    /* .pos-box:nth-child(2):hover .joblist li::before{
      background-color: #2cd5fe;
      color: #000000;
    }
    .pos-box:nth-child(3):hover .joblist li::before{
      background-color: #ffb341;
      color: #000000;
    } */
    .pos-box:hover .joblist li::before{
      background-color: #cafe32;
      color: #000000;
    }
    .joblist{
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.8vw;
      width: 65%;
      list-style: none;
      position: relative;
    }
    .joblist::before{
      content: "";
      height: 100%;
      position: absolute;
      width: 1px;
      /* background-color: rgba(255, 255, 255, 0.258); */
      left: 0vw;
    }


    /* summit-highlights */
 .highlights{
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/highlight_bg.jpg");
  background-size: cover;
 }
 .high-overlay{
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000e0;
 }
 .high-cont{
  width: 80%;
  height: 80vh;
}
.high-boxes{
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  margin-top: 3vw;
}
.high-box{
  width: 28%;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  padding: 1vw;
  padding-left: 2vw;
  border:1px solid rgba(255, 255, 255, 0.448);
  height: 21vw;
  border-radius: 1vw;
  color: #fff;
  fill: #fff;
  transition: all ease .4s;
}
.high-box:hover{
  color: #000000;
  fill: #000;
}
.hb1:hover{
  background-color: #00FFD1;
}
.hb2:hover{
  background-color: #2cd5fe;
}
.hb3:hover{
  background-color: #00C2A8;
}
.high-icon{
  width: 4vw;
  margin-top: 1vw;
}
.high-h{
  font-family: "hanson Bold";
  text-transform: uppercase;
  font-size: 1.5vw;
}
.high-p{
  font-family: "source sans 3";
  font-size: 1vw;
  width: 80%;
  font-weight: 400;
}



  /* main-show */
  .main-show{
    width: 100%;
    height: auto;
    min-height: 49vw;
  }
  .mainst{
    margin-top: 3vw;
    display: flex;
  }
  .mst-img{
    width: 50%;
  }
  .mainst-cont{
    width: 40%;
    height: 35vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .mainst-h{
    color: white;
    font-family: "cr";
    font-size: 3.3vw;
    margin-left: 6vw;
  }
  .mainst-cont p{
    color: white;
    font-family: "Source Sans 3";
    padding-left: 10vw;
    line-height: 1.6vw;
    font-size: 1.1vw;
    font-weight: 300;
  }
  .connect2024{
    font-family: "Poppins";
    text-transform: uppercase;
    font-size: 2vw;
    -webkit-text-stroke: #01dbff;
    color: transparent;
    -webkit-text-stroke-width: 0.1vw;
    font-weight: 700;
    margin-left: 23.5vw;
    line-height: 1.5vw;
  }
  
  .showcase{
    width: 100%;
    min-height: 48vw;
    height: auto;
    display: flex;
    align-items: center;
    position: relative;
  }
  .showcase-cont{
    width: 73%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .showcase-cont p{
    color: white;
    font-family: "Source Sans 3";
    width: 32%;
    line-height: 1.6vw;
    font-size: 1.1vw;
    font-weight: 300;
    margin-right: 6vw;
    margin-bottom: 3vw;
    position: relative;
  }
  .showcase-cont p::after{
    content: "";
    width: 9vw;
    height: 2px;
    background-color: #00FFD1;
    position: absolute;
    left: 0;
    bottom: -1vw;
  }
  .showc-h{
    font-family: "cr";
    color: white;
    font-size: 3.3vw;
    margin-right: 7vw;
  }
  .sc-img{
    width: 27%;
  }
  .showcase-box{
    position: absolute;
    width: 59vw;
    height: 71vw;
    border: 1px solid #ffffff26;
    right: 9.5%;
    bottom: 3vw;
    z-index: -1;
  }
  .sc-img2{
    position: absolute;
    width: 23vw;
    left: 18%;
    bottom: 0vw;

  }
  .sc-img3{
    position: absolute;
    width: 15%;
    top: 4vw;
  }
  .show-boxes{
    width: 10vw;
    height: 20vw;
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  .show-box{
    width: 6vw;
    height: 6vw;
/* background-color: #ffffff3e; */
  }
  .show-box:first-child{
    border-radius: 10vw;
  }
  /* .show-box:nth-child(2){
    background-color: #01dbff;
  }
  .show-box:nth-child(3){
    background-color: #2F8CD9;
  } */
   /* why exhibit */
   .ex{
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-color: #00000078;
  }
  .ex-shape{
    position: absolute;
    width: 30vw;
    left: -3vw;
    opacity: 0.7;
    display: none;
  }
  .ex-h-container{
    width: 80%;
    height: 13vw;
    margin: 1vw 0vw;
    background-color: #ffffff1a;
    border-radius: 1vw;
    backdrop-filter: blur(2px);
    margin-left: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .w-ex-cont{
    width: 80%;
    padding-top: 8vw;
  }
  .ex-main-h{
    color: white;
    font-size: 1vw;
    font-family: "Source Sans 3";
  }
  .ex-headings{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 1vw;
  }
  .ex-head{
    width: 23%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1vw 0vw;
    border-radius: 1vw;
  }

  .ex-icon{
    width: 3vw;
    filter: invert();
  }
  .ex-boxes{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ex-cr{
    width: 80%;
  }
  .ex-heading{
    color: white;
    font-size: 1vw;
    font-family: "Source Sans 3";
    margin-top: 0.2vw;
    
  }

  .ex-carousel .item{
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24vw;
  }
  .ex-box{
    width: 95%;
    height: 80%;
    border: 1px solid rgba(255, 255, 255, 0.192);
    border-radius: 1vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #12121253;
    transition: all 0.5s ease;
  }
  .ex-active .eb1{
    background-color: #00FFD1;
    box-shadow: 0 0 0.5vw #00FFD1;
  }

  .ex-active .eb2{
    background-color: #2cd5fe;
    box-shadow: 0 0 0.5vw #2cd5fe;
  }
  .ex-active .eb3{
    background-color: #00C2A8;
    box-shadow: 0 0 0.5vw #00C2A8;
  }
  .ex-active .ex-box .ex-box-para{
color: #121212;
  }
  .ex-active .ex-box .ex-num{
    color: #121212;
  }
  .ex-active .ex-box  .ex-h{
    color: #121212;
  }
  .ex-active .ex-box .ex-box-up::after{
    background-color: #121212;
  }

 

  .ex-box-up{
    width: 100%;
    height: 2.5vw;
    display: flex;
    align-items: center;
    position: relative;

  }
  .ex-box-up::after{
    content: "";
    width: 20%;
    height: 2px;
    background-color: #a5a5a5;
position: absolute;
top: -0.5vw;
left: 1vw;
  }
.ex-h{
    font-size: 1.1vw;
    font-weight: 600;
    font-family: "Montserrat";
}
.ex-num{
    font-family: "hanson bold";
    font-size: 1.5vw;
    padding: 0vw 1vw;
    color: #3ac294;
    margin-top: 0.4vw;
}
.ex-box-para{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ex-box-para p{
    text-align: center;
    font-family: "Source Sans 3";
    font-size: 1vw;
    line-height: 1.5;
    padding: 0vw 1vw;
}
 
.ex-carousel .owl-nav button.owl-prev,
.ex-carousel .owl-nav button.owl-next{
    color: #ffffff;
    background:linear-gradient(45deg,#246f74,#3ac294) ;
    width: 2vw;
    height: 2vw;
    border-radius: 50%;
    font-size: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    margin-left: -7.9vw;
    margin-top: -13.5vw;
    box-shadow: 0vw 0vw 0.5vw #3ac294d1;
  }
  .owl-carousel .owl-nav button.owl-next{
    margin-left: 69.4vw;
  }
  .owl-carousel .owl-nav button.owl-prev span{
    transform: translate(-0.05vw,-0.2vw);
    position: absolute;
  }
  .owl-carousel .owl-nav button.owl-next span{
    transform: translate(0.05vw,-0.2vw);
    position: absolute;
  }

  /* speakers */
  .speakers{
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 2vw ;
    position: relative;
  }
  .spkp{
    width: 40vw;
    position: absolute;
    left: 0;
    opacity: 0.7;
  }
  .speaker-container
  {

    width: 80%;
    height: auto;
    min-height: 80vh;
  }
 .spk-patch{
  height: 100%;
  width: 10vw;
  position: absolute;

  left: 0vw;
 }
  .spk-cont{
    margin-top: 8vw;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .spk-box{
    width: 22vw;
    height: 31.5vw;
    border-radius: 1vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .panel-head{
    width: 85%;
    font-size: 2vw;
    font-family: 'michroma';
    color: #fff;
    padding: 3vw 0 8vw;
    justify-self: start;
  }
  .panel-head span{
    color: #00FFD1;
  }
  /* .spk-img-glow{
    width: 19vw;
    height: 23vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    box-shadow: 4px 4px 10px #ffffff,-4px -4px 10px #ffffff,inset 4px 4px 10px #ffffff,inset -4px -4px 10px #ffffff ;
  } */
  /* .gl-c0{
    border: 1px solid #e4d5d3;
    box-shadow: 4px 4px 10px #00FFD1,-4px -4px 10px #00FFD1,inset 4px 4px 10px #00FFD1,inset -4px -4px 10px #00FFD1 ;
  }
  .gl-c1{
    box-shadow: 4px 4px 10px #2cd5fe,-4px -4px 10px #2cd5fe,inset 4px 4px 10px #2cd5fe,inset -4px -4px 10px #2cd5fe ;
  }
  .gl-c2{
    box-shadow: 4px 4px 10px #ec9a1c,-4px -4px 10px #ec9a1c,inset 4px 4px 10px #ec9a1c,inset -4px -4px 10px #ec9a1c ;
  }
  .gl-c3{
    box-shadow: 4px 4px 10px #3ea449,-4px -4px 10px #3ea449,inset 4px 4px 10px #3ea449,inset -4px -4px 10px #3ea449 ;
  }
  .gl-c4{
    box-shadow: 4px 4px 10px #8a549f,-4px -4px 10px #8a549f,inset 4px 4px 10px #8a549f,inset -4px -4px 10px #8a549f ;
  } */
  .spk-img-box{
    width: 17vw;
    height: 21vw;
    background-color: #d0d0d0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

  }
  .spk-c0{
    background-color: #00FFD1;
  }
  .spk-c1{
    background-color: #2cd5fe;
  }
  .spk-c2{
    background-color: #ec9a1c;
  }
  .spk-c3{
    background-color: #3ea449;
  }
  .spk-c4{
    background-color: #8a549f;
  }
  .spk-img{
    width: 130%;
    margin-top: 3vw;
    position: relative;
  }

  .spk-des{
    width: 70%;
    height: 7.5vw;
    margin-left: 15%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2vw;
   }
   .spk-des::before{
    content: "";
    width: 0.1vw;
    height: 15vw;
    background-color: white;
    position: absolute;
    bottom: 0;
    left: -0.5vw;
   }
  .sb2{
    transform: translateY(-5vw);
  }
  .sb3{
    transform: translateY(-10vw);
  }
  .spk-name{
    color: white;
    font-size: 1.2vw;
    font-family: "Montserrat";
    text-transform: uppercase;
    font-weight: 600;
  }
  .spk-job{
    color: white;
    font-family: "Montserrat";
    font-size: 0.9vw;
  }
  .spk-comp{
    color: white;
    font-size: 0.9vw;
    font-family:"montserrat";
    font-weight: 600;
  }

  h1{
    font-size: 4vw;
    font-family: 'cr';
    color: white;
    padding: 2% 0 0 10%;
    margin: 0;
}
/* sponsors */
/* sponsors */
.sponsors{
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 5vw;
}
.sponsors-cont{
  width: 80%;
  min-height: 30vw;
}
.sponsors-container{
  width: 100%;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 4vw;
}
.spon-h{
  color: white;
  font-family: "montserrat";
  text-transform: uppercase;
  letter-spacing: 0.05vw;
  border: 2px solid #00c19d;
  padding: 0.5vw 1vw;
}

.spon-boxes{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1vw;
  margin-top: 1.5vw;
}

.spon-box{
  width: 15vw;
  height: 8.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  box-shadow:inset 0px 0px 1vw 1vw rgba(0, 0, 0, 0.195);
  border-radius: 1vw;
}
.gold .spon-box{
  width: 23vw;
  height: 13vw;
}
.silver .spon-box{
  width: 19vw;
  height: 11vw;
}

.media .spon-box{
    width: 11vw;
    height: 7vw;
}
.spon-img{
width: 80%;
}
/* agenda */
#agenda{
    position: relative;
    margin-top: 2vw;
    height: fit-content;
}
.ag-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ag-boxes{
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ag-left{
    width: 100%;
    height: auto;
}
.ag-right{
    width: 50%;
    height: auto;
}
.ag-head{
    display: flex;
    align-items: end;
}
.ag-head .ag-date{
    font-family: 'rajdhani';
    font-weight: 900;
    color: #ffffff29;
    font-size: 14vw;
    width: fit-content;
    line-height: 10vw;
}
.ag-head .ag-day{
    font-family: 'source sans 3';
    font-size: 2vw;
    font-weight: 300;
    color: white;
    transform: translate(-3vw, -0.3vw);
}
.ag-page{
    height: 65vw;
    display: flex;
    flex-direction: column;
    gap: .5vw;
    align-items: center;
}
.ag-blur{
  width: 100%;
  height: 33vw;
  background: linear-gradient(transparent,#000000c4,#000000);
  position: absolute;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ag-blur-box{
  width: 100%;
  height: 6vw;
}
.agbtop{
  backdrop-filter: blur(1px);
}
.agbmid{
  backdrop-filter: blur(3px);
}
.agbdown{
  backdrop-filter: blur(7px);
}

.get-agenda{
  width: 13vw;
  height: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fd8380;
  position: absolute;
  z-index: 2;
  color: white;
  font-family: "montserrat";
  margin-top: 10vw;
  cursor: pointer;
  font-size: 1vw;
  overflow: hidden;
  transition: all ease .3s;
}
.get-agenda::before{
  content: "";
  background: #fd8380;
  height: 100%;
  position: absolute;
  left: 0;
  width: 0%;
  transition: all 0.3s ease;
}

.get-agenda:hover::before{
  width: 100%;
  left: auto;
  right: 0;
}

.get-agenda div{
  height: 3vw;
  position: absolute;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.get-agenda div:nth-child(2){
  transform: translateY(3vw);
}
.get-agenda:hover div:nth-child(1){
  transform: translateY(-3vw);
}
.get-agenda:hover div:nth-child(2){
  transform: translateY(0);
}
/* #agenda .ag-page::-webkit-scrollbar {
    display: none;
  } */
.ag-box{
    width: 97%;
    height: auto;
    display: flex;
    color: white;
    padding: 0.7vw 0;
    justify-content: space-between;
    border-top: .5px solid #6d6d6d;
}
.ag-time{
    font-family: 'montserrat';
    font-size: 1vw;
    font-weight: 500;
    width: 25%;
}
.ag-box-right{
    display: flex;
    flex-direction: column;
    width: 73%;
}

.panel span{
    background-color: #ed434c;
    color: white;
    text-transform: uppercase;
    font-size: 1vw;
    padding: .1vw .3vw;
    border-radius: 0.3vw;
}
.ag-topic{
    font-family: 'montserrat';
    font-size: 1vw;
    font-weight: 600;
    color: #fff;
}

.ag-des{
    font-family: 'source sans 3';
    font-size: 1vw;
    color: #cacaca;
    font-weight: 400;
}
.blue{
    color: #418aff ;
}
.cyan{
    color: #2cd5fe;
}
.break{
    color: #ed434c ;
}
.yellow{
    color: #ffb341;
}
/* video */
.video{
  width: 100%;
  height: 100vh;
  
}


.video iframe{
  width: 100%;
  height: 100vh;
}

/* Gallery */
#gallery{
  overflow: hidden;
  height: auto;
margin-top: 2vw;
padding-bottom: 2vw;
}
#gallery .title{
  margin: 2vw 0 2vw 2vw;
  padding: 0;
}
.gallery-container{
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}
.gcontainer{
    height: 25vw;
    width: 100%;
    display: flex;
    justify-content: space-around;
    gap: 2vw;
}
.cont{
  width: fit-content;
  display: flex;
  gap: 2vw;
}
.gallery-container .contianer:nth-child(2){
  top: 10vw;
}


.box{
  width: 22vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(108, 145, 145);
  border-radius: .5vw;
  overflow: hidden;
  
  border: 1px solid #00FFD1;
}
.box img{
  width: 100%;
  transition: all 0.3s ease;
}
.box:hover img{
  width: 110%;
  opacity: 0.8;
}
.b1{
  width: 35vw;
  background-color: #2cd5fe;
  border: 2px solid #2cd5fe;
}
.b2{
  width: 30vw;
  background-color: #0c40d1;
  border: 2px solid #0c40d1;
}
.b3{
  width: 26vw;
  background-color: #ffb341;
  border: 2px solid #ffb341;
}
.b4{
  width: 40vw;
  background-color: #00FFD1;
  border: 2px solid #00FFD1;
}
.gallery-container{
  display: flex;
  /* width: 120vw;
    rotate: -30deg;
    transform: translate(1vw, -3vw); */
}
.cont1{
  animation: move 35s linear infinite;
}
.cont2{
  animation: move1 40s linear infinite;
}
.gcont2{
  margin-top: 1vw;
}

@keyframes move {
  0% {
    transform: translateX(-60%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes move1 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-55%);
  }
}

/* ***************Footer Section**************** */
a{
  text-decoration: none;
}
#footer {
width: 100%;
height: auto;
background: #00000024;
display: flex;
align-items: center;
border-top: 0.2vw solid #01dbff;
}

.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: 45vw;
height: 10vw;
display: flex;
align-items: center;
justify-content: center;
gap: 2vw;
}
.s-f{
  display: flex;
flex-direction: column;
justify-content: center;
gap: 1vw;
position: relative;
}

.s-f::after{
  content: "";
  width: 2px;
  height: 4vw;
  position: absolute;
  background-color: #00FFD1;
  right: -1.7vw;
}

.org{
  width: 9vw;
  height: 10vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
}
.foot-logo-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
  height: 5vw;
  border: 1px solid rgba(255, 255, 255, 0.379);
  width: 7vw;
}
.foot-logo-box img{
  width: 4vw;
}
.foot-logo-box:nth-child(2) .fl-des{
  margin-top: -0.5vw;
}
.foot-logo-box:nth-child(2) img{
  transform: translateY(0.3vw);
}
.fl-des{
  color: rgb(255, 255, 255);
  font-family: "Source Sans 3";
  font-weight: 400;
  font-size: 0.8vw;
}
.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: #00FFD1;
border: 1.5px #00FFD1 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(#00c19d,#00c19d);
position: absolute;
margin-left: -1vw;
transition: all 0.5s ease;
}

.mail-box:hover .mb-cont::before{
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: 10000;
  }
  
  
  .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: 130%
  }
  
  .form-heading {
  font-family: "hanson bold";
  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(45deg,#00c19d,#00C2A8);
  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: #00c19d;
  }
  
  .f-btn:hover{
  color: #ffffff;
  background-color: #01dbff;
}
  
  
  /* 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: #00dece;
  }
  
  
  .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: #00C2A8;
}
.in-box{
  margin-top: 0.5vw;
  display: flex;
  flex-direction: column;
  gap: 0.3vw;
}
.in-box label{
display: flex;
gap: 0.5vw;
}


  /* responsive */
@media screen and (max-width: 767px){

  body,html{
    overflow-x: hidden;
  }
  .mob-logo{
    position: fixed;
    width: 20vw;
    z-index: 10000;
    top: 4vw;
    left: 4vw;
    display: block;
  }
  .ml2{
    display: none;
    left: 28vw;
    width: 15vw;
    top: 7.6vw;
  }
  .mob-line{
    width: 1px;
    height: 4vw;
    background-color: white;
    position: fixed;
    z-index: 10000;
    display: none;
    left: 25.5vw;
    top: 8vw;
  }
  

  .navbar{
 width: 100%;
 height: 100vh;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 left: -100vw;
 transition: all 0.5s ease;
 background-color: #000000c5;
  }

  .navbar ul{
    flex-direction: column;
    padding: 0;
    gap: 3vw;
    background: none;
    backdrop-filter: none;
  }
  .navbar ul li a{
    font-size: 4vw;
  }
  .nav-btn{
    font-size: 4vw;
    padding: 1vw 2vw;
    margin-top: 3vw;
  }
  .navactive{
    left: 0;
  }
  .traicon_logo{
    display: none;
  }
  .container, .menu-icon, .frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20vw;
    height: 20vw;
    position: fixed;
    z-index: 10000;
    right: 0;
    top: 0;
  }
  
  .frame {
 
    width: 20vw;
    height: 20vw;
  }
  
  .menu-icon {
    width: 9vw;
    height: 11vw;
    position: relative;
    cursor: pointer;
  }
  
  .line-1 {
    background: #fff;
    width: 100%;
    height: 1vw;
    border-radius: 5px;
    position: absolute;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .line-2 {
    background: #fff;
    width: 100%;
    height: 1vw;
    border-radius: 5px;
    position: absolute;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .line-3 {
    background: #fff;
    width: 100%;
    height: 1vw;
    border-radius: 5px;
    position: absolute;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .line-1 {
    transition: 500ms;
    transform: translateY(-3vw);
    animation: animateReverse 600ms ease-in-out;
  }
  
  .line-2 {
    transition: 500ms;
    transform: scale(1);
    opacity: 1;
  }
  
  .line-3 {
    transition: 500ms;
    transform: translateY(3vw);
    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(-3vw) 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(3vw) rotate(0deg);
    }
  }
  @keyframes rotateIcon {
    100% {
      transform: rotate(90deg);
    }
  }



  /* cover */
  .cover{
    height: 100vh;
    overflow: hidden;
  }
  .cover-img{
    width: 370%;
  transform: translateX(-45%);
  }
  .cover-patch{
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.551),rgba(0, 0, 0, 0));
  }
  .cover-cont {
    width: 100%;
    height: 80%;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 5vw;
  }
  .logo {
    font-size: 7vw;
    width: 90%;
}
  .event-logo {
    width: 75vw;
  }
  .date-place{
    font-family: "Montserrat";
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 3.2vw;
    font-weight: 600;
    gap: 3vw;
  }
.tagline{
  text-align: center;
  font-size: 5vw;
}
.keywords {
    font-size: 3.2vw;
}
.cov-btn {
  
  width: 40vw;
  font-size: 4.1vw;
  height: 9vw;
}
.cov-btn div {
  height: 8vw;
}
.cov-btn:hover .cov-btn div:nth-child(2){
  transform: translateY(-10vw);
}
.cov-btn div:nth-child(2) {
  transform: translateY(10vw);
}
.countdown .count-box {
  width: 15vw;
  height: 15vw;
  border-radius: 3vw;
}
.countdown{
  gap: 1.5vw;
}
.countdown span{
  font-size: 5vw;
}
.countdown .count-dig div {
  width: 3.2vw;
}
.count-des{
  font-size: 2vw;
}
  /* overview */
  .overview{
    margin-top: 0;
    height: auto;
    flex-direction: column;
    padding: 10vw 0vw;
  }
  .o-left,.o-right {
    width: 80%;
    height: auto;
}
.over-img-boxes{
  gap: 2vw;
}
.over-img-box {
  width: 35vw;
  height: 35vw;
  border-radius: 3vw;
}
.overview .title {
  font-size: 5vw;
  margin-top: 5vw;
}
.overview p {
  line-height: 1.7;
  font-size: 4vw;
}
/* numbers */
.numbers {
  width: 100%;
  height: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.num-left {
  width: 80%;
  justify-content: center;
}
.numbers .title {
  font-size: 7vw;
  text-align: center;
}
.num-right {
  width: 80%;
  height: 100%;
  gap: 2vw;
  margin-top: 4vw;
}
.num-box {
  width: 26vw;
  height: 26vw;
  border-radius: 3vw;
}
.num-box-patch{
  height: 3vw;
}
.num-dig {
  font-size: 5vw;
}
.num-plus {
  transform: translateY(-3vw);
}
.num-des {
  font-size: 2vw;
}


.title{
  font-size: 7vw;
}

.scrolling-text{
  font-size: 4vw;
}
/* whythis */
.why-this{
  height: auto;
  padding-top: 15vw;
  margin-top: 10vw;
}
.why-this-boxes{
  flex-direction: column;
  align-items: center;
}
.why-this-left {
  width: 100%;
  height: auto;
}
.why-this-left p {
  font-size: 4vw;
width: 100%;
text-align: justify;
}
.wt-box {
  width: 38vw;
  height: 20vw;
  border-radius: 3vw;
  gap: 2vw;
}
.wt-h {
  width: 80%;
  font-size: 3.1vw;
  text-align: center;
}
.wt-s {
  font-size: 3vw;
}
.why-this-right{
  width: 100%;
  height: auto;
  margin-top: 8vw;
}
.why-this-img-stroke {
  margin-top: -4%;
}
/* themes */
.themes {
  width: 100%;
  height: auto;
  margin-top: 10vw;
  padding-top: 20vw;
}

.themes-cont .item {
    height: 35vw;
}
.theme-des {
  font-size: 3vw;
  bottom: 6vw;

}

/* who */
.who-container{
height: auto;
flex-direction: column;
}
.att-percentage{
  width: 80vw;
  position: relative;
  z-index: 2;
}
.att-per-box {
  width: 77vw;
  height: 77vw;
}
.whoPara{
  font-size: 4vw;
}
.per-list {
  height: 16vw;
  left: 15%;
  gap: 1vw;
  margin-top: 5vw;
}
.per-des{
  font-size: 3.5vw;
}
#chart{
  margin-top: 8vw;
}
.att-h{
  font-size: 3vw;
}
.attendBoxes{
  gap: 1.5vw;
  margin-top: 2vw;
}
.att-right {
  width: 100%;
  margin-top: 6vw;
}
.att-out {
  width: 25vw;
  height: 25vw;
  border-radius: 3vw;
}
.attendBox{
  border-radius: 3vw;
}
.attIcon {
    width: 60%;
    height: 60%;
}
.attDes{
font-size: 1.4vw;
}

/* position */
.pos-cont{
  flex-wrap: wrap;
  gap: 3vw;
} 
.pos-box {
  margin-top: 2vw;
  width: 38vw;
  height: 38vw;
  border-radius: 4vw;
}
.pos-num {
  font-size: 5vw;
}
.pos-des {
  font-size: 3.4vw;
}
.pos-num span {
  font-size: 3vw;
}
.joblist{
  width: 75%;
}
.joblist li {
  font-size: 2.9vw;
}
.joblist li::before {
 margin-top: 0.7vw;
  left: -2vw;
  width: 2.5vw;
  height: 2.5vw;
  font-size: 2vw;
}
/* highlights */
.highlights{
  height: auto;
}
.high-overlay {
  height: auto;
}
.high-cont {
  height: auto;
}
.high-boxes{
  flex-wrap: wrap;
  gap: 3vw;
}
.high-icon {
  width: 12vw;
}
.high-box {
  width: 80vw;
  height: 60vw;
  gap: 2vw;
  border-radius: 3vw;
}
.high-h {
  font-size: 3.5vw;
}
.high-p {
  font-size: 3.5vw;
}
/* main-show */
.mainst{
  flex-direction: column;
}
.mst-img {
  width: 81%;
}
.mainst-cont{
  width: 80%;
  height: auto;
  margin-left: 15%;
  margin-top: 7vw;
}
.mainst-h {
  font-size: 6.3vw;
}
.mainst-cont p {

  padding-left: 10vw;
  line-height: 1.7;
  font-size: 4vw;
}
.connect2024 {
  font-size: 6vw;
  -webkit-text-stroke-width: 0.3vw;
  line-height: 1.5vw;
}

/* showcase */

.sc-img {
  width: 44%;
}
.showcase {
  justify-content: right;
  height: 100vw;
  align-items: flex-start;
  margin-top: 6vw;
}
.showc-h {
  font-size: 5.3vw;
}
.showcase-cont p {
  width: 80%;
  line-height: 1.7;
  font-size: 4vw;
  margin-right: 6vw;
  margin-bottom: 1vw;
}
.sc-img3{
  top: auto;
  bottom: 0;
  left: 0;
  width: 17vw;
}

.sc-img2{
  left: auto;
  right: 0;
  width: 35vw;
}
.showcase-cont{
  position: absolute;
  left: 1%;
  width: 60%;
}

/* why exhibit */
.ex-h-container {
  width: 100%;
  height:55vw;
  margin-left: 0;
}
.ex-main-h {
  font-size: 4vw;
  text-align: center;
}
.ex-headings{
  flex-wrap: wrap;
}
.ex-head {
  width: 50%;
  margin-top: 2vw;
}
.ex-icon {
  width: 6vw;
}
.ex-heading {
  font-size: 3vw;
}
.ex-carousel .item {
  height: 60vw;
}
.ex-box-para p{
  font-size: 3.5vw;
}
.ex-box-para{
  height: 35vw;
}
.ex-h {
  font-size: 3vw;
}
.ex-num{
  font-size: 4.5vw;
}
.ex-box-up::after{
  top: -3.5vw;
}
.ex-carousel .owl-nav button.owl-prev, .ex-carousel .owl-nav button.owl-next {

  width: 5vw;
  height: 5vw;
  border-radius: 50%;
font-size: 3vw;
  margin-top: -33vw;
}
.owl-carousel .owl-nav button.owl-next span {
  transform: translate(0.08vw, -0vw);
  position: absolute;
}
.owl-carousel .owl-nav button.owl-prev span {
  transform: translate(-0.05vw, -0vw);
  position: absolute;
}

/* speakers */
.panel-head {
    width: 100%;
    font-size: 4vw;
    padding: 3vw 0 3vw;
}
.spk-box {
  width: 40vw;
  height: 80vw;
 
}
.spk-img-box {
  width: 34vw;
  height: 43vw;
}
.spk-des {
  width: 90%;
  height: 23vw;
  margin-left: 20%;

}
.sb2,.sb3{
  transform: translate(0);
}
.spk-des::before {
  content: "";
  width: 0.2vw;
  height: 45vw;
  bottom: 0vw;
  left: -0.5vw;
}
.spk-name{
  font-size: 2.5vw;
}
.spk-job{
  font-size: 2.5vw;
}
.spk-comp{
  font-size: 2.5vw;
}
/* sponsors */
/* sponsors */
.sponsors{
  padding-bottom: 10vw;
}
.sponsors .title::after {
  right: 38vw;
}
.sponsors-h{
  font-size: 4vw;
}
.spon-box {
  width: 34vw;
  height: 19.5vw;
  border-radius: 2vw;
}
.gold .spon-box{
  width: 50vw;
  height: 25vw;
}
.silver .spon-box {
  width: 40vw;
  height: 20vw;
}
.supporting .spon-box {
  width: 30vw;
  height: 16vw;
}
.media .spon-box {
  width: 25vw;
  height: 13vw;
}
.spon-boxes{
  margin-top: 4vw;
}
.sponsors-container{
  margin-top: 8vw;
}
.sponsors-cont {
  width: 90%;
}
/* agenda */
h1 {
  font-size: 7vw;
}
.ag-left{
  width: 100%;
}
.ag-right{
  display: none;
}
.ag-head .ag-date{
  font-size: 21vw;
  line-height: 18vw;
}
.ag-head .ag-day {
  font-size: 4vw;
}
.ag-page{
  height: auto;
}
.ag-des{
  font-size: 3vw;
}
.ag-time{
  font-size: 3vw;
  width: 41%;
}
.ag-box-right{
  width: 65%;
}
.ag-topic{
  font-size: 3vw;
}
.get-agenda {
  width: 40vw;
  height: 8vw;
  font-size: 3vw;
}
.get-agenda div {
  height: 8vw;
}
.get-agenda:hover div:nth-child(1) {
  transform: translateY(-8vw);
}

.get-agenda:hover div:nth-child(2) {
  transform: translateY(0);
}

.get-agenda div:nth-child(2) {
  transform: translateY(8vw);
}

/* gallery */
.gcontainer {
  /* position: absolute; */
  height: 65vw;
}
#gallery .title {
margin: 3vw 0 3vw 3vw;
}
#gallery {
padding: 0 0 4vw 0;
}
.box {
  width: 48vw;
  border-radius: 1.5vw;
}
.b3 {
  width: 60vw;
}
.b4 {
  width: 85vw;
}
.b2 {
  width: 65vw;
}
.b1 {
  width: 75vw;
}


/* 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: 3.4vw;
}
.mail-heading{
  font-size: 4vw;
}
.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: 15vw;
}
.fUp div{
  width: 6vw;
  height: 6vw;
}
.fLinks{
  font-size: 3vw;
}
.fCopy{
  font-size: 3vw;
  margin-top: 3vw;

}

/* 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: 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;
}

}


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

  body,html{
    overflow-x: hidden;
  }
  .mob-logo{
    position: fixed;
    width: 15vw;
    z-index: 10000;
    top: 4vw;
    left: 4vw;
    display: block;
  }
  .ml2{
    display: none;
    left: 22vw;
    width: 12vw;
    top: 6.6vw;
  }
  .trinity_logo{
    
    display: none;
  }
  .mob-line{
    width: 1px;
    height: 4vw;
    background-color: white;
    position: fixed;
    z-index: 10000;
    display: none;
    left: 20vw;
    top: 6.5vw;
  }
  .nav-logo-box::after {
  display: none;
  }
  

  .navbar{
 width: 100%;
 height: 100vh;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 left: -100vw;
 transition: all 0.5s ease;
 background-color: #000000c5;
  }

  .navbar ul{
    flex-direction: column;
    padding: 0;
    gap: 3vw;
    background: none;
    backdrop-filter: none;
  }
  .navbar ul li a{
    font-size: 3vw;
  }
  .nav-btn{
    font-size: 3vw;
    padding: 1vw 2vw;
    margin-top: 3vw;
  }
  .navactive{
    left: 0;
  }
  .traicon_logo{
    display: none;
  }
  .container, .menu-icon, .frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20vw;
    height: 20vw;
    position: fixed;
    z-index: 10000;
    right: 0;
    top: 0;
  }
  
  .frame {
    width: 15vw;
    height: 15vw;
  }
  
  .menu-icon {
    width: 7vw;
    height: 7vw;
    position: relative;
    cursor: pointer;
  }
  
  .line-1 {
    background: #fff;
    width: 100%;
    height: 0.7vw;
    border-radius: 5px;
    position: absolute;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .line-2 {
    background: #fff;
    width: 100%;
    height: 0.7vw;
    border-radius: 5px;
    position: absolute;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .line-3 {
    background: #fff;
    width: 100%;
    height: 0.7vw;
    border-radius: 5px;
    position: absolute;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .line-1 {
    transition: 500ms;
    transform: translateY(-2vw);
    animation: animateReverse 600ms ease-in-out;
  }
  
  .line-2 {
    transition: 500ms;
    transform: scale(1);
    opacity: 1;
  }
  
  .line-3 {
    transition: 500ms;
    transform: translateY(2vw);
    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(-3vw) 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(3vw) rotate(0deg);
    }
  }
  @keyframes rotateIcon {
    100% {
      transform: rotate(90deg);
    }
  } 
  

  /* cover */
  .cover{
    height: 100vh;
    overflow: hidden;
  }
  .cover-img{
    width: 250%;
  transform: translateX(-35%);
  }
  .cover-patch{
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.551),rgba(0, 0, 0, 0));
  }
  .cover-cont {
    width: 80%;
    height: 80%;
   display: flex;
   flex-direction: column;
   /* align-items: center; */
   justify-content: center;
   gap: 3vw;
  }
  .logo {
    font-size: 6vw;
    width: 100%;
  }
  .event-logo {
    width: 60vw;
  }
  .date-place{
    font-family: "Montserrat";
    font-size: 2.5vw;
    font-weight: 600;
    gap: 3vw;
    display: flex;
    flex-direction: column;
    align-items: start;
  }
.tagline{
  font-size: 3vw;
}
.cov-btn {
  
  width: 25vw;
  font-size: 2.5vw;
  height: 7vw;
}
.cov-btn div {
  height: 7vw;
}
.cov-btn:hover .cov-btn div:nth-child(2){
  transform: translateY(-7vw);
}
.cov-btn div:nth-child(2) {
  transform: translateY(7vw);
}

.countdown .count-box {
  width: 12vw;
  height: 12vw;
  border-radius: 3vw;
}
.countdown{
  gap: 1.5vw;
}
.countdown span{
  font-size: 3.5vw;
}
.countdown .count-dig div {
  width: 2.5vw;
}
.count-des{
  font-size: 1.5vw;
}
.keywords{
  font-size: 3.2vw;
}


  /* overview */
  .overview{
    margin-top: 0;
    height: auto;
    flex-direction: column;
    padding: 10vw 0vw;
  }
  .o-left,.o-right {
    width: 80%;
    height: auto;
}
.over-img-boxes{
  gap: 2vw;
}
.over-img-box {
  width: 35vw;
  height: 35vw;
  border-radius: 3vw;
}
.overview .title {
  font-size: 5vw;
  margin-top: 5vw;
}
.overview p {
  line-height: 1.7;
  font-size: 2.9vw;
}
/* numbers */
.numbers {
  width: 100%;
  height: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.num-left {
  width: 80%;
  justify-content: center;
}
.numbers .title {
  font-size: 7vw;
  text-align: center;
}
.num-boxes{
  gap: 2vw;
}
.num-right {
  width: 80%;
  height: 100%;
  gap: 2vw;
  margin-top: 4vw;
}
.num-box {
  width: 23vw;
  height: 23vw;
  border-radius: 2vw;
}
.num-box-patch{
  height: 3vw;
}
.num-dig {
  font-size: 4vw;
}
.num-plus {
  transform: translateY(-3vw);
}
.num-des {
  font-size: 1.7vw;
}


.title{
  font-size: 7vw;
}

.scrolling-text{
  font-size: 4vw;
}
/* whythis */
.why-this{
  height: auto;
  padding-top: 15vw;
  margin-top: 10vw;
}
.why-this-boxes{
  flex-direction: column;
  align-items: center;
}
.why-this-left {
  width: 100%;
  height: auto;
}
.why-this-left p {
  font-size: 3vw;
width: 100%;
text-align: justify;
}
.wt-box {
  width: 38vw;
  height: 20vw;
  border-radius: 3vw;
  gap: 2vw;
}
.wt-h {
  width: 80%;
  font-size: 3.1vw;
  text-align: center;
}
.wt-s {
  font-size: 3vw;
}
.why-this-right{
  width: 100%;
  height: auto;
  margin-top: 8vw;
}
.why-this-img-stroke {
  margin-top: -4%;
}
/* themes */
.themes {
  width: 100%;
  height: auto;
  margin-top: 10vw;
  padding-top: 20vw;
}

.themes-cont .item {
    height: 35vw;
}
.theme-des {
  font-size: 3vw;
  bottom: 6vw;

}

/* who */
.who-container{
height: auto;
flex-direction: column;
}
.att-percentage{
  width: 80vw;
  position: relative;
  z-index: 2;
}
.att-per-box {
  width: 77vw;
  height: 77vw;
}
.whoPara{
  font-size: 3vw;
}
.per-list {
  height: 16vw;
  left: 15%;
  gap: 1vw;
  margin-top: 5vw;
}
.per-des{
  font-size: 3.5vw;
}
#chart{
  margin-top: 8vw;
}
.att-h{
  font-size: 3vw;
}
.attendBoxes{
  gap: 1.5vw;
  margin-top: 2vw;
}
.att-right {
  width: 100%;
  margin-top: 6vw;
}
.att-out {
  width: 25vw;
  height: 25vw;
  border-radius: 3vw;
}
.attendBox{
  border-radius: 3vw;
}
.attDes{
font-size: 1.4vw;
}

/* position */
.pos-cont{
  flex-wrap: wrap;
} 
.pos-box {
  margin-top: 2vw;
  width: 45%;
  height: 25vw;
  border-radius: 4vw;
}
.pos-num span {
  font-size: 2vw;
}
.pos-num {
  font-size: 4vw;
}
.pos-des {
  font-size: 2.4vw;
}
.joblist{
  width: 75%;
}
.joblist li {
  font-size: 2.9vw;
}
.joblist li::before {
 margin-top: 0.7vw;
  left: -2vw;
  width: 2.5vw;
  height: 2.5vw;
  font-size: 2vw;
}
/* main-show */
.mainst{
  flex-direction: column;
}
.mst-img {
  width: 81%;
}
.mainst-cont{
  width: 80%;
  height: auto;
  margin-left: 15%;
  margin-top: 7vw;
}
.mainst-h {
  font-size: 6.3vw;
}
.mainst-cont p {

  padding-left: 10vw;
  line-height: 1.7;
  font-size: 2.9vw;
}
.connect2024 {
  font-size: 6vw;
  -webkit-text-stroke-width: 0.3vw;
  line-height: 1.5vw;
}

/* showcase */

.sc-img {
  width: 44%;
}
.showcase {
  justify-content: right;
  height: 100vw;
  align-items: flex-start;
  margin-top: 6vw;
}
.showc-h {
  font-size: 5.3vw;
}
.showcase-cont p {
  width: 80%;
  line-height: 1.7;
  font-size: 2.9vw;
  margin-right: 6vw;
  margin-bottom: 1vw;
}
.sc-img3{
  top: auto;
  bottom: 17vw;
  left: 0;
  width: 17vw;
}

.sc-img2{
  left: auto;
  right: 0;
  width: 35vw;
}
.showcase-cont{
  position: absolute;
  left: 1%;
  width: 60%;
}
/* highlights */
.highlights{
  height: auto;
}
.high-overlay {
  height: auto;
}
.high-cont {
  height: auto;
}
.high-boxes{
  flex-wrap: wrap;
  gap: 3vw;
}
.high-icon {
  width: 8vw;
}
.high-box {
  width: 50vw;
  height: 44vw;
  gap: 2vw;
  border-radius: 3vw;
}
.high-h {
  font-size: 2.4vw;
}
.high-p {
  font-size: 2.4vw;
}
/* why exhibit */
.ex-h-container {
  width: 100%;
  height: 55vw;
  margin-left: 0;
  border-radius: 3vw;
}
.ex-box {
  border-radius: 2vw;
}
.ex-main-h {
  font-size: 3vw;
  text-align: center;
}
.ex-headings{
  flex-wrap: wrap;
}
.ex-head {
  width: 50%;
  margin-top: 2vw;
}
.ex-icon {
  width: 6vw;
}
.ex-heading {
  font-size: 2.5vw;
}
.ex-carousel .item {
  height: 60vw;
}
.ex-box-para p{
  font-size: 2.8vw;
}
.ex-box-para{
  height: 30vw;
}
.ex-h {
  font-size: 3vw;
}
.ex-num{
  font-size: 4.5vw;
}
.ex-box-up::after{
  top: -3.5vw;
}
.ex-carousel .owl-nav button.owl-prev, .ex-carousel .owl-nav button.owl-next {

  width: 5vw;
  height: 5vw;
  border-radius: 50%;
font-size: 3vw;
  margin-top: -33vw;
}
.owl-carousel .owl-nav button.owl-next span {
  transform: translate(0.08vw, -0vw);
  position: absolute;
}
.owl-carousel .owl-nav button.owl-prev span {
  transform: translate(-0.05vw, -0vw);
  position: absolute;
}

/* speakers */
.panel-head {
    width: 100%;
    font-size: 3.2vw;
    padding: 8vw 0 3vw;
}
.spk-box {
  width: 40vw;
  height: 75vw;
}
.spk-img-box {
  width: 34vw;
  height: 43vw;
}
.spk-des {
  width: 90%;
  height: 22vw;
  margin-left: 20%;
}
.sb2,.sb3{
  transform: translate(0);
}
.spk-des::before {
  content: "";
  width: 0.2vw;
  height: 32vw;
  bottom: 0vw;
  left: -0.5vw;
}
.spk-name{
  font-size: 2.5vw;
}
.spk-job{
  font-size: 2.3vw;
}
.spk-comp{
  font-size: 2.3vw;
}
/* sponsors */
.sponsors .title::after {
  right: 62vw;
}
.spon-box {
  width: 30vw;
  height: 16.5vw;
}
.gold .spon-box{
  width: 42vw;
  height: 20vw;
}
.silver .spon-box {
  width: 35vw;
  height: 20vw;
}
.supporting .spon-box {
  width: 28vw;
  height: 16vw;
}
.media .spon-box {
  width: 19vw;
  height: 11vw;
}
.sponsors-cont {
  width: 90%;
}
.spon-h{
  font-size: 2.3vw;
}
/* agenda */
h1 {
  font-size: 7vw;
}
.ag-left{
  width: 100%;
}
.ag-right{
  display: none;
}
.ag-head .ag-date{
  font-size: 21vw;
  line-height: 18vw;
}
.ag-head .ag-day {
  font-size: 4vw;
}
.ag-page{
  height: auto;
}
.ag-des{
  font-size: 3vw;
}
.ag-time{
  font-size: 3vw;
  width: 41%;
}
.ag-box-right{
  width: 65%;
}
.ag-topic{
  font-size: 3vw;
}
.get-agenda {
  width: 40vw;
  height: 8vw;
  font-size: 3vw;
}
.get-agenda div {
  height: 8vw;
}
.get-agenda:hover div:nth-child(1) {
  transform: translateY(-8vw);
}

.get-agenda:hover div:nth-child(2) {
  transform: translateY(0);
}

.get-agenda div:nth-child(2) {
  transform: translateY(8vw);
}
  /* gallery */
  .gcontainer {
    /* position: absolute; */
    height: 50vw;
  }
  #gallery .title {
  margin: 3vw 0 3vw 3vw;
  }
  #gallery {
  padding: 0 0 4vw 0;
  }
  .box {
    width: 48vw;
    border-radius: 1.5vw;
  }
  .b3 {
    width: 60vw;
  }
  .b4 {
    width: 85vw;
  }
  .b2 {
    width: 65vw;
  }
  .b1 {
    width: 75vw;
}

/* 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: 3vw;
}
.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: 15vw;
}
.fUp div{
  width: 6vw;
  height: 6vw;
}
.fLinks{
  font-size: 3vw;
}
.fCopy{
  font-size: 2.2vw;
  margin-top: 3vw;
  
}

/* 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: 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;
}
}