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


body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  background: #0c0005;
}

a {
  text-decoration: none;
  color: white;
}

@font-face {
  font-family: "mortend light";
  src: url("../fonts/mortend-mortend-light-200.otf");
}

@font-face {
  font-family: "mortend bold";
  src: url("../fonts/mortend-mortend-bold-700.otf");
}

@font-face {
  font-family: "mortend exbold";
  src: url("../fonts/mortend-mortend-extra-bold-800.otf");
}

@font-face {
  font-family: "mortend regular";
  src: url("../fonts/mortend-mortend-regular-400.otf");
}

@font-face {
  font-family: "mortend outline";
  src: url("../fonts/mortend-mortend-outline-800.otf");
}
@font-face {
  font-family: "conc";
  src: url("../fonts/the_global_use.ttf");
}

/* #ca14ed */
/* loader */
.preloader{
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 10000;
  background-color: #000000;
}
.loader {
  height: 300px;
  aspect-ratio: 1;
  position: relative;
}
.loader-img{
  width: 40px;
}
.loader .loader-box {
  position: absolute;
  background: rgba(100, 100, 100, 0.15);
  background: linear-gradient(0deg, rgba(50, 50, 50, 0.2) 0%, rgba(100, 100, 100, 0.2) 100%);
  border-radius: 50%;
  border-top: 1px solid #646464;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 10px 0px;
  backdrop-filter: blur(5px);
  animation: ripple 2s infinite ease-in-out;
}
.loader .loader-box:nth-child(1) {
  inset: 40%;
  z-index: 99;
}
.loader .loader-box:nth-child(2) {
  inset: 30%;
  z-index: 98;
  border-color: rgba(100, 100, 100, 0.8);
  animation-delay: 0.2s;
}
.loader .loader-box:nth-child(3) {
  inset: 20%;
  z-index: 97;
  border-color: rgba(100, 100, 100, 0.6);
  animation-delay: 0.4s;
}
.loader .loader-box:nth-child(4) {
  inset: 10%;
  z-index: 96;
  border-color: rgba(100, 100, 100, 0.4);
  animation-delay: 0.6s;
}
.loader .loader-box:nth-child(5) {
  inset: 0%;
  z-index: 95;
  border-color: rgba(100, 100, 100, 0.2);
  animation-delay: 0.8s;
}
.loader .logo {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  padding: 30%;
}
.loader .logo svg {
  fill: grey;
  width: 100%;
  animation: color-change 2s infinite ease-in-out;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 10px 0px;
  }
  50% {
    transform: scale(1.3);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 30px 20px 0px;
  }
  100% {
    transform: scale(1);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 10px 0px;
  }
}
@keyframes color-change {
  0% {
    fill: grey;
  }
  50% {
    fill: white;
  }
  100% {
    fill: grey;
  }
}
/* navbar */
.mob-logo{
  display: none;
}
.navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
transition: all 0.5s ease;
  height: 80px;
  position: fixed;
  top: 0;
  z-index: 10;
  padding-top: 1vw;
}
.navscroll{
  background-color: #120309;
  border-bottom: 2px solid #ff769a;
 padding-top: 0;
}
.nav-logo-box {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-left: 2%;
  position: relative;
}

/* .nav-logo-box::after {
  content: "";
  width: 1px;
  height: 20px;
  background-color: white;
  position: absolute;
  transform: translateX(8px);
} */

.company-logo {
  width: 80px;
}

.trinity {
  width: 60px;
}

.navbar ul {
  list-style: none;
  width: fit-content;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
}

.navbar ul li a {
  font-family: "Source Sans 3";
  font-size: 16px;
}
.navbar ul li a:hover{
  color: #f0427a;
}
.active{
  color: #f0427a;
}
.nav-btn {
  width: 160px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid #ababab;
  padding: 8px 0px;
  border-radius: 50px;
  font-family: "Source Sans 3";
  font-size: 15px;
  margin-right: 2%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn i {
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: #ff769a;
  color: #000000;
}

.nav-btn:hover i {
  transform: scale(1.2);
}

/* cover */
.cover {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cover-up{
  display: flex;
  align-items: center;
  gap: 4.5vw;
  width: 100%;
}
.kn-p-container{
  position: relative;
}
.kn-p-container::before{
content: "";
height: 80%;
width: 1px;
position: absolute;
background-color: rgba(255, 255, 255, 0.766);
left: -2vw;
top: 1.9vw;
}
.kn-p-h{
  font-family: "Source Sans 3";
  text-transform: uppercase;
  font-size: 1vw;
  color: white;
}
.kn-p-boxes{
  margin-top: 0.4vw;
}
.kn-p-box{
  width: 13vw;
  height: 7.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}
.kn-p-box img{
  width: 70%;
}
.cov-vid {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: absolute;
}
.ftimg{
  width: 15vw;
  filter: drop-shadow(-1px 1px 2px #0000009e);
}
#ft25{
  position: relative;
}
#ft25::before{
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #7c7c7c;
  right: 16vw;
}
.cover-overlay {
  width: 100%;
  height: 100vh;
  position: absolute;
  background-image: url("../images/videobg.png");
  z-index: 3;
  opacity: 0.3;
}

.cover-bg {
  width: 100%;
  height: 100vh;
  background: linear-gradient(#12030982, #12030982, #120309c1, #120309);
  position: absolute;
  z-index: 2;
}

.cover-cont {
  width: 80%;
  height: 80vh;
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2vw;
}
.concluded{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  right: 5vw;
  top: 30vh;
  transform: rotate(-25deg);
}
.concluded h1,.concluded h3{
  padding: 0;
  margin: 0;
  font-family: "conc";
  color: red;
  
}
.concluded h1{
  padding: 0.5vw 1vw;
  padding-top: 0.8vw;
  border: 1px solid red;
  border-radius: 1vw;
  font-size: 3vw;
}
.concluded h3{
  font-family: "montserrat";
  font-size: 3vw;
  font-weight: 900;
}
.bh{
  color: white;
  font-family: "Source Sans 3";
  font-size: 1.2vw;
  font-weight: 500;
  background-color: #960044;
  width: fit-content;
  padding: 0vw 0.5vw;
  position: absolute;
  left: 7.5vw;
  box-shadow: -2px 2px 2px #00000066;
}
.ed{
  color: white;
  font-size: 1.1vw;
  position: absolute;
  font-family: "Source Sans 3";
  left: 15vw;
  font-weight: 600;
}
.event-logo {
  width: 34vw;
  filter: drop-shadow(-2px 2px 2px #2f010183);
}

.date-place {
  color: white;
  font-family: "montserrat";
  font-size: 1.2vw;
  font-weight: 500;
  width: fit-content;
  border-top: 1px solid #960044a4;
  border-bottom: 1px solid #9600449f;
  padding: 0vw 0.5vw;
  padding-bottom: 0.3vw;
}

.tagline {
  color: white;
  font-family: "mortend light";
  text-transform: uppercase;
  font-size: 1.5vw;
  line-height: 2vw;
}

.tagline span {
  font-family: "mortend bold";
  font-size: 1.7vw;
}

.cov-btns {
  display: flex;
  gap: 1.5vw;
}

.cov-btn {
  color: white;
  border: 2px solid #ff769a;
  height: 2.3vw;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 0.9vw;
  width: 10vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3vw;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cov-btn:hover {
  background-color: #ff769a;
  color: #120309;
}

.countdown {
  display: flex;
  gap: 0.5vw;
  text-align: center;
}

.countdown .count-dig div {
  width: 1.1vw;
  font-family: "Montserrat";
  font-weight: 700;
  color: #ff769a;
}

.countdown .count-box {
  width: 6vw;
  height: 6vw;
  background-color: #0000004e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1vw;
  backdrop-filter: blur(30px);
  gap: 0.5vw;
  border: 2px solid #2b2b2b;
}

.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: "mortend light";
  font-size: 0.6vw;
}

/* overview */
.overview {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frs{
  font-family: "Mortend bold";
  color: rgba(255, 255, 255, 0.149);
  position: absolute;
  top: 0;
  font-size: 4vw;
  right: 2vw;
  z-index: 4;
}

.over-glow{
  width: 20vw;
  height: 20vw;
  background-color: #960044d9;
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  right: -15vw;
  z-index: 2;
}


.grids {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.g-lines-v {
  width: 80%;
  height: 100%;
  position: absolute;
}

.g-lines-h {
  width: 100%;
  height: 100%;
  position: absolute;
}

.g-lines-h {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.g-lines-v {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.g-line-h {
  width: 100%;
  height: 1px;
  background: linear-gradient(to left, #1203098c, #96004438, #1203098c);
}

.g-line-v {
  height: 100%;
  width: 1px;
  background: linear-gradient(#1203098c, #96004438, #96004438, #1203098c);
}

.over-cont {
  width: 80%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.over-left,
.over-right {
  width: 50%;
  height: 100%;
}

.over-img-box-1 {
  width: 28vw;
  height: 29vw;
  background: #940f39;
  background-size: cover;
  position: absolute;
}

.over-img-box-2 {
  width: 28vw;
  height: 30vw;
  background-image: url("../images/over-img.jpg");
  position: relative;
  z-index: 2;
  background-size: cover;
  margin-left: 7vw;
  margin-top: 7vw;
}

.over-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.over-h {
  color: white;
  font-family: "mortend bold";
  font-size: 2.45vw;

}

.over-h span {
  font-family: "mortend light";
  font-size: 2vw;
  color: #ff769a;
}

.over-right p {
  font-family: "Source Sans 3";
  color: white;
  font-size: 1.15vw;
  width: 100%;
  line-height: 1.6;
  font-weight: 400;
}


@media screen and (min-width:1900px) {
  .over-right p {
    font-family: "Source Sans 3";
    font-size: 1vw;
  }
}

/* numbers */
.numbers {
  width: 100%;
  min-height: 15vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.num-glow{
  width: 10vw;
  height: 10vw;
  border-radius: 50%;
  position: absolute;
  top: -5vw;
  background: #9600444f;
  left: -5vw;
  filter: blur(50px);
}
.num-glow2{
  width: 10vw;
  height: 10vw;
  border-radius: 50%;
  position: absolute;
  bottom: 5vw;
  background: #96004423;
  right: -3vw;
  filter: blur(80px);
}

.numbers-cont {
  width: 80%;
  min-height: 15vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(#9600441e,#96004400);
  border-radius: 1vw;
  padding-top: 2vw;
  backdrop-filter: blur(30px);
  overflow: hidden;
}

.num-boxes {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.num-box {
  width: 12vw;
  height: 10vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
  position: relative;
  color: #ffffff;
}

.num-box::after {
  content: "";
  width: 2px;
  height: 1vw;
  background-color: #960044;
  position: absolute;
  right: -0.6vw;
}

.num-dig {
  font-family: "mortend bold";
  position: relative;
  width: fit-content;
}

.num-box:nth-child(2) .num-dig,
.num-box:nth-child(6) .num-dig {
  transform: translateX(-0.5vw);
}

.num-box:nth-child(6)::after {
  display: none;
}

.num-dig .odometer {
  font-family: "mortend bold";
  font-size: 2vw;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner {
  width: 2vw;
}

.num-plus {
  position: absolute;
  top: -0.5vw;
  right: 3.5vw;
  font-size: 1.5vw;
}

.num-des {
  font-family: "mortend light";
  text-align: center;
  font-size: 0.7vw;
  line-height: 1vw;
}

.num-h {
  font-size: 2vw;
  font-family: "mortend bold";
  color: white;
}

.num-h span {
  font-family: "mortend light";
  color: #960044;
}

/* why Bahrain */
.title {
  color: white;
  font-size: 3vw;
  font-family: "mortend bold";
  text-transform: uppercase;
}

.title span {
  font-family: "Mortend light";
}
.why-this-glow{
  width: 20vw;
  height: 20vw;
  position: absolute;
  background: #96004472;
  border-radius: 50%;
  left: -14vw;
  z-index: 2;
  filter: blur(80px);
}

.whythis {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 3vw;
}
.whythis-h{
  color: white;
  font-family: "Mortend Light";
  text-transform: uppercase;
  font-size: 2vw;
  line-height: 2.5vw;
}
.whythis-h span{
  font-family: "mortend bold";
  color: #960044;
}
.why-this-cont {
  width: 80%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.why-this-left {
  width: 85%;
  height: 100%;
}

.why-this-right {
  width: 45%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 2;
}

.why-this-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-this-left p {
  color: white;
  font-size: 1.1vw;
  font-family: "Source Sans 3";
  line-height: 1.7;
}

.why-this-left p span {
  color: #ff769a;
  font-weight: 500;
  font-size: 1.2vw;
}


@media screen and (min-width:1900px) {
  .why-this-left p {
    color: white;
    font-size: 1vw;
  }

  .why-num-des {
    font-size: 1vw;
  }
}

.why-numbers {
  width: 100%;
  height: 15vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1.5vw;
  margin-top: 1vw;
}

.why-num-box {
  width: 14vw;
  height: 7vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0vw;
  border: 1px solid rgba(255, 255, 255, 0.071);
  border-radius: 1vw;
  padding: 1vw 0vw;
  background-color: rgba(255, 255, 255, 0.037);
  backdrop-filter: blur(30px);
}

.why-num-dig {
  color: #ff769a;
  font-size: 1.5vw;
  font-family: "Montserrat";
 letter-spacing: 0.0vw;
 font-weight: 800;
}

.why-num-des {
  color: white;
  text-align: center;
  font-family: "Source sans 3";
  font-size: 1vw;
  font-weight: 300;
  padding: 0.3vw 0.4vw;
}
.why-this-stroke{
  width: 70%;
  height: 35vw;
  border: 2px solid #960044;
  position: absolute;
  margin-top: 4vw;
}

.why-this-img-box {
  width: 80%;
  height: 35vw;
  background-image: url("../images/over-1.jpg");
  background-size: cover;
  background-position: center;
  margin-top: 3vw;
  position: absolute;
  right: 0;
}

.why-trp {
  width: 20vw;
  height: 20vw;
  position: absolute;
  right: -25vw;
  top: 5.5vw;
  border-radius: 50%;
  background: #960044b4;
  filter: blur(100px);
  z-index: -1;
}

/* themes */
.themes {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
padding: 4vw 0vw;
position: relative;
}
.themes-glow{
  width: 30vw;
  height: 30vw;
  border-radius: 50%;
  right: -15vw;
  background: #9600447d;
  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;
}
.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-overlay{
  position: absolute;
  width: 0%;
  height: 100%;
  background: linear-gradient(#12030900,#120309b5);
  z-index: -1;
  left: 0;
}


.theme-box:hover .theme-icon svg {
  fill: #120309;
  transform: translateY(-0.5vw);
}

.theme-box:hover .theme-des {
  color: #960044;
}

.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: "mortend light";
  font-size: 0.9vw;
  line-height: 1vw;
  text-align: center;
  background-color: #120309a2;
}

@media screen and (min-width:1900px) {
  .theme-des {
    font-size: 0.75vw;
  }
}

/* who will movie */
.who {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.who-glow{
position: absolute;
width: 40vw;
height: 40vw;
background: #96004492;
filter: blur(150px);
z-index: 2;
border-radius: 50%;
left: -30vw;
top: 60vh;
}
.who-cont {
  width: 80%;
  height: 100vh;
  position: relative;
  z-index: 9;
}

.attend-boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5vw;
  margin-top: 1.5vw;
}

.attend-box {
  width: 11vw;
  height: 11vw;
background-color: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1vw;
  position: relative;
  z-index: 1;
  border-radius: 1vw;
  overflow: hidden;
}

.attend-box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0px;
  background: linear-gradient(45deg,#960044,#940f39);
  bottom: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.attend-box:hover::after {
  height: 100%;
}


.attend-box svg {
  width: 30%;
  fill: #ff769a;
}
.attend-box:hover svg{
  fill:#ffffff;
}
.attend-des {
  color: white;
  font-family: "Source Sans 3";
  font-size: 1.1vw;
  text-align: center;
  width: 80%;
  font-weight: 300;
}

@media screen and (min-width:1900px) {
  .attend-des {
    font-size: 0.9vw;
  }
}

/* job-titles */
.job-titles {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
 background-image: url("../images/num-wave.png");
 background-size: cover;
 
}
.job-overlay{
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(#120309,#120309da,#120309);
}
.percent-container {
  width: 40%;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.081);
 padding-bottom: 2vw;
border-radius: 1vw;
background-color: #12030933;
backdrop-filter: blur(10px);
position: relative;
z-index: 9;
padding: 2vw 0vw;
margin-top: 2vw;
}

.job-circles {
  width: 100%;
  height: 27vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.circle-container {
  position: relative;
  padding: 2vw;
  border-radius: 50%;
  background-color: #171717;
  position: absolute;
}

#circle1 {
  width: 8vw;
  height: 8vw;
right: 4vw;
z-index: 2;
top: 12vw;
box-shadow: -0.5vw 0.5vw 1vw rgba(0, 0, 0, 0.719);
}

#circle2 {
  width: 10vw;
  height: 10vw;
  top: 5vw;
  left: 5vw;
  box-shadow: -0.5vw 0.5vw 1vw rgba(0, 0, 0, 0.719);
}

#circle3 {
  width: 12vw;
  height: 12vw;
  right: 7vw;
  top: 1vw;
  box-shadow: -0.5vw -0.5vw 1vw rgba(0, 0, 0, 0.719);
}
#circle4{
  width: 6vw;
  height: 6vw;
  bottom: 3vw;
  box-shadow: -0.5vw -0.5vw 1vw rgba(0, 0, 0, 0.719);
}
#circle5{
  width: 6vw;
  height: 6vw;
  bottom: 1vw;
  left: 6vw;
  box-shadow: -0.5vw -0.5vw 1vw rgba(0, 0, 0, 0.719);
}


.circle-container:nth-child(2) .circle-text{
  font-size: 1.5vw;

} 
.circle-container:nth-child(3) .circle-text{
  font-size: 2vw;

} 
.data-box{
  position: absolute;
  padding: 1vw;
  background-color: #ababab;
  border-radius: 1vw;
  font-family: "Source Sans 3";
  z-index: 4;
  transform: translate(5vw,-2vw);
 visibility: hidden;
 transition: all 0.3s ease;
}
.circle-container:hover .data-box{
visibility: visible;
}


.circle-text {
  position: absolute;
  font-size: 1.2vw;
  color: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: "mortend bold";
}
.circles-des-box{
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  margin-top: 1vw;
}
.circles-des{
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5vw;
  font-weight: 300;
  font-family: "Source Sans 3";
  font-size: 1.1vw;
}
.cir-des-box{
  width: 1vw;
  height: 1vw;
}
.circles-des:nth-child(1) .cir-des-box{
  background: #f0427a;
}
.circles-des:nth-child(2) .cir-des-box{
  background: #ff769a;
}
.circles-des:nth-child(3) .cir-des-box{
  background: 
  #db1956;
}
.circles-des:nth-child(4) .cir-des-box{
  background: 
  #940f39;
}
.circles-des:nth-child(5) .cir-des-box{
  background: 
  #940f39;
}

.job {
  width: 38%;
  height: 100vh;
  position: relative;
}
.job .title{
  font-size: 2vw;
  padding: 1vw;
  margin-top: 1vw;
  margin-left: 1vw;
}
.job-content{
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.job-box{
  width: 90%;
  height: 38.5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.7vw;
  border: 1px solid #960044;
  transition: all 0.3s ease;
  border-radius: 1vw;
  padding: 1vw 0;
}
.job-box:hover{
  background-color: #ff769a;
}
.job-box:hover .job-item{
  color: #120309;
  border-bottom: 1px solid rgba(0, 0, 0, 0.178);
}
.job-box:hover .job-item div:nth-child(2){
  color: #120309;
}
.job-item{
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.178);
  padding-bottom: 0.2vw;
}
.job-item div:nth-child(1){
  font-family: "Source Sans 3";
  font-size: 1vw;
  width: 70%;
  transition: all 0.3s ease;
}
.job-item div:nth-child(2){
  font-family: "mortend regular";
  font-size: 0.8vw;
  color: #ff769a;
  transition: all 0.3s ease;
}


/* summit-highlights */
.summit-highlights {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5vw 0vw;
}

.sum-container {
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
}

.summit-cont {
  width: 80%;
  height: 80vh;
  position: relative;
}

.summit-right {
  width: 40%;
  height: 100%;
  position: relative;
}

.summit-left {
  width: 60%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.summit-boxes {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
  margin-top: 4vw;
}

.summit-box {
  width: 42%;
  height: 12vw;
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
  padding: 1vw;
}

.sum-icon {
  width: 20%;
  height: auto;
}

.sum-icon svg {
  fill: #ff769a;
}

.sum-h {
  color: white;
  font-family: "mortend light";
  font-size: 1vw;
  line-height: 1.5;
}

.sum-cont {
  color: white;
  font-family: "source Sans 3";
  font-size: 1vw;
}

.sum-img1 {
  width: 25vw;
  height: 25vw;
  background-image: url("../images/sum1.jpg");
  background-size: cover;
  position: absolute;
  right: 8vw;
}

.sum-img2 {
  width: 20vw;
  height: 17vw;
  background-image: url("../images/sum2.jpg");
  top: 17vw;
  position: absolute;
  background-size: cover;
  left: -17vw;
  border: 0.5vw solid #120309;
}

.sum-img3 {
  width: 12vw;
  height: 12vw;
  background-image: url("../images/sum3.jpg");
  background-size: cover;
  position: absolute;
  right: 0;
  border: 0.5vw solid #120309;
  bottom: 1vw;
}

.sum-patch {
  width: 10vw;
  height: 10vw;
  background: #940f39;
  position: absolute;
  right: 3vw;
  top: -5vw;
}

/* why */
.why {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
position: relative;
padding: 5vw 0vw;
}
.why-glow{
  width: 35vw;
  height: 35vw;
  background: #960044ad;
  border-radius: 50%;
  position: absolute;
  filter: blur(120px);
  z-index: 2;
  left: -27vw;
  top: -10vw;
}

.why .title span{
  color: #960044;
}

.why-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(#120309, #120309, #120309);
  position: absolute;
}

.why-cont {
  width: 80%;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.why-top {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-top-left{
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.why-left-cont{
  padding: 2vw;
  background: #120309;
  position: absolute;
  width: 80%;
  left: 0;
}

.why-left-stroke{
  width: 60%;
  position: absolute;
  border: 2px solid #960044;
  height: 23vw;
  right: 2vw;
}
.why-down {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-left: 1vw;
  gap: 0.5vw;
margin-top: 5vw;
  opacity: 1;
}

.why-main-p {
  color: white;
  font-size: 0.9vw;
  font-family: "mortend light";
  text-transform: uppercase;
  line-height: 1.7;
  background: linear-gradient(to right,#96004423,rgba(0, 0, 0, 0));
  padding: 1vw;
  backdrop-filter: blur(30px);
}

.why-main-p span{
  font-family: "mortend bold";
  color: #960044;
}

@media screen and (min-width:1900px) {
  .why-main-p {
    font-size: 1vw;
  }

  .why-ex-des {
    font-size: 1vw;
  }
}

.ex-l-boxes {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 50%;
  margin-top: 1vw;
 background: linear-gradient(#96004431,rgba(0, 0, 0, 0));
  padding: 4vw 0vw;
  border-radius: 1vw;
  backdrop-filter: blur(30px);
}

.ex-l-box {
  color: white;
  display: flex;
  align-items: center;
  gap: 1vw;
  padding: 0.5vw;
 width: 80%;
}

.ex-l-h {
  font-size: 0.9vw;
  font-family: "mortend light";
}

.ex-l-icon-box svg {
  fill: #ff769a;
  width: 3vw;
}
.why-carousel .item{
  height: 23vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-box {
  color: white;
  width: 75%;
  height: 60%;
  background-color: rgb(33, 33, 33);
  border-radius: 1vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  gap: 0.2vw;
  padding: 3vw;
  border: 2px solid rgb(63, 63, 63);
  transition: all 0.3s ease;
}
.why-box:hover{
  background-color: #960044;
}
.why-box:hover .why-ex-h{
  color: black;
}
.why-box:hover .why-ex-des{
  color: black;
  font-weight: 400;
}
.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(#960044,#940f39);
  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;
}
.why-ex-h {
  font-family: "mortend regular";
  font-size: 1vw;
  color: #ff769a;
  text-align: center;
}

.why-ex-des {
  font-family: "source sans 3";
  font-size: 1.1vw;
  font-weight: 300;
  text-align: center;
}

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

  .why-ex-des {
    font-size: 1vw;
  }
}

/* speakers */
.speakers{
  width: 100%;
  height: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.speakers .title{
  width: 80%;
}
.speakers-boxes{
  width: 80%;
  height: auto;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vw;
  flex-wrap: wrap;
  padding-bottom: 5vw;
}
.pspk{
  min-height: auto;
}
.speaker-box{
  width: 19vw;
  height: 25vw;
  background-color: #191919;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3vw;
  overflow: hidden;
  position: relative;
}
.speaker-box::after{
  content: "";
  width: 2vw;
  height: 2vw;
  background: #ff769a;
  transform: rotate(45deg);
  right: -1vw;
  position: absolute;
  bottom: -1vw;
}
.speaker-box:hover .speaker-img-box{
background:#940f39;
}
.speaker-img-box{
  width: 16vw;
  height: 16vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #960044;
  margin-top: 1.5vw;
  position: relative;
}
.spk-img{
  width: 100%;
  margin-top: 5vw;
  position: relative;
}
.spk-img2{
  position: absolute;
  width: 100%;
opacity: 0.1;
margin-top: 4vw;
margin-left: 3vw;
}
.pspk .spk-img,.pspk .spk-img2{
  transform: translateY(3vw);
}
.spk-cont{
  width: 100%;
  min-height: 7vw;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.3vw;
}
.spk-name{
  color: white;
  font-size: 0.9vw;
  text-transform: uppercase;
  font-family: "mortend light";
  text-align: center;
}
.spk-job{
  color: white;
  font-family: "Source Sans 3";
  font-size: 1vw;
  line-height: 1.15vw;
  font-weight: 300;
  text-align: center;
  padding: 0 .5vw ;
}
.spk-company{
  color: white;
  font-family: "Source Sans 3";
  font-weight: 500;
  font-size: 1vw;
  line-height: 1.15vw;
  text-align: center;
  /* width: 98%; */
  padding: 0 .5vw ;
}
.past-title {
  color: white;
  font-size: 1.6vw;
  font-family: "mortend bold";
  text-transform: uppercase;
  align-self: start;
}

.past-title span {
  font-family: "Mortend light";
  font-weight: 100;
}
/* sponsors */
.sponsors{
  width: 100%;
  height: auto;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3vw 0vw;
}
.sponsors-cont{
  width: 80%;
  min-height: 80vh;
}
.spon-h{
  color: white;
  font-family: "Source Sans 3";
  font-size: 1vw;
  font-weight: 500;
  border: 1px solid #940f39;
  width: fit-content;
  padding: 0.4vw 1vw;
  margin-top: 3vw;
}
.spon-boxes{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5vw;
  gap: 1vw;
}
.community .spon-box{
  width: 13vw;
  height: 7vw;
}
.associate .spon-box{
  width: 14vw;
  height: 9vw;
}
.spon-box{
  width: 14vw;
  height: 7vw;
  background-color: white;
}
.sponsors-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}
.spon-container{
  margin-top: 3vw;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.sponsors .owl-carousel img{
  width: 70%;
}
.sponsBox{
  width: 100%;
  height: 8vw;
  background: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
}


.spon-box{
  width: 15.5vw;
  height: 9.5vw;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.platinum .spon-box {
  width: 23vw;
  height: 13vw;
}
.gold .spon-box{
  width: 20vw;
  height: 12vw;
}


.silver .spon-box{
  width: 18vw;
  height: 11vw;
}

.media .spon-box{
  width: 11vw;
  height: 6vw;
}
.media{
  gap: 0.8vw;
}
.spon-img{
  width: 70%;

}
/* agenda */
.agenda{
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/agenda.jpg");
  background-size: cover;
  position: relative;
}
.agenda-cont{
width: 80%;
height: 100vh;
position: relative;
z-index: 3;
}
.agenda-olay{
  width: 100%;
  height: 100vh;
  position: absolute;
  background: linear-gradient(#120309,#120309e8,#120309);
}
.agenda-boxes{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: auto;
  display: flex;
  margin-top: 1vw;
}
.agenda-box{
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.agenda-day{
  width: 95%;
  font-family: "mortend exbold";
  font-size: 4vw;
  color: rgba(255, 255, 255, 0.236);
}
.agenda-cont-box{
  display: flex;
  width: 95%;
  padding: 0.7vw 0vw;
}
.ag-time{
  width: 20%;
  color: #ff769a;
  font-family: "Source Sans 3";
      font-size: 1.1vw;
  font-weight: 600;

}
.ag-des{
  width: 75%;
  color: white;
  font-family: "Source Sans 3";
      font-size: 1.1vw;
  font-weight: 300;
}

.agenda-patch{
  width: 100%;
  height: 60vh;
  position: absolute;
  bottom: 0;
  z-index: 5;
  background: linear-gradient(#12030900,#120309ea,#120309);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ag-btn{
  color: white;
  border: 2px solid #ff769a;
  height: 2.3vw;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 0.9vw;
  width: 10vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3vw;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ag-btn:hover {
  background-color: #ff769a;
  color: #120309;
}
.panel span{
  background: #960044;
}
/* gallery */
.gallery-section{
   width: 100%;
   height: auto;
   padding: 2vw 0vw;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 2vw;
   position: relative;
}
.gallery-glow{
  width: 30vw;
  height: 30vw;
  background: #96004451;
  position: absolute;
  border-radius: 50%;
  right: -20vw;
  top: -15vw;
  z-index: 5;
  filter: blur(80px);

}
.galplus{
  width: 100%;
  height: 100%;
  background-color: #0000006c;
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
}
.galplus i{
  color: white;
  font-size: 1.2vw;
  border: 1px solid #960044;
  width: 3vw;
  height: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #960044;
  border-radius: 50%;
}
.gallery-section .title{
  width: 80%;
}

.gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1vw;
  width: 80%;
  height:90vw;
  position: relative;
  z-index: 6;
}

.box {
  width: 20vw;
  height: 20vw;
  perspective: 100vw;
  position: relative;
  cursor: pointer;
  position: absolute;
  border-radius: 1vw;
  overflow: hidden;
}
.box:hover .galplus{
  opacity: 1;
}
.box:hover .front{
  background-position: 5%;
}

#box1{
  width: 31vw;
  height: 31vw;
  top : 0vw;
  left: 0;
}
#box2{
  width: 15vw;
  height: 15vw;
  top : 0vw;
  left: 32vw;
}
#box3{
  width: 15vw;
  height: 15vw;
  top : 0vw;
  left: 48vw;
}
#box4{
  width: 15vw;
  height: 15vw;
  top : 0vw;
  left: 64vw;
}
#box5{
  width: 15vw;
  height: 15vw;
  top : 16vw;
  left: 32vw;
}
#box6{
  width: 15vw;
  height: 15vw;
  top : 16vw;
  left: 48vw;
}
#box7{
  width: 15vw;
  height: 15vw;
  top : 16vw;
  left: 64vw;
}
#box8{
  width: 23.5vw;
  height: 23.5vw;
  top : 32vw;
  right: 0vw;
}
#box9{
  width: 22.5vw;
  height: 23.5vw;
  top : 32vw;
  right: 24.5vw;
}
#box10{
  width: 15vw;
  height: 15vw;
  top : 32vw;
  left: 0;
}

#box11{
  width: 15vw;
  height: 15vw;
  top : 32vw;
  left: 16vw;
}
#box12{
  width: 15vw;
  height: 15vw;
  top : 48vw;
  left: 16vw;
}
#box13{
  width: 15vw;
  height: 15vw;
  top : 48vw;
  left: 0vw;
}
#box14{
  width: 31vw;
  height: 31vw;
  top : 56.5vw;
  right: 0.1vw;
}
#box15{
  width: 15vw;
  height: 14vw;
  top : 56.5vw;
  right: 32.1vw;
}
#box16{
  width: 31vw;
  height: 24vw;
  top : 64vw;
  left: 0;
}
#box17{
  width: 15vw;
  height: 16.2vw;
  top : 71.5vw;
  left: 32vw;
}



.box div {
  width: 100%;
  height: 100%;
  position: absolute;
  transition: transform 0.6s, opacity 0.6s;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  
}

.box .front {
  background-size: 105%;
  background-position: center;
  opacity: 1;
  transition: all 0.5s ease;
}

.box .back {
 background: linear-gradient(#960044,#940f39);
  transform: rotateY(180deg);
}

.box.flipped .front {
  transform: rotateY(180deg);
}
.box.flipped .galplus{
  display: none;
}

.box.flipped .back {
  transform: rotateY(0deg);
}

.box .fade {
  transition: opacity 0.6s;
  opacity: 0;
}

/* Popup styles */
.popup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-img {
  max-width: 90%;
  max-height: 90%;
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

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

.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: #960044;
  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: #960044;
border: 1.5px #960044 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(#960044,#960044);
position: absolute;
margin-left: -1vw;
transition: all 0.5s ease;
}

.mail-box:hover .mb-cont::before{
width: 100%;
}

  /* forms */
  .modal {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .4s;
    z-index: 10000;
    }
    
    
    .modalContents {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg,rgb(28, 28, 28),black);
    width: 90%;
    /* backdrop-filter: blur(3px); */
    border-top: none;
    border: 1px solid rgb(141, 141, 141);
    border-top: none;
    }
    .form-img-box{
      width: 30%;
      overflow: hidden;
      height: 26vw;
    }
    .form-img{
      width: 110%
    }
    
    .form-heading {
    font-family: "mortend bold";
    color: rgb(255, 255, 255);
    font-size: 1vw;
    border-bottom: none;
    padding: 0.5vw 0vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background:linear-gradient(45deg,#940f39,#960044);
    width: 90%;
    border: 1px solid rgb(141, 141, 141);
    border-bottom: none;
    }
    
    .modalWrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 1.3vw;
    }
    
    .modalBg {
    width: 100%;
    height: 100%;
    background: linear-gradient(43deg,rgba(0, 0, 0, 0.938),rgba(28, 27, 27, 0.814),rgba(0, 0, 0, 0.786));    
    }
    form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    }
    .del-amount-box{
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 93%;
      padding: 0.5vw;
      margin-top: 0.5vw;
      background-color: #313131;
    }
    .del-price-input-box{
      display: flex;
      align-items: center;
      gap: 0.3vw;
    }
    .del-list{
      padding: 0;
      margin: 0;
      margin-left: 2vw;
      margin-top: 0.5vw;
    }
     li{
      font-size: 0.55vw;
      font-family: "Poppins";
      font-weight: 300;
    
    }
    .del-price-input-box label{
      color: white;
      font-family: "Poppins";
      font-size: 0.6vw;
      display: flex;
      align-items: center;
      gap: 0.3vw;
    }
    .del-price-input-box label sup{
      color: red;
      font-size: 0.5vw;
    }
  
    .inputs{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    }
    
    .inputs input{
    border-radius: 0px;
    margin: 1vw 0vw;
    background-color: transparent;
    border: none;
    border-bottom:1px solid #ffffff37;
    display: flex;
    align-items: center;
    width: 45%;
    height: 1.7vw;
    font-size: 0.7vw;
    color: #ffffff;
    }
    .inputs input:focus{
    outline: none;
    background-color: none;
    }
  
    .inputs input::placeholder{
    font-family: "Poppins";
    color: #ffffff;
    font-size: 0.55vw;
    transform: translate(0.1vw,0vw);
    font-weight: 300;
    }
    .check-box{
    width: 93%;
    height: auto;
    }
    .checks{
    padding: 0.4vw 0vw;
    }
    .checks label{
    display: flex;
    }
    .f-btn{
    background: none;
    border: none;
    font-family: "Poppins";
    font-size: 1vw;
    font-weight: 600;
    color: #ffffff;
    padding: 0.2vw 1vw;
    margin: 1vw 0vw;
    cursor: pointer;
    background-color: #960044;
    }
    
    .f-btn:hover{
    color: #ffffff;
    background-color: #940f39;
  }
    
    
    /* 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: #960044;
    }
    
    
    .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: #960044;
  }
  .in-box{
    margin-top: 0.5vw;
    display: flex;
    flex-direction: column;
    gap: 0.3vw;
  }
  .in-box label{
  display: flex;
  gap: 0.5vw;
  }
  
  

/* responsive */

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

  /* navbar */
  .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{
    align-items: center;
    gap: 7vw;
    justify-content: center;
    margin-top: 0;
    width: 90%;
    height: 150vw;
  }
  .ftimg{
    width: 25vw;
  }
  .cover-up {
    align-items: start;
    gap: 6vw;
    width: fit-content;
  }
  .event-logo {
    width: 60vw;
}
.kn-p-h {
  font-size: 2.4vw;
}
.kn-p-box {
  width: 23vw;
  height: 12vw;
}
.kn-p-container::before {
  left: -3vw;
  width: 1px;
  top: 2vw;
  height: 90%;
}
#ft25::before {
  right: 25vw;
}
.date-place {
  color: white;
  font-family: "montserrat";
  font-size: 3vw;
  padding: 1vw 0vw;
}
.bh {
  font-size: 2.5vw;
  padding: 0vw 1.5vw;
  position: absolute;
  left: 28vw;
  top: 26.5vw;
}
.ed {
  font-size: 3vw;
  left: 30vw;
  top: 25.7vw;
  font-weight: 500;
}

.countdown .count-box {
  width: 18vw;
  height: 18vw;
  border-radius: 3vw;
}
.countdown .count-dig div {
  width: 3.7vw;
}
.countdown span {
  font-size: 5.7vw;
}
.count-des{
  font-size: 2vw;
}
.tagline {
  font-size: 3.5vw;
  line-height: 4vw;
  text-align: center;
}
.tagline span {
  font-size: 4.7vw;
  line-height: 5vw;
}
.cov-btn {
  height: 6.3vw;
  font-size: 2.9vw;
  width: 30vw;
  border-radius: 6vw;
  transition: all 0.2s ease;
}
.concluded h1 {
  padding: 0.5vw 3vw;
  padding-top: 2.8vw;
  border-radius: 1vw;
  font-size: 8vw;
}
.concluded h3 {
  font-family: "montserrat";
  font-size: 7vw;
  font-weight: 900;
}
.concluded {
  z-index: 10;
  right: auto;
  top: auto;
  bottom: 1vw;
  transform: rotate(-25deg);
}
/* overview */
.overview{
  height: auto;
}
.over-cont{
  flex-direction: column;
  align-items: center;
  gap: 5vw;
}
.over-left, .over-right {
  width: 100%;
  height: 100%;
}
.over-img-box-1 {
  width: 60vw;
  height: 61vw;
}
.over-img-box-2 {
  width: 60vw;
  height: 62vw;
  margin-left: 12vw;
  margin-top: 12vw;
}
.over-h span {
  font-size: 4vw;

}
.over-h {
  font-family: "mortend bold";
  font-size: 5vw;
}
.over-right p {
  font-size: 4vw;
  width: 100%;
  text-align: justify;
}
/* numbers */
.numbers{
  margin-top: 7vw;
}
.numbers-cont{
  width: 90%;
}
.num-h {
  font-size: 5vw;
}

.num-boxes{
  flex-wrap: wrap;
}
.num-box {
  width: 30vw;
  height: 25vw;
}
.num-dig .odometer {
  font-family: "mortend bold";
  font-size: 6vw;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner {
  width: 6vw;
}
.num-plus {
  position: absolute;
  top: -1.5vw;
  right: 7.5vw;
  font-size: 3.5vw;
}
.num-des {
  font-size: 2vw;
  line-height: 2.5vw;
}
.num-box::after {
  height: 5vw;
}
/* whybahrain */
.whythis{
  height: auto;
  padding-top: 7vw;
}
.why-this-cont{
  width: 90%;
  height: auto;
  flex-direction: column;
}
.why-this-left{
  width: 100%;
  height: auto;
}
.why-this-right{
  width: 100%;
  height: 100vw;
  justify-content: center;
}
.whythis-h {
  font-size: 5vw;
  line-height: 5.5vw;
  text-align: center;
}
.why-this-left p {
  color: white;
  font-size: 4.1vw;
  text-align: justify;
}
.why-num-box {
  width: 28vw;
  height: 20vw;
}
.why-num-dig{
  font-size: 3.5vw;
}
.why-num-des{
  font-size: 3vw;
}
.why-numbers{
  height: auto;
}
.why-this-img-box {
  width: 80%;
  height: 80vw;
  margin-top: 0;
  right: auto;
}
/* who */
.title {
  color: white;
  font-size: 7vw;
}
.who{
  height: auto;
  padding: 7vw 0vw;
}
.who-cont {
  width: 90%;
  height: auto;
}
.attend-box {
  width: 29vw;
  height: 29vw;
  border-radius: 3vw;
}
.attend-des {
  color: white;
  font-family: "Source Sans 3";
  font-size: 3.1vw;
  text-align: center;
  width: 90%;
}
/* job-titles */
.job-titles {
  width: 100%;
  height: auto;
  flex-direction: column;
}
.percent-container {
  width: 85%;
}
.job-circles {
  width: 100%;
  height: 70vw;
}
.job-overlay {
  width: 100%;
  height: 130%;
}
.circle-text {
  font-size: 2.2vw;
}
.circle-container:nth-child(3) .circle-text {
  font-size: 4vw;
}
.circle-container:nth-child(2) .circle-text {
  font-size: 3.5vw;
}
#circle3 {
  width: 35vw;
  height: 35vw;
  right: 7vw;
  top: 4vw;
  box-shadow: -0.5vw -0.5vw 1vw rgba(0, 0, 0, 0.719);
}
#circle2 {
  width: 30vw;
  height: 30vw;
  top: 14vw;
  left: 6vw;
  box-shadow: -0.5vw 0.5vw 1vw rgba(0, 0, 0, 0.719);
}
#circle1 {
  width: 22vw;
  height: 22vw;
  right: 12vw;
  z-index: 2;
  top: 37vw;
  box-shadow: -0.5vw 0.5vw 1vw rgba(0, 0, 0, 0.719);
}
#circle4 {
  width: 15vw;
  height: 15vw;
  bottom: 17vw;
  box-shadow: -0.5vw -0.5vw 1vw rgba(0, 0, 0, 0.719);
}
#circle5 {
  width: 15vw;
  height: 15vw;
  bottom: 11vw;
  left: 17vw;
  box-shadow: -0.5vw -0.5vw 1vw rgba(0, 0, 0, 0.719);
}
.circles-des {
  gap: 1.5vw;
  font-size: 4.1vw;
}
.circles-des-box{
  gap: 4vw;
}
.cir-des-box {
  width: 3vw;
  height: 3vw;
}

.job {
  width: 85%;
  height: auto;
}
.job .title {
  font-size: 4vw;
  padding: 1vw;
  margin-top: 10vw;
  margin-left: 3vw;
}
.job-box {
  width: 90%;
  height: auto;
  border-radius: 3vw;
}
.job-item div{
  width: 90%;
}
/* themes */
.themes{
  padding: 10vw 0vw;
}
.themes-cont {
  width: 90%;
}
.theme-carousel .item, .theme-carousel2 .item {
  height: 50vw;
}
.theme-des{
  font-size: 2vw;
  line-height: 3vw;
}
/* summit-cont */
.summit-cont{
  width: 90%;
  height: auto;
}
.sum-container{
  flex-direction: column-reverse;
  height: auto;
}
.summit-right{
  width: 100%;
  height: 80vw;
}
.sum-patch {
  width: 20vw;
  height: 20vw;
}
.sum-img1 {
  width: 50vw;
  height: 50vw;
  right: 10vw;
  top: 3vw;
}
.sum-img2 {
  width: 30vw;
  height: 30vw;
  top: 39vw;
  left: 5vw;
  border: 1.5vw solid #120309;
}
.sum-img3 {
  width: 20vw;
  height: 20vw;
  border: 1.5vw solid #120309;
  bottom: 11vw;
}
.summit-left {
  width: 90%;
}
.summit-box {
  width: 90%;
  height: 55vw;
}
.sum-h {
  font-size: 3vw;
  line-height: 1.5;
}
.sum-icon{
  width: 16%;
}
.sum-cont {
  font-size: 4vw;
}
/* why exhibit */
.why-top{
  flex-direction: column;
}
.why-cont {
  width: 90%;
}
.why-top-left {
  width: 100%;
  height: 90vw;
}
.why-left-stroke {
  width: 60%;

  height: 70vw;
  right: 2vw;
}
.why-main-p {
  color: white;
  font-size: 2.9vw;
}
.ex-l-boxes{
  width: 100%;
  gap: 7vw;
  padding: 7vw 0vw;
}
.ex-l-h {
  font-size: 2.9vw;
}
.ex-l-icon-box svg {

  width: 10vw;
}
.why-carousel .item {
  height: 80vw;
}
.why-box{
  border-radius: 3vw;
  height: 90%;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
  width: 5vw;
  height: 5vw;
}
.owl-carousel .owl-nav button.owl-next span, .owl-carousel .owl-nav button.owl-prev span {
  width: 5vw;
  height: 5vw;
  font-size: 3vw;
}
.owl-carousel .owl-nav button.owl-prev {
  left: -3vw;
}
.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  right: -3vw;
  top: 38%;
}
.why-ex-h {
  font-size: 3.5vw;
}
.why-ex-des {
  font-size: 3.5vw;
}
/* speakers */
.ps-carousel .item,.ps-carousel2 .item{
display: flex;
align-items: center;
justify-content: center;
}
.speaker-box {
  width: 40vw;
  height: 60vw;
}
.speakers-boxes{
  width: 90%;
  min-height: 70vh;
}
.speakers{
  min-height: 60vh;
  padding: 7vw 0vw;
}
.speaker-img-box {
  width: 35vw;
  height: 35vw;
}
/* .spk-img{
  transform: translateY(7vw);
} */
.spk-cont {
  width: 100%;
  min-height: 20vw;
}
.spk-name{
  font-size: 3vw;
}
.spk-company{
  font-size: 2.5vw;
  line-height: 2.7vw;
}
.pspk .spk-img, .pspk .spk-img2 {
  transform: translateY(8vw);
}
.pspk{
  min-height: auto;
}
.spk-job{
  font-size: 2.5vw;
  line-height: 2.7vw;
}
.past-title {
  padding: 4vh 0 2vh;
  font-size: 4.5vw;
}
.speaker-box::after {
  width: 10vw;
  height: 10vw;

  right: -6vw;
  bottom: -6vw;
}
/* sponsors */
.sponsors{
  min-height: 10vh;
  padding: 7vw 0vw;
}
.sponsors-cont {
  width: 90%;
  min-height: 10vh;
}
.spon-h {
  font-size: 3vw;
  padding: 1.4vw 2vw;
  margin-top: 8vw;
}
.spon-boxes{
  margin-top: 6vw;
}
.community .spon-box{
  width: 26vw;
  height: 15vw;
}
.associate .spon-box{
  width: 24.5vw;
  height: 15vw;
}
.platinum .spon-box {
  width: 53vw;
  height: 31vw;
}
.sponsBox {
  width: 100%;
  height: 25vw;
  border-radius: 3vw;
}
.spon-box {
  width: 30vw;
  height: 17vw;
}
.gold .spon-box {
  width: 48vw;
  height: 27vw;
}
.silver .spon-box {
  width: 41vw;
  height: 22vw;
}
.media .spon-box {
  width: 27vw;
  height: 16vw;
}

/* agenda */
.agenda{
  height: 250vw;
}
.agenda-olay{
  width: 100%;
  height: 250vw;
}
.agenda-cont {
  width: 90%;
  height: auto;
}
.agenda-box:nth-child(2){
  display: none;
}
.agenda-box{
  width: 100%;
  height: 220vw;
}

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

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

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

}

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

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

.modalContents {
  width: 80%;
}

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

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

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

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

.f-btn {

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

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

}

@media screen and (min-width: 768px) and (max-width: 1024px){
  body,html{
    overflow-x: hidden;
  }
  .mob-logo{
    position: fixed;
    width: 15vw;
    z-index: 10000;
    top: 4vw;
    left: 4vw;
    display: block;
  }
  .ml2{
    left: 22vw;
    width: 12vw;
    top: 6.6vw;
  }
  

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

  .navbar ul{
    flex-direction: column;
    padding: 0;
    gap: 3vw;
    background: none;
    backdrop-filter: none;
  }
  .navbar ul li a{
    font-size: 3vw;
  }
  .nav-btn{
    font-size: 3vw;
    padding: 1vw 2vw;
    margin-top: 3vw;
  }
  .navactive{
    left: 0;
  }
  .traicon_logo{
    display: none;
  }
  .container, .menu-icon, .frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20vw;
    height: 20vw;
    position: fixed;
    z-index: 10000;
    right: 0;
    top: 0;
  }
  
  .frame {
    width: 15vw;
    height: 15vw;
  }
  
  .menu-icon {
    width: 7vw;
    height: 7vw;
    position: relative;
    cursor: pointer;
  }
  
  .line-1 {
    background: #fff;
    width: 100%;
    height: 0.7vw;
    border-radius: 5px;
    position: absolute;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .line-2 {
    background: #fff;
    width: 100%;
    height: 0.7vw;
    border-radius: 5px;
    position: absolute;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .line-3 {
    background: #fff;
    width: 100%;
    height: 0.7vw;
    border-radius: 5px;
    position: absolute;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .line-1 {
    transition: 500ms;
    transform: translateY(-2vw);
    animation: animateReverse 600ms ease-in-out;
  }
  
  .line-2 {
    transition: 500ms;
    transform: scale(1);
    opacity: 1;
  }
  
  .line-3 {
    transition: 500ms;
    transform: translateY(2vw);
    animation: animate2Reverse 600ms ease-in-out;
  }
  
  .menu-icon.active {
    animation: rotateIcon 600ms ease-in-out forwards;
  }
  
  .line-1.active {
    animation: animate 600ms ease-in-out forwards;
  }
  
  .line-2.active {
    transform: scale(0);
    opacity: 0;
  }
  
  .line-3.active {
    animation: animate2 600ms linear forwards;
  }
  
  @keyframes animate {
    50% {
      transform: translateY(0px) rotate(0deg);
    }
    100% {
      transform: translateY(0px) rotate(-45deg);
    }
  }
  @keyframes animateReverse {
    0% {
      transform: translateY(0px) rotate(45deg);
    }
    50% {
      transform: translateY(0px) rotate(0deg);
    }
    100% {
      transform: translateY(-3vw) rotate(0deg);
    }
  }
  @keyframes animate2 {
    50% {
      transform: translateY(0px) rotate(0deg);
    }
    100% {
      transform: translateY(0px) rotate(45deg);
    }
  }
  @keyframes animate2Reverse {
    0% {
      transform: translateY(0px) rotate(-45deg);
    }
    50% {
      transform: translateY(0px) rotate(0deg);
    }
    100% {
      transform: translateY(3vw) rotate(0deg);
    }
  }
  @keyframes rotateIcon {
    100% {
      transform: rotate(90deg);
    }
  } 
  /* cover */
  .cover-cont{
    align-items: center;
    gap: 5vw;
    justify-content: center;
    margin-top: 0;
    width: 90%;
  }
  .event-logo {
    width: 55vw;
}
.kn-p-h {
  font-size: 1.8vw;
}
/* #ft25 {
  width: 19vw;
  top: 4vw;
  left: 60vw;
} */
 .ftimg{
  width: 20vw;
 }
 #ft25::before{
  right: 20vw;
 }
.kn-p-container{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.cover-up {
  display: flex;
  align-items: start;
  gap: 4vw;
  width: fit-content;
}
.concluded h1 {
  padding: 0.5vw 3vw;
  padding-top: 1vw;
  border-radius: 1vw;
  font-size: 4vw;
}
.concluded h3 {
  font-family: "montserrat";
  font-size: 3vw;
  font-weight: 900;
}
.concluded {
  z-index: 10;
  right: auto;
  top: auto;
  bottom: 1vw;
  transform: rotate(-25deg);
}
.kn-p-container::before {
  content: "";
  height: 90%;
  width: 1px;
  top: 2.5vw;
  left: 1vw;
}
.kn-p-box {
  width: 18vw;
  height: 10vw;
}

.date-place {
  color: white;
  font-family: "montserrat";
  font-size: 2vw;
  padding: 1vw 0vw;
}
.ed {
  font-size: 2.5vw;
  left: 26vw;
  top: -1vw;
  font-weight: 500;
}
.logo-box{
  position: relative;
}
.bh {
  font-size: 1.8vw;
  padding: 0vw 1.5vw;
  position: absolute;
  left: 11.8vw;
  top: -0.1vw;
}
.countdown{
  gap: 1vw;
}
.countdown .count-box {
  width: 14vw;
  height: 14vw;
  border-radius: 2vw;
}
.countdown .count-dig div {
  width: 2.2vw;
}
.countdown span {
  font-size: 3.7vw;
}
.count-des{
  font-size: 1.6vw;

}
.tagline {
  font-size: 2.5vw;
  line-height: 3vw;
  text-align: center;
}
.tagline span {
  font-size: 3.2vw;
  line-height: 4vw;
}
.cov-btn {
  height: 6.3vw;
  font-size: 2.9vw;
  width: 30vw;
  border-radius: 6vw;
  transition: all 0.2s ease;
}
/* overview */
.overview{
  height: auto;
}
.over-cont{
  flex-direction: column;
  align-items: center;
  gap: 5vw;
}
.over-left, .over-right {
  width: 100%;
  height: 100%;
}
.over-img-box-1 {
  width: 60vw;
  height: 61vw;
}
.over-img-box-2 {
  width: 60vw;
  height: 62vw;
  margin-left: 12vw;
  margin-top: 12vw;
}
.over-h span {
  font-size: 4vw;

}
.over-h {
  font-family: "mortend bold";
  font-size: 5vw;
}
.over-right p {
  font-size: 3vw;
  width: 100%;
  text-align: justify;
}
/* numbers */
.numbers{
  margin-top: 7vw;
}
.numbers-cont{
  width: 90%;
}
.num-h {
  font-size: 5vw;
}

.num-boxes{
  flex-wrap: wrap;
}
.num-box {
  width: 30vw;
  height: 25vw;
}
.num-dig .odometer {
  font-family: "mortend bold";
  font-size: 5vw;
}
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner {
  width: 6vw;
}
.num-plus {
  position: absolute;
  top: -1.5vw;
  right: 7.5vw;
  font-size: 3.5vw;
}
.num-des {
  font-size: 1.5vw;
  line-height: 2vw;
}
.num-box::after {
  height: 5vw;
}
/* whybahrain */
.whythis{
  height: auto;
  padding-top: 7vw;
}
.why-this-cont{
  width: 90%;
  height: auto;
  flex-direction: column;
}
.why-this-left{
  width: 100%;
  height: auto;
}
.why-this-right{
  width: 100%;
  height: 100vw;
  justify-content: center;
}
.whythis-h {
  font-size: 5vw;
  line-height: 5.5vw;
  text-align: center;
}
.why-this-left p {
  color: white;
  font-size: 3vw;
  text-align: justify;
}
.why-num-box {
  width: 28vw;
  height: 20vw;
}
.why-num-dig{
  font-size: 3.5vw;
}
.why-num-des{
  font-size: 3vw;
}
.why-numbers{
  height: auto;
}
.why-this-img-box {
  width: 80%;
  height: 80vw;
  margin-top: 0;
  right: auto;
}
/* who */
.title {
  color: white;
  font-size: 7vw;
}
.who{
  height: auto;
  padding: 7vw 0vw;
}
.who-cont {
  width: 90%;
  height: auto;
}
.attend-box {
  width: 21vw;
  height: 21vw;
  border-radius: 2vw;
}
.attend-des {
  color: white;
  font-family: "Source Sans 3";
  font-size: 2.2vw;
  text-align: center;
  width: 90%;
}
/* job-titles */
.job-titles {
  width: 100%;
  height: auto;
  flex-direction: column;
}
.percent-container {
  width: 85%;
}
.job-circles {
  width: 100%;
  height: 80vw;
}
.job-overlay {
  width: 100%;
  height: 220%;
}
#circle3 {
  width: 35vw;
  height: 35vw;
  right: 7vw;
  top: 4vw;
  box-shadow: -0.5vw -0.5vw 1vw rgba(0, 0, 0, 0.719);
}
#circle2 {
  width: 30vw;
  height: 30vw;
  top: 14vw;
  left: 6vw;
  box-shadow: -0.5vw 0.5vw 1vw rgba(0, 0, 0, 0.719);
}
#circle1 {
  width: 22vw;
  height: 22vw;
  right: 12vw;
  z-index: 2;
  top: 37vw;
  box-shadow: -0.5vw 0.5vw 1vw rgba(0, 0, 0, 0.719);
}
#circle4 {
  width: 15vw;
  height: 15vw;
  bottom: 17vw;
  box-shadow: -0.5vw -0.5vw 1vw rgba(0, 0, 0, 0.719);
}
#circle5 {
  width: 15vw;
  height: 15vw;
  bottom: 11vw;
  left: 17vw;
  box-shadow: -0.5vw -0.5vw 1vw rgba(0, 0, 0, 0.719);
}
.circle-text {
  font-size: 2.2vw;
}
.circle-container:nth-child(3) .circle-text {
  font-size: 4vw;
}
.circle-container:nth-child(2) .circle-text {
  font-size: 3.5vw;
}

.circles-des {
  gap: 1.5vw;
  font-size: 3vw;
}
.circles-des-box{
  gap: 4vw;
}
.cir-des-box {
  width: 3vw;
  height: 3vw;
}

.job {
  width: 85%;
  height: auto;
}
.job .title {
  font-size: 4vw;
  padding: 1vw;
  margin-top: 10vw;
  margin-left: 3vw;
}
.job-box {
  width: 90%;
  height: 80.5vw;
  border-radius: 3vw;
}
.job-item div:nth-child(1) {

  font-size: 2.5vw;
}
.job-item div:nth-child(2) {
  font-family: "mortend regular";
  font-size: 2vw;
}
/* themes */
.themes{
  padding: 10vw 0vw;
}
.themes-cont {
  width: 90%;
}
.theme-carousel .item, .theme-carousel2 .item {
  height: 40vw;
}
.theme-des{
  font-size: 2vw;
  line-height: 3vw;
}
/* summit-cont */
.summit-cont{
  width: 90%;
  height: auto;
}
.sum-container{
  flex-direction: column-reverse;
  height: auto;
}
.summit-right{
  width: 100%;
  height: 80vw;
}
.sum-patch {
  width: 20vw;
  height: 20vw;
}
.sum-img1 {
  width: 50vw;
  height: 50vw;
  right: 10vw;
  top: 3vw;
}
.sum-img2 {
  width: 30vw;
  height: 30vw;
  top: 39vw;
  left: 5vw;
  border: 1.5vw solid #120309;
}
.sum-img3 {
  width: 20vw;
  height: 20vw;
  border: 1.5vw solid #120309;
  bottom: 11vw;
}
.summit-left {
  width: 90%;
}
.summit-box {
  width: 90%;
  height: 42vw;
}
.sum-h {
  font-size: 3vw;
  line-height: 1.5;
}
.sum-icon{
  width: 16%;
}
.sum-cont {
  font-size: 3vw;
}
/* why exhibit */
.why-top{
  flex-direction: column;
}
.why-cont {
  width: 90%;
}
.why-top-left {
  width: 100%;
  height: 90vw;
}
.why-left-stroke {
  width: 60%;

  height: 70vw;
  right: 2vw;
}
.why-main-p {
  color: white;
  font-size: 2.9vw;
}
.ex-l-boxes{
  width: 100%;
  gap: 7vw;
  padding: 7vw 0vw;
}
.ex-l-h {
  font-size: 2.3vw;
}
.ex-l-icon-box svg {

  width: 7vw;
}
.why-carousel .item {
  height: 56vw;
}
.why-box{
  border-radius: 3vw;
  height: 90%;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
  width: 5vw;
  height: 5vw;
}
.owl-carousel .owl-nav button.owl-next span, .owl-carousel .owl-nav button.owl-prev span {
  width: 5vw;
  height: 5vw;
  font-size: 3vw;
}
.owl-carousel .owl-nav button.owl-prev {
  left: -3vw;
}
.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  right: -3vw;
  top: 38%;
}
.why-ex-h {
  font-size: 3.5vw;
}
.why-ex-des {
  font-size: 3vw;
}
/* speakers */
.ps-carousel .item,.ps-carousel2 .item{
display: flex;
align-items: center;
justify-content: center;
}
.speaker-box {
  width: 40vw;
  height: 60vw;
}
.speakers-boxes{
  width: 90%;
  min-height: 50vh;
}
.speakers{
  min-height: 60vh;
  padding: 7vw 0vw;
}
.speaker-img-box {
  width: 35vw;
  height: 35vw;
}
.spk-img{
  transform: translateY(1vw);
}
.spk-cont {
  width: 100%;
  min-height: 20vw;
}
.pspk .spk-img, .pspk .spk-img2 {
  transform: translateY(8vw);
}
.spk-name{
  font-size: 3vw;
}
.spk-company{
  font-size: 2.5vw;
  line-height: 2.7vw;
}
.spk-job{
  font-size: 2.5vw;
  line-height: 2.7vw;
}
.past-title {
  font-size: 4vw;
  padding: 4vw 0 2vw;
}
.pspk{
  align-items: start;
  min-height: auto;
}
.speaker-box::after {
  width: 10vw;
  height: 10vw;

  right: -6vw;
  bottom: -6vw;
}
/* sponsors */
.sponsors{
  min-height: 10vh;
  padding: 7vw 0vw;
}
.sponsors-cont {
  width: 90%;
  min-height: 10vh;
}
.spon-h {
  font-size: 3vw;
  padding: 1.4vw 2vw;
  margin-top: 8vw;
}
.spon-boxes{
  margin-top: 6vw;
}
.platinum .spon-box {
  width: 48vw;
  height: 27vw;
}
.community .spon-box{
  width: 26vw;
  height: 15vw;
}
.associate .spon-box{
  width: 24.5vw;
  height: 15vw;
}
.sponsBox {
  width: 100%;
  height: 25vw;
  border-radius: 3vw;
}
.spon-box {
  width: 30vw;
  height: 17vw;
}
.gold .spon-box {
  width: 43vw;
  height: 26vw;
}
.silver .spon-box {
  width: 39vw;
  height: 22vw;
}
.media .spon-box {
  width: 21vw;
  height: 12vw;
}
/* agenda */
.agenda{
  height: 170vw;
}
.agenda-olay{
  width: 100%;
  height: 170vw;
}
.agenda-cont {
  width: 90%;
  height: auto;
}
.agenda-box:nth-child(2){
  display: none;
}
.agenda-box{
  width: 100%;
  height: 150vw;
}

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

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

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

}

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

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

.modalContents {
  width: 80%;
}

.inputs input::placeholder {
  font-family: "Poppins";
  font-size: 1.5vw;
  transform: translate(0.3vw, 0vw);
}
form{
  width: 100%;
}
.form-heading {
  font-size: 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;
}
}