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

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

@font-face {
  font-family: "tellicam";
  src: url("../fonts/Tallica-Medium.ttf");
}
@font-face {
  font-family: "tellical";
  src: url("../fonts/Tallica-Light.ttf");
}
@font-face {
  font-family: "gunterzbold";
  src: url("../fonts/Gunterz-Bold.otf");
}
@font-face {
  font-family: "gunterzblack";
  src: url("../fonts/Gunterz-Black.otf");
}
@font-face {
  font-family: "gunterzm";
  src: url("../fonts/Gunterz-Medium.otf");
}
@font-face {
  font-family: "conc";
  src: url("../fonts/the_global_use.ttf");
}
a{
  text-decoration: none;
}
/* color :: #26ada7 */
#content{
  height: fit-content;
  background-image: url("../images/cover-bg.jpg");
  background-size: cover;
  background-attachment: fixed;
}
#closedPopup{
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}
.closed-pop{
  position: relative;
  width: 32vw;
  height: 10vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'montserrat';
  background-color: #fff;
  border-radius: 1vw;
  font-size: 1.1vw;
  text-align: center;
}
.closed-pop span{
  font-weight: 600;
}
.closed-pop .close{
  position: absolute;
  right: .5vw;
  top: .5vw;
  width: 2vw;
  height: 2vw;
  border-radius: 5vw;
  border: 2px solid #0f5854;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.closed-pop .close:hover{
  background-color: #0f5854;
  fill: #fff;
}
.close svg{
  width: .75vw;
}
#loader{
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0000007c;
  z-index: 1000;
  backdrop-filter: blur(10px);
}
.loader {
  width: 48px;
  height: 48px;
  display: block;
  margin:15px auto;
  position: relative;
  color: #FFF;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loader::after,
.loader::before {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 50%;
  transform: scale(0.5) translate(0, 0);
  background-color: #FFF;
  border-radius: 50%;
  animation: animloader 1s infinite ease-in-out;
}
.loader::before {
  background-color: #26ada7;
  transform: scale(0.5) translate(-48px, -48px);
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

/* navbar */
.navbar{
  width: 100%;
  height: 4vw;
  position: fixed;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.5vw;
  transition: all ease .4s;
}
.navbar-container{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all ease .4s;
}
.traicon_logo{
  width: 5.5vw;
  margin-left: 1vw;
}
.traicon-mob{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1vw;
  gap: 1vw;
}
.tce_logo{
  width: 6vw;
}
.tri_logo{
  width: 5.5vw;
  opacity: 0;
}
.traicon-mob:after{
  content: '';
  position: absolute;
  width: 1px;
  height: 60%;
  display: none;
  background-color: #fff;
  right: 6vw;
}
.navbar ul{
  display: flex;
  gap: 2.5vw;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.216);
  padding: 1vw 2vw;
  border: 2px solid #26ada7;
  border-radius: 2vw;
  backdrop-filter: blur(10px);
  font-size: 1vw;
  font-family: "Source Sans 3";
}
/* .navlist li:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-color: #4e4e4e84;
  backdrop-filter: blur(2px);
  display: block;
  border-radius: 5vw;
  left: -1vw;
  top: -0.5vw;
  z-index: 0;
  padding: .5vw 1vw;
} */
.navbar ul li{
  position: relative;
}
.navbar ul li a{
  color: white;
  position: relative;
  z-index: 1;
}
.nav-button{
  margin-right: 1vw;
  padding: 0.9vw 2vw;
  font-family: "Source Sans 3";
  color: white;
  border-radius: 3vw;
  border: 2px solid #26ada7;
  /* background-color: #26ada7; */
  backdrop-filter: blur(10px);
  font-size: 1vw;
  cursor: pointer;
  transition: all ease .4s;
}
.nav-button:hover{
  background-color: #26ada7;
  color: #000;
}
.nav-buttons{
  display: flex;
}
.nav-btn1{
  background-color: #26ada7;
}
.nav-btn1:hover{
  background-color: #26ada700;
}
.nav-active{
  color: #26ada7;
}
/* home */
#home{
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
#hr25{
  width: 10vw;
  transform: translateX(-.5vw);
}
.cover-box{
  width: 55%;
  height: auto;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  opacity: 0.7;
  
}
.cover-img-box{
  width: 25%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.cove-im-overlay{
  width: 100%;
  height: 100%;
  position: absolute;
background: linear-gradient(rgba(0, 0, 0, 0),rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.619));
  z-index: 2;
}
.cover-img{
  width: 130%;
  filter: grayscale();
}
.countdown{
  display: flex;
  width: 57%;
  justify-content: space-around;
  position: absolute;
  right: 0;
  bottom: 0;
}
.count-box{
  width: 11vw;
  height: 22vw;
 background-image: url("../images/count-bg.png");
 background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.count-dig{
  display: flex;
  overflow: hidden;
  color: white;
  font-size: 5vw;
  font-family: "tellical";
  line-height: 9vw;
}
.count-des{
  color: #26ada7;
  font-family: "tellicam";
  font-size: 2vw;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px black;
}
.cover-content{
  width: 90%;
  height: 80vh;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}
.concluded{
  color: red;
  font-size: 2.5vw;
  position: absolute;
  left: 27vw;
  top: 25vh;
  font-family: "conc";
  border: 2px solid red;
  border-radius: 0.5vw;
  transform: rotate(-20deg);
}
.concluded p{
  margin: 0;
  padding: 0vw 1vw;
  padding-top: 0.7vw;
}
.sup-head{
  font-size: .9vw;
  font-family: 'montserrat';
  font-weight: 600;
  color: #fff;
  transform: translateY(.5vw);
}
.sup-logos{
  display: flex;
  gap: 1vw;
}
.sup-logo{
  width: 11vw;
  height: 6vw;
  margin-top: 1vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.sup-img{
  width: 60%;
}
.hr25-cover{
  display: flex;
}
.hr25-right{
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 1vw;
}
.event-logo{
  width: 35vw;
  margin-top: 2vw;
}
.logo-cont{
  position: relative;
  width: fit-content;
  height: fit-content;
}
.edition{
  position: absolute;
  font-family: 'montserrat';
  top: 2.5vw;
  color: #fff;
  top: 3.5vw;
  left: 9vw;
  font-weight: 600;
}
.date-place{
  display: flex;
  color: white;
  align-items: center;
  gap: 1vw;
  font-family: "Poppins";
  width: fit-content;
  padding: 0vw .5vw;
  background-color: #26ada7;
  border-radius: .4vw;
  font-size: 1.4vw;
  font-weight: 300;
  margin-left: .6vw;
  text-shadow: 1px 1px 3px #021d1c;
}
.date{
  position: relative;
}
.date::after{
  content: "";
  width: 1px;
  height: 1.5vw;
  top: 0.3vw;
  background-color: #000;
  position: absolute;
  right: -0.5vw;
  margin-top: 0.3vw;
}
.place{
  margin-top: 0.2vw;
}
.tagline{
  color: rgba(255, 255, 255, 0.501);
  font-family: "gunterzbold";
  width: 30vw;
  font-size: 1.35vw;
  line-height: 2vw;
  display: flex;
  flex-direction: column;
}
.tagline span{
  font-family: "gunterzbold";
  font-size: 2.2vw;
  line-height: 2.5vw;
  color: transparent;
  -webkit-text-stroke: 2px;
  -webkit-text-stroke-color: #26ada7;
  opacity: 1;
}
.cov-btns{
  display: flex  ;
  gap: 1vw;
  align-items: center;
  margin-left: 0vw;
  margin-top: 1vw;
}
.cov-btn{
  color: white;
  display: flex;
  justify-content: center;
  padding: 1vw;
  width: 10vw;
  border-radius: 2vw;
  border: 2px solid #26ada7;
  font-family: "gunterzm";
  padding-top: 1.2vw;
  font-size: 0.9vw;
  cursor: pointer;
  transition: all ease .4s;
}
.cov-btn:hover{
  background-color: #26ada7;
  color: #000;
}
/* overview */
#overview{
  width: 100%;
  height: 100vh;
 display: flex;
 align-items: center;
 justify-content: center;
 padding-bottom: 0;
}
.over-left,.over-right{
  width: 45%;
  height: 90vh;
  position: relative;
}
.title{
  position: relative;
color: transparent;
font-family: "gunterzblack";
font-size: 4vw;
-webkit-text-stroke-color: #26ada7;
-webkit-text-stroke-width: 2px;
}
.over-right .title{
  margin-top: 3vw;
}
.over-left{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.over-right p{
  color: white;
  font-family: "Source Sans 3";
  font-size: 1vw;
  line-height: 1.7;
  font-weight:300;
  position: relative;
}
.over-img-box{
width: 70%;
height: 70vh;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
position: relative;
transform: rotate(3deg);
box-shadow: 0.5vw 0.5vw 1vw rgba(0, 0, 0, 0.437);
opacity: 0.7;
}

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

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

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

.sponsors-container{
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}
.spon-cont{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.spon-name{
  font-family: 'montserrat';
  font-size: 1.2vw;
  padding: .3vw .8vw;
  color: #fff;
  background-color: #26ada7;
}
.spon-boxes{
    width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1vw;
  padding: 2vw 0;
}
.spon-box{
  width: 12vw;
  height: 7vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.spon-img{
  width: 70% !important;
}
.gold .spon-box{
  width: 20vw;
  height: 11vw;
}
.media .spon-box{
  width: 13vw;
  height: 7vw;
}
.spons-cont{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.spon-h{
  color: white;
  font-family: "poppins";
  padding: 0.5vw 2vw;
  background-color: #26ada7;
}
/* AGENDA */
#agenda{
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2vw;
  overflow: hidden;
  background-color: #303030ac;
  padding: 2vw 0;
}
.agenda-container{
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agenda-head{
  width: 85%;
}
.agenda-head:before{
  content: '';
  position: absolute;
  width: 7vw;
  height: 100%;
  background-color: #26ada7;
  left: -10vw;
}
.agenda-page{
  width: 60%;
  display: flex;
  flex-direction: column;
  padding: 0 1vw;
  border-radius: 1vw;
}
.break .ag-right {
  padding: 0;
}
.break .ag-right span{
  background-color: #26ada7;
  color: #000;
  padding: 0.1vw .5vw;
}
.ag-images{
  position: relative;
  width: 30%;
  height: 42vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3vw;
}
.ag-images .ag-img{
  width: 90%;
  height: 19vw;
  background-color: #000;
  z-index: 1;
  background-size: cover;
}
.ag1{
  background: url(../images/ag1.webp);
}
.ag2{
  background: url(../images/ag2.webp);
}
.ag-patch{
  position: absolute;
  top: -10vw;
  width: 8vw;
  height: 140%;
  background-color: #26ada7;
  left: 40%;
  z-index: 0;
}
.ag-box{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vw 0;
  gap: 1vw;
}
.ag-left{
  width: 20%;
  font-family: 'montserrat';
  color: #fff;
  font-size: 1vw;
}
.ag-right{
  width: 80%;
  font-family: 'montserrat';
  color: #fff;
  padding: 0.1vw .5vw;
}
.ag-btn{
  color: white;
  display: flex;
  justify-content: center;
  padding: 1vw;
  width: 10vw;
  border-radius: 2vw;
  border: 2px solid #26ada7;
  font-family: "gunterzm";
  padding-top: 1.2vw;
  font-size: 0.9vw;
  cursor: pointer;
  background-color: #00000000;
  transition: all ease .4s;
}
.ag-btn:hover {
  background-color: #26ada7;
  color: #000;
}
.ag-right span{
  font-weight: 600;
}
.panel{
  color: #26ada7;
}

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


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

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

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

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

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

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

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





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

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

/* next prev arrows */

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

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

}

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

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

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

/* forms */
.modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .4s;
  z-index: 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: 110%
  }
  
  .form-heading {
  font-family: "gunterzbold";
  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,#4ac7e2,#26ada7);
  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;
  }
  .del-list 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: #4ac7e2;
  }
  
  .f-btn:hover{
  color: #ffffff;
  background-color: #0f5854;
}
  
  
  /* Hide the default checkbox */
  input[type="checkbox"] {
  display: none;
  }
  
  /* Create a custom checkbox style */
  .custom-checkbox {
  width: 0.5vw;
  height: 0.5vw;
  border: 0.5px solid #ffffff;
  cursor: pointer;
  transform: translateY(0.1vw);
  }
  /* Style for when the checkbox is checked */
  input[type="checkbox"]:checked + .custom-checkbox::after {
  position: absolute;
  content: '\2714';
  font-size: 0.8vw;
  top: -80%;
  color: #ed1459;
  }
  
  
  .is-show {
  visibility: visible;
  opacity: 1;
  scale: 1.45;
  }
  
  .lt {
  width: 96%;
  margin-left: 1%;
  font-size: 0.55vw;
  font-family: "Poppins";
  font-weight: 300;
  color: #ffffff;
  text-transform: uppercase;
  }
  .in-box .lt{
    font-weight: 500;
  }
  .clModal{
  position: absolute;
  font-family: "Montserrat";
  font-weight: 800;
  font-size: 0.8vw;
  top: 0.6vw;
  right: 3vw;
  background-color: #000000;
  width: 1vw;
  height: 1vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color:  #ffffff;
  cursor: pointer;
  opacity: 1;
  }

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

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

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


/* footer */
#footer {
  width: 100%;
  height: auto;
  background: #00000024;
  display: flex;
  align-items: center;
  border-top: 1px solid #09173e;
  margin-top: 2vw;
  position: relative;
  border-top: 2px solid #26ada7;
  }
  /* .footer::before{
    content: "";
    height: 1px;
    width: 8vw;
    background: linear-gradient(to right, #37ecf800, #70f5fa, #37ecf800);
    position: absolute;
    top: -0.06vw;
    left: 5vw;
    box-shadow: 0 0 0.9vw 0.3vw #f837d229;
  } */
  
  .footerContainer {
  display: flex;
  justify-content: space-between;
  width: 99vw;
  align-items: center;
  }
  
  .fLeft {
  width: 60vw;
  height: 8vw;
  display: flex;
  flex-direction: row;
  margin: 0 0 0 1vw;
  gap: 0.8vw;
  }
  
  .fMails {
  width: 12vw;
  height: 1.8vw;
  display: flex;
  border: 1.5px solid white;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  }
  
  .fUp {
  display: flex;
  gap: .7vw;
  }
  
  .fRight {
  width: 25vw;
  height: 10vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1vw;
  }
  
  .fUp div {
  width: 2vw;
  height: 2vw;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1.5px white solid;
  transition: all ease .4s;
  }
  
  .fUp div:hover {
  transform: translateY(-3px);
  background-color: #26ada7;
  border: 1.5px #26ada7 solid;
  color: black;
  
  }
  
  .fUp div:hover .fLinks {
  color: #fff;
  }
  
  .fLinks {
  font-size: 1.25vw;
  padding-top: 0.1vw;
  color: #fff;
  }
  
  .fCopy {
  color: white;
  font-family: 'Montserrat';
  font-size: 0.8vw;
  font-weight: 400;
  }
  
  .fCopy span a {
  font-weight: 600;
  color: white;
  text-decoration: none;
  }
  .foot-l {
  width: 70%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 1.5vw 0vw;
  }
  
  .mail-heading {
  color: white;
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 0.9vw;
  }
  
  .mail-box {
  width: 26%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  }
  
  
  .mail {
  font-family: 'Montserrat';
  color: white;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9vw;
  transition: all 0.3s ease;
  }
  
  .mb-cont {
  cursor: pointer;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0.8vw 0vw;
  padding-left: 1vw;
  }
  
  .mb-cont::before {
  content: "";
  width: 0.1vw;
  z-index: -1;
  height: 3.8vw;
  display: block;
  background:linear-gradient(to right,#26ada7,#26ada7);
  position: absolute;
  margin-left: -1vw;
  transition: all 0.5s ease;
  }
  
  .mail-box:hover .mb-cont::before{
  width: 100%;
  }


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

  .traicon-mob:after{
    right: 13vw;
  }
  .traicon-mob img{
    display: block;
    width: 12vw;
    height: fit-content;
    z-index: 3;
  }
  .nav-button{
    display: none;
  }
  #navBar{
    position: fixed;
    width: 100%;
    height: 100vh;
    left: -110vw;
  }
  .navbar-container{
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
  }
  .navlist{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .navbar ul {
    font-size: 5vw;
    gap: 7vw;
  }
  .frame{
    display: flex;
    position: fixed;
    right: 2vw;
    top: 2vw;
    z-index: 9999;
    background-color: transparent;
  }
  .closed-pop {
    width: 70vw;
    height: 20vw;
  }
  .closed-pop{
    font-size: 3vw;
 }
 .closed-pop .close {
    position: absolute;
    right: 1vw;
    top: 1vw;
    width: 5vw;
    height: 5vw;
 }
  .closed-pop .close svg{
    width: 2vw;
  }
  /* home */
  #home{    align-items: start;}
  .cover-box {
    width: 100%;
    height: auto;
    position: absolute;
    right: 0;
    margin-bottom: 30vw;
    top: 60%;
    display: flex;
    align-items: center;
    opacity: 0.7;
}
.count-dig {
  font-size: 11vw;
  line-height: 20vw;
}
.count-box {
  width: 20vw;
  height: 35vw;
}
.countdown {
  width: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  gap: 2vw;
}
.cover-content {
  width: 90%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2vw;
}
.concluded {
    font-size: 7vw;
    left: 20vw;
    top: 70vh;
    transform: rotate(-20deg);
    z-index: 2;
    border-radius: 2vw;
}
.concluded p {
    margin: 0;
    padding: 0vw 2vw;
    padding-top: 2vw;
}
.sup-logo {
  width: 28vw;
  height: 14vw;
}
.logo-cont{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sup-head {
  font-size: 2.5vw;
}
.event-logo {
  width: 75vw;
  margin: 0;
}
.date-place {
  gap: 1vw;
  font-size: 4.5vw;
  flex-direction: column;
  font-weight: 300;
  line-height: 5vw;
  background: #00000000;
}
.edition {
  font-size: 2.5vw;
  top: 2vw;
  left: 26vw;
}
.count-des {
  font-size: 5vw;
}
.hr25-cover{
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#hr25{
  width: 22vw;
}
.tagline {
  margin-top: 5vw;
  margin-left: 1vw;
  width: 75vw;
  font-size: 4.5vw;
  line-height: 5vw;
  text-align: center;
}
.tagline span{
  font-size: 4.5vw;
  line-height: 5.5vw;
}
.cov-btns{
  gap: 4vw;
}
.cov-btn {
  padding: 2vw;
  width: 30vw;
  border-radius: 5vw;
  font-size: 3vw;
}
.date::after {
  display: none;
}

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

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

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

.carousel .list .item:nth-child(5){
  left: calc(67% + 80vw);
}
.arrows button {
  width: 10vw;
  height: 10vw;
  font-size: 5.5vw;
}
/* agenda */
.agenda-container {
  flex-direction: column;
  gap: 9vw
}
.ag-left {
  width: 30%;
  font-size: 2.7vw;
}
.agenda-page {
  width: 90%;
}
.ag-box{
  padding: 2vw 0;
  justify-content: center;
}
.ag-images {
  position: relative;
  width: 90%;
  height: 100vw;
}
.ag-patch {
 display: none;
}
.ag-images .ag-img {
  width: 90%;
  height: 50vw;
}
.ag-right {
  font-size: 3vw;
}
.break .ag-right span {
  padding: 0.5vw 2vw;
}
/* footer */

#footer {
  width: 100%;
  height: auto;
  padding: 3vw 0vw;
}
.footerContainer {
  flex-direction: column;
  gap: 2vw
}

.mail-box:hover .mb1::before {
  display: none;
}
.mb-cont {
  width: auto;
  align-items: center;
}
.mb-2{
  border-left: 1px solid rgba(209,36,53,1);
  border-right: 1px solid rgba(209,36,53,1);
  padding-right: 1vw;
}
.mail-box:hover .mb2::before {
 display: none;
}
.mail-box:hover .mb3::before {
  display: none;
}
.fRight {
  width: 80vw;
  gap: 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fUp {
  justify-content: space-around;
  gap: 2vw;
}
.fUp div {
  width: 4vw;
  height: 4vw;
}
.fLinks {
  font-size: 2.55vw;
}

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

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

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

.modalContents {
  width: 80%;
}

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

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

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

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

.f-btn {

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

.clModal {
  font-size: 1.8vw;
  width: 3vw;
  height: 3vw;
}
.form-img-box{
  display: none;
}
.del-amount-box {
  width: 86%;
  padding: 1.5vw;
  margin-top: 2.5vw;
}
.del-amount-box  .custom-checkbox{
  transform: translateY(-0.4vw);
}
.del-price-input-box label {
  font-size: 2vw;
  font-weight: 800;
}
.del-price-input-box {
  gap: 1.5vw;
}
.del-list li {
  font-size: 1.4vw;
}
.form-message {
  margin-top: 2.5vw;
  font-size: 1.95vw;
  display: none;
}
.in-h {
  font-size: 1.75vw;
}
.form-interest {
  width: 85%;
  background-color: #393939;
  padding: 1.5vw;
}
.in-box {
  margin-top: 1.5vw;
  gap: 0.9vw;
}
/* footer */
#footer {
  width: 100vw;
  height: 35vw;
}
.footerContainer {
  flex-direction: column;
  gap: 4vw
}
.mb2{
  margin-left: 2vw;
}
.mail-box:hover .mb1::before {
  display: none;
}
.mb-cont {
  width: auto;
  align-items: center;
}
.mb-2{
  border-left: 1px solid rgba(209,36,53,1);
  border-right: 1px solid rgba(209,36,53,1);
  padding-right: 1vw;
}
.mb2 a{
  padding-right: 1.2vw;
}
.mail-box:hover .mb2::before {
 display: none;
}
.mail-box:hover .mb3::before {
  display: none;
}
.fRight {
  width: 45vw;
  gap: 2vw;
}
.fUp {
  justify-content: space-around;
}
.fUp div {
  width: 4vw;
  height: 4vw;
}
.fLinks {
  font-size: 2.55vw;
}
.fLeft {
  width: 85vw;
  height: auto;
  display: flex;
  flex-direction: row;
  margin: 0 0 0 0vw;
  gap: 0.8vw;
  justify-content: center;
  align-items: center;
}
.mb-cont::before {
  display: none;
}
.mail-box {
  width: 40%;
}
.mail-heading {
  font-size: 1.85vw;
  text-align: center;
}
.mail {
  font-weight: 500;
  font-size: 2.02vw;
}
.fCopy {
  padding-left: 1vw;
  font-size: 1.825vw;
}
section{
  padding: 0;
}

}

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


  body,html{
    overflow-x: hidden;
}
.traicon_logo{
  display: none;
}
.line-1 {
  transition: 500ms;
  transform: translateY(-20px);
}
.line-3 {
  transition: 500ms;
  transform: translateY(20px);
}
.traicon-mob{
  position: fixed;
  top: 6vw;
  left: 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vw;
}
.traicon-mob:after{
  right: 13vw;
}
.traicon-mob img{
  display: block;
  width: 12vw;
  height: fit-content;
  z-index: 3;
}
.nav-button{
  display: none;
}
#navBar{
  position: fixed;
  width: 100%;
  height: 100vh;
  left: -110vw;
}
.navbar-container{
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.navlist{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.navbar ul {
  font-size: 5vw;
  gap: 7vw;
}
.frame{
  display: flex;
  position: fixed;
  right: 2vw;
  top: 2vw;
  z-index: 9999;
  background-color: transparent;
}
.closed-pop {
  width: 70vw;
  height: 20vw;
}
.closed-pop{
  font-size: 3vw;
}
.closed-pop .close {
  position: absolute;
  right: 1vw;
  top: 1vw;
  width: 5vw;
   height: 5vw;
}
.closed-pop .close svg{
  width: 2vw;
}

.cover-box {
  width: 85%;
  height: auto;
  position: absolute;
  right: 0;
  margin-bottom: 30vw;
  top: 60%;
  display: flex;
  align-items: center;
  opacity: 0.7;
}
.count-dig {
  font-size: 8vw;
  line-height: 14vw;
}
.count-box {
  width: 18vw;
  height: 23vw;
}
.countdown {
width: auto;
position: absolute;
right: 0;
bottom: 0;
gap: 2vw;
bottom: 0vw;
}
.cover-content {
width: 90%;
height: 75vh;
display: flex;
align-items: center;
justify-content: start;
flex-direction: column;
gap: 2vw;
}
.concluded {
    font-size: 6.5vw;
    left: 40vw;
    top: 30vh;
    transform: rotate(-20deg);
    z-index: 2;
    border-radius: 2vw;
}
.concluded p {
    margin: 0;
    padding: 0vw 2vw;
    padding-top: 2vw;
}
.logo-cont{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sup-logo {
  width: 20vw;
  height: 11vw;
}
.sup-head {
  font-size: 2vw;
}
.event-logo {
width: 75vw;
margin: 0;
}
.date-place {
  gap: 1vw;
  font-size: 2.7vw;
  flex-direction: column;
  font-weight: 300;
  line-height: 2.5vw;
  background: #00000000;
}
.edition {
  font-size: 3vw;
  top: 1vw;
  left: 19vw;
}
.tape {
  width: 30vw;
  top: 0vw;
  left: -2vw;
}
.count-des {
  font-size: 3.2vw;
}
.tagline {
  margin-left: 1vw;
  width: 75vw;
  font-size: 3.5vw;
  text-align: center;
  line-height: 6vw;
}
#hr25{
  top: 8vw;
  width: 16vw;
}
.tagline span{
  font-size: 3.5vw;
}
.hr25-cover {
  display: flex;
  align-items: center;
}
.hr25-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-left: 1vw;
  width: 62vw;
}
.cov-btns{
gap: 4vw;
margin-top: 5vw;
}
.cov-btn {
  padding: 1vw;
  width: 30vw;
  border-radius: 5vw;
  font-size: 2.5vw;
}
.date::after {
display: none;
}

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




/* agenda */
#agenda{
  padding: 4vw 0 0;
}
.agenda-container {
  flex-direction: column;
  gap: 5vw;
}
.ag-left {
  width: 30%;
  font-size: 2.3vw;
}
.agenda-page {
  width: 90%;
}
.ag-box{
  padding: 2vw 0;
  justify-content: center;
}
.ag-images {
  position: relative;
  width: 90%;
  height: auto;
  padding-bottom: 4vw;
}
.ag-patch {
 display: none;
}
.ag-images .ag-img {
  width: 90%;
  height: 50vw;
}
.ag-right {
  font-size: 2.3vw;
}
.break .ag-right span {
  padding: 0.5vw 1vw;
}
.ag2{
  display: none;
}



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

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

.modalContents {
  width: 80%;
}

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

.check-box {
  width: 85%;
}

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

.lt {
  font-size: 1vw;
}

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

.f-btn {

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

.clModal {
  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: translate(-0.5vw, -0.1vw);
}
.del-price-input-box label {
  font-size: 1.8vw;
  font-weight: 800;
}
.del-price-input-box {
  gap: 1.2vw;
}
.del-list li {
  font-size: 1.4vw;
}
.form-message {
  margin-top: 2.5vw;
  font-size: 1.95vw;
  display: none;
}
.in-h {
  font-size: 1.75vw;
}
.form-interest {
  width: 85%;
  background-color: #393939;
  padding: 1.5vw;
}
.in-box {
  margin-top: 1.5vw;
  gap: 0.9vw;
}



/* footer */
#footer {
  width: 100vw;
  height: 35vw;
}
.footerContainer {
  flex-direction: column;
  gap: 2vw
}
.mb2{
  margin-left: 2vw;
}
.mail-box:hover .mb1::before {
  display: none;
}
.mb-cont {
  width: auto;
  align-items: center;
}
.mb-2{
  border-left: 1px solid rgba(209,36,53,1);
  border-right: 1px solid rgba(209,36,53,1);
  padding-right: 1vw;
}
.mail-box:hover .mb2::before {
 display: none;
}
.mail-box:hover .mb3::before {
  display: none;
}
.fRight {
  width: 45vw;
  gap: 2vw;
}
.fUp {
  justify-content: space-around;
}
.fUp div {
  width: 4vw;
  height: 4vw;
}
.fLinks {
  font-size: 2.55vw;
}

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

}