
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    box-sizing: border-box;
}
body{
    background: #0F0E2E;
    font-family: inter;
}
html {
  scroll-behavior: smooth;
}
.d-flex{
    display: flex;
}
.justify-content-between{
    justify-content: space-between;
}
.align-items-center{
    align-items: center;
}
.gap-10{
    gap: 10px;
}
.mt-10{
    margin-top: 10px;
}
.my-10{
    margin: 10px 0;
}
header{
    /* background: url(img/banner.png) no-repeat;
    background-size: cover;
    padding: 40px 0;
    height: 100vh; */
    background-position: center;
    position: relative;
}
header img{
    width: 100%;
}
.iif-container{
    max-width: 1200px;
    margin: 0 auto;
}
.logo{
    text-align: center;
}
.logo img{
    max-width: 350px;
}
.bnr-cap{
    font-size: 45px;
    color: #fff;
    font-family: inter;
    text-align: center;
    margin-top: 40px;
}
.gld{
    background: -webkit-linear-gradient( right,#f57c00, #FFF778,#f57c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 48px;
    font-weight: 800;
    margin-top: 10px;
}
.awrd{
    position: absolute;
    bottom: 6%;
    right: 10%;
}
.awrd img{
    max-width: 400px;
}
.lwr-cap{
    position: absolute;
    font-size: 35px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,0);
    font-family: inter;
    color: #fff;
    min-width: max-content;
    text-align: center;
}
.lwr-cap span{
    font-size: 45px;
    display: block;
    font-weight: 800;
}
.ticket{
    margin:0 0 40px;
    background-image: url(img/mnt-bg.png);
    position: relative;
    overflow: hidden;
    text-align: center;
    background-size: contain;
}
.tckt{
    position: relative;
    z-index: 2;
    max-width: 400px;
}

.tick-cap{
    position: relative;
    font-size: 20px;
    font-style: italic;
    color: #fff;
    z-index: 2;
    margin-top: 10px;
}
.mnbg{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    max-width: 100%;
    height: 100%;
}
.mnbg img{
width: 100%;
opacity: .5;
object-fit: contain;
height: 80%;
}
.expbtn{
    background: #FF6F00;
    border-radius: 10px;
    padding: 15px 40px;
    color: #fff;
    font-size: 30px;
    width: fit-content;
    margin: auto;
    cursor: pointer;
    text-decoration: none;
    display: block;
}
.expbtn:hover{
    background: #b75205; 
}
.faqbx{
    border: 1px solid #FDF274;
    border-radius: 16px;
    background: #0B0142;
    padding: 20px;
    margin: 60px 0;
}
.acbx{
    padding-bottom: 30px;
    border-bottom: 1px solid #FDF274;
    margin-bottom: 30px;
}
.acbx:last-child{
    border-bottom: 0;
    margin-bottom: 0;

}
.accordion__item__header{
color: #fff;
font-size: 25px;
font-weight: 500;
margin-left: 30px;
position: relative;
}
.acc-cont{
    color: #fff;
    margin-top: 10px;
    margin-left: 25px;
}
.accordion__item__header:after {
    content: '+'; /* Unicode character for "plus" sign (+) */
    font-size: 25px;
    color: #FDF274;
    position: absolute;
    left: -30px;
    top: 0  ;
  }
  
  .accordion__item__header.active:after {
    content: "\2212"; /* Unicode character for "minus" sign (-) */
  }
  footer{
    background: #040318;
    padding: 30px;
    text-align: center;
    color: #fff;
  }
  .acc-cont ul{
    margin: 0;
    padding-left: 20px;
  }
 
  .acc-cont ul li{
    margin-top: 15px;
    font-weight: 300;
  }
  .mob{
    display: none;
  }
  @media screen and (max-width:1200px){
    .iif-container{
        max-width: 90%;
    }
  }


  @media screen and (max-width:425px) {
    .desk{
        display: none;
    }
	.mob{
    display: block;
  }
    .tckt{
        max-width: 90%;
    }
    .iif-container{
        max-width: 95%;
    }
    .accordion__item__header{
        font-size: 22px;
    }
    .expbtn{
        font-size: 20px;
    }
  }
  .acc-cont a{
   
    color: inherit;
  }