@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');

@font-face {
    font-family: "cdl";
    src: url("../fonts/ClashDisplay-Light.otf");
}
@font-face {
    font-family: "cdm";
    src: url("../fonts/ClashDisplay-Medium.otf");
}
@font-face {
    font-family: "cdr";
    src: url("../fonts/ClashDisplay-Regular.otf");
}
@font-face {
    font-family: "dream";
    src: url("../fonts/DREAMS.ttf");
}
@font-face {
    font-family: "next sphere thin";
    src: url("../fonts/SphereNextThin-WyR54.ttf");
}
@font-face {
    font-family: "next sphere bold";
    src: url("../fonts/NextSphereBlack-eZLJg.ttf");
}
@font-face {
    font-family: "horizon";
    src: url("../fonts/horizon.otf");
}
@font-face {
    font-family: "akira";
    src: url("../fonts/Akira\ Expanded\ Demo.otf");
}


body{
    margin: 0;
    padding: 0;
    overflow-x:hidden;
    background: #110505;
}
a{
    text-decoration: none;
    color: black;
}
.title{
    font-size: 3vw;
    font-family: "cdr";
    color: white;
    text-transform: uppercase;
    position: relative;
    width: fit-content;
}
.title span{
    font-family: "akira";
    color: #d32036;
}
.title::after{
    width: 30%;
    height: 1px;
    content: "";
    background: #faa307;
    position: absolute;
   right: 0;
   bottom: 0;
}
/* navbar */
.mob-logo{
  display: none;
}

.navbar{
    width: 100%;
    height: 70px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 100;
    transition: all 0.5s ease;
}
.navscroll{
    background-color: #110505;
    padding-top: 0;
}
.traicon-logo{
    width: 80px;
    margin-left: 20px;
}
.navbar ul{
    display: flex;
    align-items: center;
    width: fit-content;
    justify-content: center;
    list-style: none;
    gap: 15px;
}
.nav-patch{
  width: 10%;
  height: 10%;
  background-color: #d32035;
  position: absolute;
  z-index: -1;
  opacity: 0;
  transition: all 0.5s ease;
}
.navbar ul li a{
    color: white;
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 14px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 10px;
}
.navbar ul li a::after{
  content: "";
width: 100%;
height: 2px;
background-color: #d32035;
position: absolute;
bottom: -10px;
opacity: 0;
transition: all 0.3s ease;
}
.navbar ul li a::before{
  content: "";
width: 100%;
height: 2px;
background-color: #d32035;
position: absolute;
opacity: 0;
top: -10px;
transition: all 0.3s ease;
}
.navbar ul li a:hover::before{
  top: 0;
  opacity: 1;
}
.navbar ul li a:hover::after{
  bottom: 0;
  opacity: 1;
}
.navbar ul li a:hover .nav-patch{
  width: 100%;
  height: 100%;
  opacity: 1;
}
.navbar ul li .active::before{
  top: 0;
  opacity: 1;
}
.navbar ul li .active::after{
  bottom: 0;
  opacity: 1;
}
.active .nav-patch{
  width: 100%;
  height: 100%;
  opacity: 1;
}
.nav-btn{
    color: white;
    margin-right: 20px;
    font-family: "Montserrat";
    font-weight: 500;
    font-size: 14px;
    border: 2px solid #d32036;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
}
.nav-btn:hover{
    background-color: #d32036;
}

/* cover */
.cover{
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cover video{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
}
.cover-patch{
    width: 100%;
    height: 100%;
    background :linear-gradient(#1105056f,#110505d0,#110505);
    position: absolute;
    z-index: 2;
}
.cover-bg{
    width: 100%;
    height: 100%;
 background-image: url("../images/videobg.png");
    position: absolute; 
}

.cover-cont{
    width: 80%;
    height: 100vh;
    display: flex;
    position: relative;
    flex-direction: column;
    z-index: 3;
    gap: 1vw;
}
.cover-net{
    width: 100%;
    height: 100vh;
    opacity: 0.05;
}
.edition{
  color: white;
  font-family: "Source Sans 3";
  font-size: 1.1vw;
  position: absolute;
  top: 6.5vw;
  left: 13vw;
  font-weight: 500;
}
.event-logo-box{
  display: flex;
  align-items: center;
  gap: 5vw;
}
.event25-box{
position: relative;
height: 15vw;

}
.event25-box::before{
  content: "";
  width: 1px;
  height: 100%;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.518);
  position: absolute;
  margin-top: 8vw;
  left: -1.5vw;
}
.event25-img{
  width: 17vw;
  position: absolute;
  margin-top: 7vw;
}
.cyber-logo{
    width: 35vw;
    margin-top: 7vw;
}
.cov-line{
    width: 35vw;
    height: 1px;
    background-color: #d32036;
    margin-top: 1vw;
}
.cov-supp-h{
  color: white;
  margin-top: 0.4vw;
  font-family: "Source Sans 3";
  font-size: 1vw;
}
.cov-sup-boxes{
  display: flex;
  align-items: center;
  gap: 1vw;
  margin-top: 0.3vw;
}
.cov-sup-box{
  width: 10vw;
  height: 5vw;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cov-sup-box .cov-sup-img{
  width: 35%;
}
.cov-sup-box img{
  width: 70%;
}
.date-place{
    margin-top: 1.5vw;
    display: flex;
  align-items: center;
    justify-content: center;
    width: fit-content;
gap: 3vw;
}
.date-place i{
    font-size: 1vw;
    padding: 0vw 0.4vw;
    color: #faa307;
}
.date{
    color: white;
    font-family: "cdr";
    font-size: 1.2vw;
    letter-spacing: 0.1vw;
    display: flex;
    align-items: center;
    font-weight: 600;
}
.date sup{
    margin-top: -1vw;
    font-size: 0.6vw;
}


.place{
    color: white;
    font-family: "cdr";
    font-size: 1.2vw;
    letter-spacing: 0.1vw;
    margin-top: 0.2vw;
}

.countdown {
    display: flex;
    gap: 1vw;
    text-align: center;
    margin-top: 2vw;
  }
  
  .countdown .count-dig div {
    width: 1.2vw;
    font-family: "cdm";
    font-weight: 700;
    color: #ffffff;
  }
  
  .countdown .count-box {
    width: 6vw;
    height: 6vw;
    background: linear-gradient(45deg,#0000003a,#00000027);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1vw;
    backdrop-filter: blur(30px);
    gap: 0.2vw;
  }
  
  .countdown span {
    display: flex;
    font-size: 1.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: "cdl";
    font-size: 1vw;
  }
  

.tagline{
    margin-top: 1.5vw;
    font-family: "cdl";
    color: white;
    font-size: 1.55vw;
    line-height: 2vw;
    letter-spacing: 0.1vw;
    text-transform: uppercase;
}
.tagline span{
    font-size: 1.5vw;
    line-height: 2vw;
    font-family: "horizon";
}
.cov-btns{
    margin-top: 2vw;
    display: flex;
    gap: 2vw;
}
.cov-btn{
    width: 11vw;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: "cdr";
    padding: 0.7vw 0vw;
    font-size: 1vw;
    border-radius: 2vw;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.cov-btn div{
    height: 1.3vw;
    overflow: hidden;
    transition: all 0.3s ease;
}
.cov-btn div p{
    padding: 0;
    margin: 0;
transition: all 0.3s ease;
}
.cov-btn:hover div p{
    margin-top: -1.2vw;
}
.cov-btn:hover::after{
    /* width: 0%; */
    height: 0%;
}

.cov-btn::after{
    content: "";
    height: 100%;
    width: 100%;
    background:linear-gradient(45deg,#4d1717,#d32036);
    position: absolute;
    z-index: -1;
    transition: all 0.3s ease;
    bottom: 0;
    border-radius: 2vw;
}
.cov-btn::before{
    content: "";
    height: 100%;
    width: 100%;
    background:linear-gradient(45deg,#2e2e2e,#000000);
    position: absolute;
    z-index: -1;
    transition: all 0.1s ease;
    bottom: 0;
    border-radius: 2vw;
}
h1,h2,h3{
    padding: 0;
    margin: 0;
}


/* overview */
.overview{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    position: relative;
    padding: 5vw 0vw;
}
.over-top-images{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #000000c2;
    padding: 0.2vw 0vw;
}

.over-glow{
    width: 20vw;
    height: 20vw;
    background-color: #d32036;
    position: absolute;
    right: 4vw;
    border-radius: 50%;
    top: 30%;
    filter: blur(200px);
}

.over-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.over-cont{
    width: 80%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #2929297f;
    backdrop-filter: blur(30px);
}
.over-left{
    width: 50%;
    height: 100vh;
    /* background-color: #ffffff; */
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.over-img{
    width: 91.5%;
    height: 85%;
    background-size: cover;
}
.over-right{
    width: 50%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}
.over-top-img{
    width: 93%;
    margin-left: 1vw;
    height: 12vw;
    margin-top: 3.5vw;
    display: flex;
    justify-content: space-between;
}
.over-left-img{
    width: 18vw;
    height: 11vw;
    background-color: #2e2e2e;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.overimg{
    width: 100%;
    filter: grayscale();
}
.over-h{
    color: rgb(255, 255, 255);
    font-size: 2vw;
    font-family: "cdl";
    text-transform: uppercase;
    letter-spacing: 0.05vw;
    position: relative;
    width: fit-content;
    margin-left: -5vw;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.708);
}


.over-h::after{
content: "";
width: 20%;
height: 1px;
background-color: #faa307;
position: absolute;
right: 26%;
bottom: 0;
}
.over-h span:nth-child(1){
    font-family: "akira";
    color: #d32036;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0);
}
.over-h span:nth-child(3){
  font-size: 2.5vw;
}
.over-para{
    color: white;
    line-height: 1.7;
    font-family: "Source Sans 3";
    font-size: 1.1vw;
    padding: 0vw 3vw;
    font-weight: 300;
} 

@media screen and (min-width:1900px) {

    .over-para{
        font-size: 1vw;
    } 
}

.num-glow{
    width: 15vw;
    height: 15vw;
    position: absolute;
    background: #faa307;
    bottom: 0;
    border-radius: 50%;
    filter: blur(150px);
    left: -10vw;
    bottom: -10vw;
}


/* numbers */
.numbers{
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    width: 100%;
    background-color: #ffffff0a;
    backdrop-filter: blur(30px);

}

.num-heading{
    font-size: 1.1vw;
    font-family: "cdr";
    letter-spacing: 0.3vw;
    text-transform: uppercase;
    padding: 2vw;
    width: 70%;
}
.num-heading span{
    font-family: "akira";
    font-size: 2vw;
    letter-spacing: 0;
    color: #d32036;
}
.numbers-cont{
    width: 80%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
   
    height: 11vw;
    border-radius: 2vw;
}
.num-boxes{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}
.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner .odometer.odometer-theme-default .odometer-digit .odometer-digit-inner{
    overflow: visible;
}
.odometer-digit-spacer{
    width: 1.8vw;
}
.num-left{
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.num-right{
    width: 70%;
}
.num-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:1vw
}

.num-dig{
    display: flex;
    font-family: "source Sans 3";
    font-size: 2vw;
    gap: 0.5vw;
    position: relative;
}
.num-plus{
    position: absolute;
    right: -1.3vw;
    margin-top:-0.1vw;
    color: #d32036;
}
.num-dig .odometer{
    font-family: "cdm";
    font-size: 2.5vw;
    font-weight: 600;
}

.num-des{
    text-align: center;
    font-family: "cdr";
    letter-spacing: 0.1vw;
    font-size: 0.9vw;
    line-height: 1.2vw;
    position: relative;
}
/* who will you meet */
.who{
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 5vw;
}
.who-patch{
  width: 45%;
  height: 80vh;
  position: absolute;
  background-image: url("../images/circ.jpg");
  background-size: cover;
  left: 0;
  top: 18vh;
}
.who-p-in{
  width: 100%;
  height: 100%;
  background: radial-gradient(#110505b3,#110505);
}
.who-cont{
  width: 80%;
  height: auto;
}
.who-containers{
  width: 100%;
  height: auto;
  margin-top: 4vw;
  display: flex;
  gap: 5%;
  align-items: center;
}
.who-percentage-container{
  width: 45%;
  height: 35vw;
  display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
column-gap: 2vw;
row-gap: 0vw;
position: relative;
border-right: 1px solid rgba(255, 255, 255, 0.263);
}
.who-percentage-container::after {
content: "";
height: 32vw;
width: 1px;
position: absolute;
/* background-color:rgba(255, 255, 255, 0.136); */
right: -1vw;
}

.progress-container {
  width: 8vw;
  height: 8vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-box{
  width: 12vw;
  height: 12vw;
  background-color: #ffffff12;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  backdrop-filter: blur(10px);
}
.circle-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1vw;
}
.circle-des{
  color: white;
  font-family: "Source Sans 3";
  font-weight: 300;
  font-size: 1vw;
}



.who-right{
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.who-head{
  color: white;
  font-size: 1.4vw;
  padding-bottom: 0.5vw;
  width: 88%;
  font-family: "cdm";
  letter-spacing: 0.1vw;
}
.who-right-glow{
  width: 15vw;
  height: 15vw;
  background-color: #d32035;
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  right: 5vw;
}

.who-job{
width: 90%;
height: 33vw;
border: 2px solid rgba(255, 255, 255, 0.252);
border-radius: 1vw;
background-color: rgba(255, 255, 255, 0.074);
backdrop-filter: blur(30px);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 1.5vw;
position: relative;
z-index: 2;
}
.progress-wrapper{
width: 70%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.5vw;
}
.progress-des{
display: flex;
justify-content: space-between;
width: 100%;
align-items: center;
}
.who-job .progress-container{
width: 100%;
height: 20px;
position: relative;
}

.percent-num{
color: white;
font-family: "akira";
font-size: 1vw;
}

.progress-t{
color: white;
width: 80%;
font-size: 1vw;
font-family: "Source Sans 3";
}




.sectors{
width: 100%;
height: auto;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
margin-top: 7vw;
}
.sectors .who-head{
  width: 78%;
}

.who-boxes{
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
row-gap: 1.4vw;
width: 80%;
margin-top: 1.5vw;
}
.who-box{
  width:12vw;
  height: 12vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5vw;
  justify-content: center;
  border: 3px solid rgba(255, 255, 255, 0.177);
  border-radius: 1vw;
  transition: all 0.6s ease;
}
.w-icon{
  width: 22%;
  fill: white;
  transition: all 0.6s ease;
}
.w-des{
  text-align: center;
  width: 80%;
  font-family: "Source Sans 3";
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1vw;
  transition: all 0.6s ease;
 
}

.who-box:hover{
  box-shadow: 0px 0px 15px #d32036;
  border: 3px solid #d32036;
}
.who-box:hover .w-des{
  color: #d32035;
 font-weight: 600;
}
.who-box:hover .w-icon{
  fill: #d32035;
}



/* market */
.market{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url("../images/market-bg.jpg");
    background-size: cover;
}
.market-patch{
    width: 100%;
    height: 100%;
    background: linear-gradient(#110505,#110505d7,#110505);
    position: absolute;
}
.market-cont{
    width: 80%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.market-left,.market-right{
    width: 50%;
    height: 80vh;
}
.market-right{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.market-h{
    font-family: "cdr";
    font-size: 3vw;
    color: white;
}
.market-h span{
    color: #d32036;
    font-family: "akira";
    font-size: 3vw;
}
.market-para{
    color: white;
    font-family: "Source Sans 3";
    font-size: 1.1vw;
    margin-top: 1vw;
    font-weight: 300;
}
.market-boxes{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vw;
    flex-wrap: wrap;
    margin-top: 1.5vw;
}
.market-box{
    width: 48%;
    height: 6.5vw;
    background-color: #ffffff0a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(30px);
}
.market-nums{
    font-family: "Montserrat";
    color: #d32036;
    font-size: 1.1vw;
    padding: 0.5vw;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}
.market-des{
    color: white;
    font-family: "Source Sans 3";
    padding-left: 0.5vw;
    font-size: 1.1vw;
    font-weight: 300;
    text-align: center;
}
@media  screen and (min-width:1900px) {
    .market-des{
        font-size: 1vw;
    }
    .market-para{
        font-size: 1vw;
    }
}
.market-img-box{
    width: 60%;
    height: 80%;
background-image:url("../images/market1.jpg");
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
    border: 0.5vw solid #2e1f02;
    z-index: 2;
}
.market-img-box2{
    width: 50%;
    height: 45%;
 background-image: url("../images/market2.jpg");
 background-size: cover;
    position: absolute;
    bottom: -2vw;
    left: 5vw;border: 0.5vw solid #2e1f02;
    z-index: 3;
}
.mar-img-patch{
    width: 10vw;
    height: 10vw;
background-color: #d32035d0;
    position: absolute;
    right: -15vw;
    bottom: -10vw;
    z-index: 1;
    border-radius: 50%;
    filter: blur(50px);
}
/* themes */
.themes {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  padding: 4vw 0vw;
  position: relative;
  background-color: #120309;
  }
  .themes-glow{
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    right: -15vw;
    background: #e3b1277d;
    position: absolute;
    filter: blur(150px);
    top: -10vw;
  }
  .themes-cont {
    width: 80%;
    height: auto;
    position: relative;
  }
  
  .theme-carousel {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 0.8vw;
    margin-top: 0.5vw;
    margin-top: 3vw;
  }
  .theme-carousel .item,.theme-carousel2 .item{
    height: 18vw;
  }
  .themes-cont .theme-carousel .item img,.themes-cont .theme-carousel2 .item img{
    width: 0%;
    position: absolute;
    z-index: -1;
    left: 0;
    height: auto;
    min-height: 18vw;
    transition: all 0.5s ease;
  }
  .theme-box{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  .theme-box:hover .theme-box-overlay{
    background: linear-gradient(#1105057d,#110505);
  }

  .theme-box-overlay{
    position: absolute;
    width: 0%;
    height: 100%;
    background: linear-gradient(#12030900,#120309b5);
    z-index: -1;
    left: 0;
    transition: all 0.5s ease;
  }
  
  
  .theme-box:hover .theme-icon svg {
    fill: #120309;
    transform: translateY(-0.5vw);
  }
  
  .theme-box:hover .theme-des {
    color: #d32036;
  }
  
  .theme-icon {
    width: 70%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .theme-icon svg {
    fill: white;
    width: 40%;
    transition: all 0.3s ease;
  }
  
  .theme-des {
    text-align: center;
    padding: 0.5vw 0.5vw;
    color: white;
    font-family: "montserrat";
    font-size: 0.9vw;
    font-weight: 600;
    line-height: 1vw;
    text-align: center;
    background-color: #120309a2;
  }

/* summit hightlight */
.summit{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url("../images/highlights-bg.jpg");
    background-size: cover;
}
.summit-patch{
    width: 100%;
    height: 100vh;
    background: linear-gradient(#110505,#11050550,#1105057e,#110505);
    position: absolute;
}
.summit-glow{
    width: 15vw;
    height: 15vw;
    background: #d32035;
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    left: -9vw;
    top: -2vw;
    z-index: 2;
}
.summit-cont{
    width: 80%;
    height: 80vh;
}
.summit-boxes{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3vw;
}
.summit-box{
    width: 32%;
    height: 30vw;
    background-color: #00000066;
    border-radius: 1vw;
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}
.summit-box:hover{
    background-color: #ffffff23;
}
.summit-box:hover .summit-icon{
    fill: #faa307;
    transform: translateY(-1vw);
}
.summit-icon{
    width: 17%;
    fill: #d32036;
    transition: all 0.5s ease;
}
.summit-h{
    color: white;
    font-family: "akira";
    font-size: 1.2vw;
    text-align: center;
    letter-spacing: 0.1vw;
    margin-top: 1vw;
}
.summit-des{
    color: white;
    width: 80%;
    text-align: center;
    margin-top: 0.5vw;
    font-family: "Source Sans 3";
    font-size: 1vw;
}



  /* why */
  .why{
   width: 100%;
   min-height: 100vh;
   height: auto;
   display: flex;
   align-items: center;
   justify-content: center; 
   padding-top: 10vw;
  }
  .why-cont{
    width: 80%;
    min-height: 80vh;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .why-up{
    width: 100%;
    height: auto;
  }
  .why-h{
    color: white;
    font-family: "cdr";
    font-size: 2vw;
    width: 60%;
    margin-left: 5vw;
  }
  .why-h span{
    font-family: "akira";
    color: #d32036;
    font-size: 2.5vw;
  }
  .why-up{
    display: flex;
  }
  .why-up-left{
    width: 50%;
    height: 25vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .why-para{
    color: white;
    font-size: 1vw;
    font-family: "Source Sans 3";
    margin-top: 1vw;
    line-height: 1.7;
    width: 70%;
    margin-left: 5vw;
  }
  .why-up-right{
    width: 50%;
    height: 25vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ex-headings{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1vw;
  }
  .ex-head{
    width: 13vw;
    height: 13vw;
    gap: 0.5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #d3203543;
    box-shadow: inset 2px 2px 20px 10px #d3203521,inset -2px -2px 20px 10px #d3203521;
    border-radius: 1vw;
  }
  .ex-h-i{
    width: 30%;
    fill: #d32035;
  }
  .ex-heading{
    color: white;
    font-family: "cdl";
    text-align: center;
    font-size: 1vw;
    letter-spacing: 0.05vw;
  }
  .crs{
    color: #faa307;
    margin-left: 5vw;
    padding: 1vw;
    font-size: 1vw;
    font-family: "akira";
    border: 1px solid #faa307;
    width: fit-content;
    border-radius: 1vw;
    margin-bottom: 1vw;
  }
  .whytrans{
    color: rgba(255, 255, 255, 0.064);
    font-family: "akira";
    position: absolute;
    font-size: 12vw;
    transform: translateX(-7vw);
  }

  .why-down{
    width: 100%;
    height: auto;
    padding: 7vw 0vw;
  }
  .why-down .why-carousel .item{
    color: white;
  }
  .why-box{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1vw;
    height: 25vw;
    background: linear-gradient(rgba(255, 255, 255, 0.085),#110505);
  }
  .why-ex-icon{
    width: 5vw;
    height: 5vw;
border: 2px solid #d32035;
    border-radius: 50%;
    position: absolute;
    top: 2.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .why-ex-icon svg{
    fill: white;
    width: 50%;
  }

  .why-ex-h{
    color: #d32035;
    font-family: "Source Sans 3";
    font-size: 1.2vw;
    text-align: center;
    width: 90%;
    font-weight: 700;
    margin-top: 4vw;
  }
  .why-ex-des{
    text-align: center;
    font-family: "Source Sans 3";
    width: 80%;
    font-size: 1vw;
    line-height: 1.7;
    font-weight: 300;
  }

  .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
    background: linear-gradient(#440a11,#d32035);
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    color: white;
    font-size: 1.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .owl-carousel .owl-nav button.owl-next{
    position: absolute;
    right: -6vw;
    top: 38%;
  }
  .owl-carousel .owl-nav button.owl-prev{
    position: absolute;
    left: -6vw;
    top: 38%;
  }
  .owl-carousel .owl-nav button.owl-next span,.owl-carousel .owl-nav button.owl-prev span{
  width: 3vw;
  height: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -0.2vw;
  position: absolute;
  }

  /* speakers */
  .speakers{
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 5vw;
  }
  .speakers-cont{
    width: 80%;
    height: auto;
    min-height: 80vh;
  }
  .speaker-boxes{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vw;
    row-gap: 5vw;
    flex-wrap: wrap;
    margin-top: 2vw;
  }
  .speaker-box{
    width: 32%;
    height: 33vw;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
  }
  .past-speakers .speaker-box{
    width: 100%;
    height: 30vw;
  }
  .past-speakers .owl-carousel .item{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .past-speakers .spk-img{
    margin-top: 50vh;
  }
  .speaker-img-box{
    width: 19vw;
    height: 23vw;
    top: 0vw;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
background: linear-gradient(45deg,#e7e7e7,#706e6e);
    border-radius: 1vw;
    position: relative;
  }
  .spk-img-patch{
width: 120%;
height: 6vw;
transform: rotate(-13deg);
background: linear-gradient(45deg,#7e0d1b,#d32035);
position: absolute;
bottom: -4.5vw;
z-index: 3;

  }
  .spk-img-patch p{
    font-family: "akira";
    font-size: 1.2vw;
    transform: translate(12.5vw,1.6vw) rotate(13deg);
    opacity: 0.1;
  }
  .spk-img{
width: 110%;
margin-top: 4vw;
  }
  .past-speakers .spk-img{
    margin-top: 6vw;
  }
  .speakers-des{
    width: 18vw;
    height: auto;
    padding: 1vw;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .spk-des{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.2vw;
  }
  .spk-name{
    font-family: "akira";
    font-size: 1vw;
    letter-spacing: 0.02vw;
    color: #d32035;
    text-shadow: 0.1vw 0.1vw 0.3vw rgba(0, 0, 0, 0.362);
    
  }
  .spk-job{
    font-family: "cdr";
    color: white;
    font-size: 1vw;
    letter-spacing: 0.02vw;
    
  }
  .spk-company{
    color: white;
    font-family: "Source Sans 3";
    font-size: 1vw;
    font-weight: 300;
  
  }
  .spk-company span{
    color: #d32035;
    font-weight: 600;
  }
  .spk-glow{
    width: 10vw;
    height: 8vw;
    background: #d32035;
    position: absolute;
    border-radius: 50%;
    bottom: 3vw;
    filter: blur(100px);
  }

  /* sponsors */
  .sponsors{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 5vw;
  }
  .sponsors-cont{
    width: 80%;
    min-height: 30vw;
  }
  .sponsBoxesCont{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1vw;
    margin-top: 2vw;
  }
  .sponsBoxesCont .owl-carousel .item{
    height: 10vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .spon-box{
    width: 97%;
    height: 100%;
    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;
  }
  .sponsBoxesCont .owl-carousel .item img{
    width: 70%;
  }
  .sponsBoxesCont .owl-carousel .item .spon-img{
    width: 70%;
  }
  .sponsBoxesCont .owl-carousel .item .sq2{
    width: 50%;
  }
  .sponsBoxesCont .owl-carousel .item .sq{
    width: 30%;
  }

/* agenda */
#agenda{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: #110505;
}
.ag-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/ag1.jpg);
    opacity: .25;
    background-size: cover;
}
.ag-bg-patch{
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,#110505,#1105059f,#11050580,#110505);
}
.ag-patch{
    z-index: 4;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    background: linear-gradient(to top,#110505f1 15%,transparent 35%);
}
.ag-btn{
    width: 13vw;
    height: 3vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2vw;
    border: 2px solid #d32036;
    margin-bottom: 2.5vw;
    font-family: 'montserrat';
    font-weight: 500;
    color: #fff;
}
.ag-btn:hover{
    background-color: #d32036;
}
.agenda-head{
    width: 80%;
    font-size: 3vw;
    font-family: 'akira';
    font-weight: 800;
    color: #fff;
    position: relative;
    margin-bottom: 1vw;
}
.agenda-container{
    width: 80%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ag-cont{
    position: relative;
    width: 90%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.ag-head{
    width: 98%;
    font-size: 2.5vw;
    font-weight: 600;
    font-family: 'montserrat';
    color: #d32036;
}
.ag-box{
    width: 98%;
    height: 5vw;
    display: flex;
    border-bottom: 1px solid #cdcdcd;
}
.ag-box span{
    background-color: #faa307;
    padding: 0 .2vw;
    border-radius: .2vw;
    font-size: 1vw;
}
.ag-time{
    position: relative;
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1vw;
    color: #fff;
    font-family: 'montserrat';
    font-weight: 600;
}
.ag-time::after{
    content: ':';
    position: absolute;
    display: block;
    right: .5vw;
    font-family: 'montserrat';
    font-weight: 500;
    color: #d32036;
}
.ag-right{
    width: 75%;
    color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.ag-name{
    font-size: 0.9vw;
    font-family: 'montserrat';
    font-weight: 500;
}
.ag-des{
    font-family: 'poppins';
    font-size: .9vw;
}

/* gallery */
#gallery {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}
#gallery .title {
  width: 80%;
  padding: 2vw 0;
}
.gallery-glow{
  width: 20vw;
  height: 20vw;
  position: absolute;
  background: #d32035;
  filter: blur(70px);
  border-radius: 50%;
  top: 2vw;
}

#gallery .title::after{
  left: 10vw;
  bottom: 2vw;
  width: 10%;
}
.gallery-container {
  width: 80%;
  height: 100vh;
  gap: 2vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
  overflow: hidden;
}
.gallery-column {
  width: 26vw;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.gallery-inner-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2vw;
}
.gg{
  transform: translateY(6vw);
}
.gal-box {
  width: 24.5vw;
  height: 24.5vw;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gal-box img{
  width: 98%;
  border-radius: 5px;
}
.gb1 {
  background-color: #d32036;
}
.gb2 {
  background-color: #faa307;
}
.gb3 {
  background-color: #00dece;
}
.gb4 {
  background-color: #928710;
}
.gb5 {
  background-color: lightgreen;
}

/* Animation for scrolling */
@keyframes scroll-down {
  0% {
      transform: translateY(-30%);
  }
  
  100% {
      transform: translateY(0%);
  }
}

@keyframes scroll-up {
  0% {
      transform: translateY(0%);
  }
  100% {
      transform: translateY(-30%);
  }
}

.move-down {
  animation: scroll-down 10s linear infinite;
}

.move-up {
  animation: scroll-up 10s linear infinite;
}

  /* footer */
a{
    text-decoration: none;
  }
  #footer {
  width: 100%;
  height: auto;
  background: #00000024;
  display: flex;
  align-items: center;
  border-top: 0.2vw solid #d320353a;
  }
  
  .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: #d32035;
    right: -1.7vw;
  }
  
  .org{
    width: 17vw;
    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: #d32035;
  border: 1.5px #d32035 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(#d32035,#d32035);
  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(81, 81, 81);
  border-top: none;
  }
  .form-img-box{
    width: 30%;
    overflow: hidden;
    height: 26vw;
  }
  .form-img{
    width: 110%
  }
  
  .form-heading {
  font-family: "akira";
  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,#7e0d1b,#d32035);
  width: 90%;
  border: 1px solid rgb(81, 81, 81);
  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;
    gap: 0.3vw;
    align-items: center;
  }
  .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: #d32036;
  }
  
  .f-btn:hover{
  color: #ffffff;
  background-color: #b40519;
}
  
  
  /* 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: #d32035;
  }
  
  
  .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: #d32035;
  text-transform: uppercase;
  font-weight: 600;
}
.in-box{
  margin-top: 0.5vw;
  display: flex;
  flex-direction: column;
  gap: 0.3vw;
}
.in-box label{
display: flex;
gap: 0.5vw;
}



  /* responsiveness */

  @media screen and (max-width:600px) {
    html,body{
      overflow-x: hidden;
    }
    /* navbar */

    .traicon-logo{
      display: none;
    }
  .mob-logo{
    position: fixed;
    width: 20vw;
    z-index: 10000;
    top: 4vw;
    left: 4vw;
    display: block;
  }
  .ml2{
    left: 28vw;
    width: 15vw;
    top: 7.6vw;
  }
  .mob-line{
    width: 1px;
    height: 4vw;
    background-color: white;
    position: fixed;
    z-index: 10000;
    display: block;
    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;
  }
  .nav-logo-box{
    display: none;
  }
  .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-cont{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .cyber-logo {
    width: 64vw;
    margin-top: 0vw;
}
.event25-box {
  width: 25vw;
  height: 15vw;
}
.event25-box::before {
  content: "";
  margin-top: 1vw;
  left: -1.5vw;
}
.event25-img {
  width: 19vw;
  margin-top: -1vw;
}
.edition {
  font-size: 3.1vw;
  position: relative;
  left: -15vw;
  transform: translateY(-5vw);
}
.cov-line {
  width: 85vw;
  margin-top: 3vw;
}
.cover-supp{
  width: 85vw;
}
.cov-supp-h {
  margin-top: 2.4vw;
  font-size: 3vw;
}
.cov-sup-box {
  width: 27vw;
  height: 15vw;
}
.date-place {
  margin-top: 4vw;
  flex-direction: column;
}

.place,.date {
  font-size: 3.5vw;
  letter-spacing: 0.2vw;
}
.date-place i {
  font-size: 4vw;
  padding: 0vw 2.4vw;
}
.date sup {
  margin-top: -3vw;
  font-size: 2vw;
}
.countdown{
  margin-top: 3vw;
}
.countdown .count-box {
  width: 16vw;
  height: 16vw;
  border-radius: 3vw;
  gap: 0.6vw;
}
.countdown .count-dig div {
  width: 3.2vw;
}
.countdown span {
  font-size: 4.1vw;
}
.count-des {
  font-size: 2.5vw;
}
.tagline {
  margin-top: 4vw;
  text-align: center;
}
.tagline {
  font-size: 4vw;
  line-height: 6vw;
}
.tagline span {
  font-size: 5vw;
}
.cov-btns {
  margin-top: 5vw;
  gap: 4vw;
}
.cov-btn {
  width: 41vw;
  padding: 2.5vw 0vw;
  font-size: 4vw;
  border-radius: 8vw;
  z-index: 2;
}
.cov-btn div {
  height: 5.3vw;
}

/* overview */
.overview{
  height: auto;
}
.over-cont{
  width: 90%;
  flex-direction: column;
}
.over-left{
  width: 100%;
  height: auto;
  justify-content: center;
}
.over-img {
  width: 90%;
  height: 100vw;
  margin-top: 5vw;
}
.over-right{
  width: 100%;
  height: auto;
  align-items: center;
}
.over-top-img {
  margin-top: 2vw;
  height: auto;
}
.over-left-img {
  width: 41vw;
  height: 24vw;
}
.over-h {
  font-size: 6vw;
  margin-left: 4vw;
 margin-top: 3vw;
}
.over-h span:nth-child(3) {
  font-size: 5.5vw;
}
.over-para {
  line-height: 1.7;
  font-size: 4.1vw;
  text-align: justify;
}
/* numbers */
.numbers-cont{
  width: 90%;
  flex-direction: column;
  height: auto;
  padding-bottom: 5vw;
}
.num-left {
  width: 100%;
}
.num-heading {
  font-size: 6.1vw;
  width: fit-content;
}
.num-heading span {
  font-size: 6vw;
}
.num-right {
  width: 100%;
}
.num-boxes{
flex-wrap: wrap;
justify-content: center;
gap: 3vw;
}
.num-box{
  width: 45%;
  padding: 4vw 0vw;
  border: 1px solid rgba(255, 255, 255, 0.19);
}
.num-dig .odometer {
  font-size: 8.5vw;
  font-family: "akira";
}
.odometer-digit-spacer{
  width: 7.5vw;
}
.num-des {
  font-size: 2.9vw;
  line-height: 3.2vw;
}
.num-dig {
  font-size: 7vw;
}
.num-plus {
  right: -4.3vw;
  margin-top: -0.3vw;
}
/* market */
.market{
  height: auto;
  padding: 10vw 0vw;
}
.market-cont{
  width: 90%;
  flex-direction: column;
}
.market-left, .market-right {
  width: 100%;
  height: auto;
}
.market-right {
  width: 100%;
  height: 90vw;
}
.market-h {
  font-size: 7vw;
}
.market-h span {
  font-size: 7vw;
}
.market-para {
  font-size: 4.1vw;
  margin-top: 3vw;
}
.market-box {
  width: 48%;
  height: 28vw;
}
.market-nums {
  font-size: 3.1vw;
  padding: 3vw;
}
.market-des {
  font-size: 3.1vw;
}
.title {
  font-size: 7vw;
}
.theme-carousel .item, .theme-carousel2 .item {
  height: 33vw;
}
.theme-des {
  padding: 2.5vw 1.5vw;
  font-size: 3vw;
  font-weight: 400;
  line-height: 4vw;
}

/* summit */
.summit{
  height: auto;
  background-position: 29% 100%;
}
.summit-patch {
  width: 100%;
  height: 100%;
  padding-bottom: 7vw;
}

.summit-cont {
  width: 90%;
  height: auto;
}
.summit-boxes{
  padding-bottom: 7vw;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.summit-box {
  width: 80%;
  height: 85vw;
  margin: 3vw 0vw;
  border-radius: 3vw;
}
.summit-h {
  font-size: 4.2vw;
  letter-spacing: 0.1vw;
  margin-top: 2vw;
}
.summit-des {
  color: white;
  width: 80%;
  font-size: 4vw;
  margin-top: 2vw;
}
/* who */
.who-cont{
  width: 95%;
}
.who-containers {
  width: 95%;
  flex-direction: column;
  gap: 8vw;
}
.who-percentage-container {
  width: 95%;
  height: 86vw;
  column-gap: 10vw;
  border: none;
}
.circle-box {
  width: 30vw;
  height: 30vw;
}
.progress-container {
  width: 24vw;
  height: 24vw;
}
.progressbar-text{
  font-size: 4vw !important;
}
.circle-des {
  font-size: 3vw;
}
.circle-container {
  gap: 2vw;
}
.who-right {
  width: 95%;
}
.who-job {
  height: 110vw;
  border-radius: 3vw;
}
.progress-t {
  width: 80%;
  font-size: 3vw;
}
.who-head {
  font-size: 4.4vw;
  width: 88%;
  position: relative;
}
.sectors .who-head {
  width: 88%;
}
.percent-num {
  font-size: 3vw;
}

.who-boxes{
  width: 90%;
}
.who-box {
  width: 28vw;
  height: 28vw;
}
.w-des{
  font-size: 3vw;
}
/* why */
.why{
  min-height: auto;
  height: auto;
}
.crs {
  padding: 2vw;
  padding-top: 2.5vw;
  font-size: 3vw;
  border-radius: 2vw;
  margin-bottom: 1vw;
  margin-left: 0;
}
.why-cont{
  min-height: auto;
  height: auto;
}
.why-up {
  display: flex;
  flex-direction: column-reverse;
}
.why-up-left {
  width: 100%;
  height: auto;
}
.why-h {
  font-size: 7vw;
  margin-left: 0vw;
  width: 100%;
}
.why-h span {
  font-size: 7vw;
}
.why-para {
  font-size: 4vw;
  line-height: 1.7;
  margin-left: 0vw;
  text-align: justify;
  width: 100%;
}
.whytrans {
  font-size: 25vw;
  transform: translateX(-9vw);
}
.why-up-right {
  width: 100%;
  height: auto;
  margin-top: 3vw;
}
.ex-head {
  width: 35vw;
  height: 35vw;
  border-radius: 3vw;
}
.ex-headings {
width: 100%;
  gap: 3vw;
}
.ex-heading{
  font-size: 3vw;
}
.why-box {
  gap: 2vw;
  height: 90vw;
}
.why-ex-h {
  font-size: 4.2vw;
  margin-top: 4vw;
}
.why-ex-des {
  width: 90%;
  font-size: 4vw;
}
.why-ex-icon {
  width: 11vw;
  height: 11vw;
  top: 5vw;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  display: none;
}
/* speakers */
.speakers{
  min-height: auto;
  height: auto;
}
.speakers-cont {
  width: 90%;
  height: auto;
  min-height: auto;
}
.speaker-box {
  width: 49%;
  height: 85vw;
  justify-content: flex-start;
}

.past-speakers .speaker-box {
  width: 100%;
  height: 85vw;
}
.speaker-img-box {
  width: 40vw;
  height: 55vw;
}
.spk-img{
  margin-top: 10vw;
}
.past-speakers .spk-img{
  margin-top: 15vw;
}
.speakers-des {
  width: 95%;
  height: auto;
  margin-top: 2vw;
}
.spk-name {

  font-size: 3vw;
}
.spk-job {
  font-size: 3vw;
}
.spk-company {
  font-size: 3vw;
}
.spk-img-patch {
  width: 47vw;
  height: 11vw;
  left: -2.1vw;
  z-index: 3;
  top: 51vw;
}
.speaker-boxes{
  padding-top: 8vw;
  padding-bottom: 12vw;
}
/* sponsors */
.sponsBoxesCont .owl-carousel .item {
  height: 23vw;
}
.sponsors-cont {
  width: 90%;
}
/* agenda */
#agenda{
  padding: 7vw 0vw;
}
.agenda-container {
  width: 90%;
  flex-direction: column;
  gap: 8vw;
}
.agenda-head {
  width: 90%;
  font-size: 7vw;
}
.ag-cont {
  position: relative;
  width: 100%;
}
.ag-head {
  font-size: 4.5vw;
}
.ag-box {
  width: 98%;
  height: auto;
  padding: 1vw 0vw;
}
.ag-time {
  width: 30%;
  font-size: 3vw;
  font-weight: 300;
}
.ag-right {
  width: 70%;
}
.ag-name {
  font-size: 3vw;
  font-weight: 300;
}
.ag-time::after {
  content: ':';
  right: 1vw;
}
.ag-btn {
  width: 45vw;
  height: 9vw;
  border-radius: 6vw;
  margin-bottom: 6.5vw;
}
.ag-head{
  padding-bottom: 3vw;
}

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

}

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

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

.modalContents {
  width: 80%;
}

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

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

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

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

.f-btn {

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

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

  }


  @media screen and (min-width: 600px) and (max-width: 1024px){
    body,html{
      overflow-x: hidden;
    }
    .traicon-logo{
      display: none;
    }
    .mob-logo{
      position: fixed;
      width: 15vw;
      z-index: 10000;
      top: 4vw;
      left: 4vw;
      display: block;
    }
    .ml2{
      left: 22vw;
      width: 12vw;
      top: 6.6vw;
    }
    .mob-line{
      width: 1px;
      height: 4vw;
      background-color: white;
      position: fixed;
      z-index: 10000;
      display: block;
      left: 20vw;
      top: 6.5vw;
    }
    .edition {
      font-size: 2.1vw;
      top: 16vw;
      left: 23vw;
  }
  
    .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-cont */
.cover-cont {
  width: 90%;
  height: 80vh;
}
.cyber-logo {
  width: 55vw;
}
.event25-box::before {
  height: 89%;
  margin-top: 5vw;
  left: -1.5vw;
}
.event25-img {
  width: 16vw;
  margin-top: 3vw;
}
.cov-line {
  width: 80vw;
}
.cov-supp-h {
  margin-top: 1vw;
  font-size: 2.5vw;
}
.cov-sup-box {
  width: 21vw;
  height: 11vw;
}

.date {
  font-size: 2.5vw;
}
.date sup {
  margin-top: -2vw;
  font-size: 1.2vw;
}
.date-place i {
  font-size: 2vw;
  padding: 0vw 1.5vw;
}
.place {
  font-size: 2.5vw;
}
.edition {
  font-size: 2.1vw;
  left: 23vw;
  transform: translateY(-1vw);
}
.date {
  font-size: 2.5vw;
}
.date sup {
  margin-top: -2vw;
  font-size: 1.2vw;
}
.date-place i {
  font-size: 2vw;
  padding: 0vw 1.5vw;
}
.place {
  font-size: 2.5vw;
}
.date-place {
  margin-top: 4.5vw;
  align-items: start;
  gap: 1vw;
  flex-direction: column;
}
.countdown .count-box {
  width: 14vw;
  height: 14vw;
  border-radius: 3vw;
  gap: 0.2vw;
}
.countdown .count-dig div {
  width: 2.2vw;
}
.countdown span {
  font-size: 3vw;
}
.count-des {
  font-size: 2.2vw;
}
.tagline {
  margin-top: 4.5vw;
  font-size: 3.55vw;
  line-height: 4vw;
}
.tagline span {
  font-size: 3.5vw;
  line-height: 2vw;
}
.cov-btn {
  width: 26vw;
  padding: 1.7vw 0vw;
  font-size: 2.5vw;
  border-radius: 7vw;
  z-index: 2;
}
.cov-btn div {
  height: 3.2vw;
}
.cov-btns {
  margin-top: 5vw;
}
.cov-btn:hover div p {
  margin-top: -3.2vw;
}

/* overview */
.overview{
  height: auto;
}
.over-cont{
  width: 90%;
  flex-direction: column;
}
.over-left{
  width: 100%;
  height: auto;
  justify-content: center;
}
.over-img {
  width: 90%;
  height: 100vw;
  margin-top: 5vw;
}
.over-right{
  width: 100%;
  height: auto;
  align-items: center;
}
.over-top-img {
  margin-top: 2vw;
  height: auto;
}
.over-left-img {
  width: 41vw;
  height: 24vw;
}
.over-h {
  font-size: 4vw;
 margin-top: 3vw;
}
.over-h span:nth-child(3) {
  font-size: 5vw;
}
.over-para {
  line-height: 1.7;
  font-size: 2.7vw;
  text-align: justify;
}
/* numbers */
.numbers-cont{
  width: 90%;
  flex-direction: column;
  height: auto;
  padding-bottom: 5vw;
}
.num-left {
  width: 100%;
}
.num-heading {
  font-size: 3vw;
  width: fit-content;
}
.num-heading span {
  font-size: 3vw;
}
.num-right {
  width: 100%;
}
.num-boxes{
flex-wrap: wrap;
justify-content: center;
gap: 3vw;
}
.num-box{
  width: 30%;
  padding: 4vw 0vw;
  border: 1px solid rgba(255, 255, 255, 0.19);
}
.num-dig .odometer {
  font-size: 5.5vw;
  font-family: "akira";
}
.odometer-digit-spacer{
  width: 5vw;
}
.num-des {
  font-size: 2.2vw;
  line-height: 2.3vw;
}
.num-dig {
  font-size: 5vw;
}
.num-plus {
  right: -3.3vw;
  margin-top: -0.4vw;
}
/* market */
.market{
  height: auto;
  padding: 10vw 0vw;
}
.market-cont{
  width: 90%;
  flex-direction: column;
}
.market-left, .market-right {
  width: 100%;
  height: auto;
}
.market-right {
  width: 100%;
  height: 90vw;
}

.market-h {
  font-size: 5vw;
}
.market-h span {
  font-size: 5vw;
}
.market-para {
  font-size: 2.7vw;
  margin-top: 2vw;
}
.market-box {
  width: 48%;
  height: 28vw;
}
.market-nums {
  font-size: 2.7vw;
  padding: 2vw;
}
.market-des {
  font-size: 2.7vw;
}
.title {
  font-size: 5vw;
}
.theme-carousel .item, .theme-carousel2 .item {
  height: 33vw;
}
.theme-des {
  padding: 2.5vw 1.5vw;
  font-size: 3vw;
  font-weight: 400;
  line-height: 4vw;
}

/* summit */
.summit{
  height: auto;
  background-position: 29% 100%;
}
.summit-patch {
  width: 100%;
  height: 100%;
  padding-bottom: 7vw;
}

.summit-cont {
  width: 90%;
  height: auto;
}
.summit-boxes{
  padding-bottom: 7vw;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.summit-box {
  width: 80%;
  height: 85vw;
  margin: 3vw 0vw;
  border-radius: 3vw;
}
.summit-h {
  font-size: 3.2vw;
  letter-spacing: 0.1vw;
  margin-top: 2vw;
}
.summit-des {
  color: white;
  width: 80%;
  font-size: 2.7vw;
  margin-top: 2vw;
}
/* who */
.who-cont{
  width: 95%;
}
.who-containers {
  width: 95%;
  flex-direction: column;
  gap: 8vw;
}
.who-percentage-container {
  width: 95%;
  height: 86vw;
  column-gap: 10vw;
  border: none;
}
.circle-box {
  width: 30vw;
  height: 30vw;
}
.progress-container {
  width: 24vw;
  height: 24vw;
}
.progressbar-text{
  font-size: 4vw !important;
}
.circle-des {
  font-size: 3vw;
}
.circle-container {
  gap: 2vw;
}
.who-right {
  width: 95%;
}
.who-job {
  height: 100vw;
  border-radius: 2vw;
}
.progress-t {
  width: 80%;
  font-size: 2.7vw;
}
.percent-num {
  font-size: 2.7vw;
}
.who-head {
  font-size: 4.4vw;
  width: 88%;
  position: relative;
}
.sectors .who-head {
  width: 88%;
}
.who-boxes{
  width: 90%;
}
.who-box {
  width: 28vw;
  height: 28vw;
}
.w-des{
  font-size: 2.7vw;
}
/* why */
.why{
  min-height: auto;
  height: auto;
}
.crs {
  padding: 2vw;
  padding-top: 2.5vw;
  font-size: 3vw;
  border-radius: 2vw;
  margin-bottom: 1vw;
  margin-left: 0;
}
.why-cont{
  min-height: auto;
  height: auto;
}
.why-up {
  display: flex;
  flex-direction: column-reverse;
}
.why-up-left {
  width: 100%;
  height: auto;
}
.why-h {
  font-size: 5vw;
  margin-left: 0vw;
  width: 100%;
}
.why-h span {
  font-size: 5vw;
}
.why-para {
  font-size: 2.7vw;
  line-height: 1.7;
  margin-left: 0vw;
  text-align: justify;
  width: 100%;
}
.whytrans {
  font-size: 25vw;
  transform: translateX(-9vw);
}
.why-up-right {
  width: 100%;
  height: auto;
  margin-top: 3vw;
}
.ex-head {
  width: 35vw;
  height: 35vw;
  border-radius: 3vw;
}
.ex-headings {
width: 100%;
  gap: 3vw;
}
.ex-heading{
  font-size: 3vw;
}
.why-box {
  gap: 2vw;
  height: 70vw;
}
.why-ex-h {
  font-size: 3.2vw;
  margin-top: 4vw;
}
.why-ex-des {
  width: 90%;
  font-size: 2.7vw;
}
.why-ex-icon {
  width: 11vw;
  height: 11vw;
  top: 5vw;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  display: none;
}
/* speakers */
.speakers{
  min-height: auto;
  height: auto;
}
.speakers-cont {
  width: 90%;
  height: auto;
  min-height: auto;
}
.speaker-box {
  width: 49%;
  height: 85vw;
  justify-content: flex-start;
}

.past-speakers .speaker-box {
  width: 100%;
  height: 85vw;
}
.speaker-img-box {
  width: 40vw;
  height: 55vw;
}
.spk-img{
  margin-top: 10vw;
}
.past-speakers .spk-img{
  margin-top: 15vw;
}
.speakers-des {
  width: 95%;
  height: auto;
  margin-top: 2vw;
}
.spk-name {

  font-size: 3vw;
}
.spk-job {
  font-size: 3vw;
}
.spk-company {
  font-size: 3vw;
}
.spk-img-patch {
  width: 47vw;
  height: 11vw;
  left: -2.1vw;
  z-index: 3;
  top: 51vw;
}
.speaker-boxes{
  padding-top: 8vw;
  padding-bottom: 12vw;
}
/* sponsors */
.sponsBoxesCont .owl-carousel .item {
  height: 23vw;
}
.sponsors-cont {
  width: 90%;
}
/* agenda */
#agenda{
  padding: 7vw 0vw;
}
.agenda-container {
  width: 90%;
  flex-direction: column;
  gap: 8vw;
}
.agenda-head {
  width: 90%;
  font-size: 7vw;
}
.ag-cont {
  position: relative;
  width: 100%;
}
.ag-head {
  font-size: 4.5vw;
}
.ag-box {
  width: 98%;
  height: auto;
  padding: 2vw 0vw;
}
.ag-time {
  width: 30%;
  font-size: 2.7vw;
  font-weight: 300;
}
.ag-right {
  width: 70%;
}
.ag-name {
  font-size: 2.7vw;
  font-weight: 300;
}
.ag-time::after {
  content: ':';
  right: 2vw;
}
.ag-btn {
  width: 45vw;
  height: 9vw;
  border-radius: 6vw;
  margin-bottom: 6.5vw;
}
.ag-head{
  padding-bottom: 3vw;
}

#gallery{
  height: auto;
}
.gallery-head{
  font-size: 8vw;
  width: 100%;
}
.gallery-container .gallery-column:nth-child(3){
  display: none;
}
.gallery-column {
  width: 50vw;
}
.gal-box {
  width: 47.5vw;
  height: 47.5vw;
}
.gallery-container {
  width: 100%;
  height: 120vw;
}
/* 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: 2.7vw;
}
.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: 15vw;
  width: 25vw;
}
.fl-des {
  font-size: 2.8vw;
}
.foot-logo-box img {
  width: 10vw;
}
.fUp div{
  width: 6vw;
  height: 6vw;
}
.fLinks{
  font-size: 3vw;
}
.fCopy{
  font-size: 2vw;
  margin-top: 2.5vw;

}

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

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

.modalContents {
  width: 80%;
}

.inputs input::placeholder {
  font-family: "Poppins";
  font-size: 1.5vw;
  transform: translate(0.3vw, 0vw);
}
form{
  width: 100%;
}
.form-heading {
  font-size: 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;
}
.del-amount-box {
  width: 86%;
  padding: 1.5vw;
  margin-top: 2.5vw;
}
.del-amount-box  .custom-checkbox{
  transform: translateY(-0.4vw);
}
.del-price-input-box label {
  font-size: 1.8vw;
  font-weight: 800;
}
.del-price-input-box {
  gap: 1.2vw;
}
.del-list li {
  font-size: 1.4vw;
}
.form-message {
  margin-top: 2.5vw;
  font-size: 1.95vw;
  display: none;
}
.in-h {
  font-size: 1.75vw;
}
.form-interest {
  width: 85%;
  background-color: #393939;
  padding: 1.5vw;
}
.in-box {
  margin-top: 1.5vw;
  gap: 0.9vw;
}
}
