*,
*::after,
*::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}
:root{
    --text-color:#fff;
}
body{
    background-color: #09132F;
    color: var(--text-color);
    font-weight: 300;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #09132F; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(129,13,158,1) 100%);
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #600975; 
  }





header{
    position: absolute;
    top: 32px;
    width: 100%;
}
header nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: var(--text-color);
}
header nav ul{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 18px;
    font-weight: 500;
}

.primary-btn{
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    position: relative;
    /* min-width: 201px; */
    background: linear-gradient(45deg,rgba(9,19,47,25%),rgba(9,19,47,25%));
    outline: none;
    border: 0;
    color: var(--text-color);
    transition: all 0.2s ease-in-out;
    padding: 0 40px;
}

.primary-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px; 
    padding: 1px; 
    background:linear-gradient(45deg,#fff,#810D9E); 
    -webkit-mask: 
       linear-gradient(#fff 0 0) content-box, 
       linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude; 
}

.primary-btn:hover{
    background: #810D9E; 
}

#hero{
    background: url('/assets/imgs/hero.png') no-repeat;
    background-size: cover;
    min-height: 100vh;
    padding-top: 100px;
}

#hero .content{
    max-width: 636px;
    color: var(--text-color);
    margin-top: 150px;
}
#hero .content h1{
    font-size: 56px;
    font-weight: 700;
    line-height: 1.4;
}
#hero .content p{
    font-size: 24px;
    font-weight: 500;
}
#hero .content > span{
    font-size: 20px;
    display: block;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    gap: 16px;
    align-items: center;
}

a{
    color: var(--text-color) !important;
    text-decoration: none;
    position: relative;
}
.custom-link::after {
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    -moz-transition: opacity 0.3s, -moz-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    transform: translateY(10px);
  }
  
  .custom-link.active::after, 
  .custom-link:hover::after {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
  }
  

#statistics{
    background: url('/assets/imgs/statistics.svg') no-repeat;
    background-size: cover;
    color: var(--text-color);
    height: 290px;
    border-radius: 24px;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    position: relative;
    top: -100px;
}
#statistics .row{
    padding-inline-start: 125px;    
}
.statistic-item span:first-of-type{
    font-size: 48px;
    font-weight: 700;
    display: block;
}
.statistic-item span:last-of-type{
    font-size: 24px;
    font-weight: 500;
    display: block;
    max-width: 250px;
}

footer .container{
    justify-content: space-between;
    display: flex;
    align-items: center;
    padding-block: 56px;
}
footer .logo-wrapper{
    display: flex;
    flex-direction: column;
    gap: 32px;
}
footer .logo-wrapper img{
    width: 130px;
}
footer .social-icons{
    display: flex;
    gap: 38px;
    align-items: center;
}

.navbar-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0 0;
    background: #09132F;
    transition: all 0.5s ease-in-out;
    z-index: 9;
}


.navbar-sticky .bordered{
    height: 2px;
    width: 100%;
    margin-top: 20px;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(129,13,158,1) 100%);
}

h2{
    font-weight: 500;
    font-size: 48px;
    margin-bottom: 36px;
}
#about{
    text-align: center;
    margin-bottom: 125px;
}
#about p{
    max-width: 982px;
    font-size: 24px;
    margin-inline: auto;
    margin-bottom: 36px;
}
#about ul{ 
    margin-inline: auto;
    width: fit-content;
}
#about li{
    margin-inline: auto;
    width: fit-content;
}
#about li{
    font-size: 24px;
}
.video-wrapper{
    position: relative;
}
.video-wrapper svg{
    position: absolute;
    top: 50%;
    border-radius: 100%;
    left: 50%;
    width: 68px;
    height: 68px;
    padding: 14px;
    transform: translate(-50%,-50%);
    cursor: pointer;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        background-color: rgba(255, 255, 255, 0.1);
    }
    100% {
        background-color:  rgba(255, 255, 255, 0.5);
    }
  }
  @-webkit-keyframes pulse-animation {
    0% {
        background-color:  rgba(255, 255, 255, 0.1);
    }
    100% {
        background-color:  rgba(255, 255, 255, 0.5);
    }
  }

  #expectation,
  #journey,
  #applying,
  #why-attend,
  #faqs,
  #agenda,
  #pre-register,
  #investors{
    padding-block: 100px;
  }

  #expectation h2,
  #journey h2,
  #why-attend h2,
  #agenda h2,
  #investors h2{
    max-width: 680px;
    font-weight: 700;
    line-height: 1.4;
  }

  #about h2,
  #pre-register h2,
  #faqs h2,
  #applying h2{
    font-weight: 700;
    line-height: 1.4;
  }
  #expectation p{
    max-width: 530px;
    font-size: 24px;
    margin-top: 12px;
  }

  #journey .journey-item{
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 100%;
    overflow: hidden;
  }

  .journey-item img{
    max-width: 100% !important;
  }
  #journey .journey-item h4{
    font-weight: 600;
    font-size: 32px;
  }
  
  #journey .journey-item p,
  #journey .journey-item ul
  {
    font-size: 20px;
  }
  #journey .journey-item ul li{
    margin-bottom: 18px;
  }
  #journey .journey-item span{
    font-weight: 500;
    font-size: 16px;
  }
  #journey .journey-item span span{
    font-size: 24px;
    margin-inline-start: 8px;
  }

#applying,
#pre-register{
    background: rgb(1,19,40);
    background: linear-gradient(180deg, rgba(1,19,40,1) 0%, rgba(92,10,94,1) 89%, rgba(92,10,94,1) 100%);
}
#applying .item p,
#why-attend .item p{
    margin-top: 12px;
    font-size: 24px;
    max-width: 395px;
}

#investors .item{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
#investors .item img{
    max-width: 152px;
    margin-bottom: 20px;
}
#investors .item span:first-of-type{
    font-size: 24px;
    font-weight: 600;
}
#investors .item span:last-of-type{
    font-size: 20px;
}

#agenda h2{
    max-width: 300px;
    line-height: 1.4;
}
#agenda .item{
    position: relative;
    min-height: 468px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 5px;
    justify-content: flex-end;
}
#agenda .item img{
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 16px;
    width: 100%;
    z-index: -1;
}
#agenda .item::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 16px;
    height: 100%;
    background: linear-gradient(180deg, rgba(129,13,158,0) 0%, rgba(129,13,158,1) 100%);
}
#agenda .item *:not(img){
    z-index: 2;
}
#agenda .item .title{
    font-size: 32px;
    font-weight: 600;
}

#agenda .item ul{
    font-size: 20px;
    min-height: 130px;
    margin-bottom: 0;
}
#agenda .item ul li{
    margin-bottom: 10px;
}
#agenda .item .date{
    font-size: 20px;
    font-weight:400;
}
#agenda .item .date span{
    font-size: 40px;
    font-weight: 700;
    margin-inline-end: 10px;
}
#agenda .item .info{
    font-size: 20px;
    font-weight: 300;
    display: flex;
    gap: 10px;
    align-items: center;
}
#faqs h2{
    text-align: center;
}
.accordion{
    max-width: 984px;
    margin-inline: auto;
}
.accordion-item, .accordion-button{
    background-color: transparent !important;
    color: var(--text-color) !important;
}
.accordion-item{
    margin-bottom: 20px;
}
.accordion-body{
    color: #BCBCBC !important;
    font-size: 24px;
    max-width: 90%;
    font-weight: 300;

}
.accordion-button::after{
    display: none;
}

.accordion-button{
    display: flex;
    justify-content: space-between;
    font-size: 30px;
    font-weight: 400;
}
.accordion-button:not(.collapsed) svg{
    transform: rotate(180deg) !important;
}
#pre-register h2{
    text-align: center;
}
.form-wrapper{
    background-color: rgba(121, 121, 121,23%);
    padding: 40px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
label{
    font-size: 18px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}
input[type='text'], select, textarea, .form-item{
    width: 100%;
    background-color: transparent;
    color: #fff;
}

input[type='text'], select, textarea{
    border-radius: 16px;
    outline: none;
    padding: 15px 16px;
    border: 1px solid #fff;
}
.form-wrapper button{
    padding: 20px 40px;
    border-radius: 16px;
    background-color: #810D9E;
    color: #fff;
    outline: none;
    border: 0;
}

.form-wrapper button:hover{
    background-color: #730b8d;
}
.input-group-text{
    border-radius: 16px;
    color: #fff;
    background-color: transparent !important;
}
option{
    color: #000;
}

.required label{
    position: relative;
    width: fit-content;
}
.required label::after{
    position: absolute;
    top: 0;
    right: -15px;
    content: '*';
    color: #c00606;
}
.error-feedback{
    background-color:#ce0a0a7d ;
    padding: 10px 20px;
    border-radius: 16px;
    width: fit-content;
    margin-top: 8px;
    display: none;
}
.error-feedback.show{
    display: block;
}




@media (max-width:1400px){
    header nav img{
        max-width: 100px;
    }
    header nav ul{
        font-size: 16px !important;
    }
    #hero .content{
        margin-top: 50px;
    }
    #hero .content h1{
        font-size: 48px !important;
    }
    
    #hero .content p{
        font-size: 16px !important;
    }
    #hero .content > span{
        font-size: 14px !important;
    }
    .primary-btn{
        height: 50px;
        padding: 0 25px;
    }
    
    #statistics{
        height: 200px;
        top: -125px;
    }

    .statistic-item span:first-of-type{
        font-size: 42px;
    }
    .statistic-item span:last-of-type{
        font-size: 18px;
    }
    
    footer .container{
        padding-block: 50px;
    }
        
    h2{
        font-size: 38px !important;
        margin-bottom: 36px;
    }
    #about{
        margin-bottom: 50px;
    }

    #about p{
        font-size: 16px !important;
        margin-bottom: 36px;
    }
    #about li{
        font-size: 16px;
    }
 

      #expectation,
      #journey,
      #applying,
      #why-attend,
      #faqs,
      #agenda,
      #pre-register,
      #investors{
        padding-block: 80px !important;
      }
    
      .video-wrapper{
        max-width: 60%;
        margin: auto;
      }
    
      #expectation p{
        font-size: 16px !important;
      }
    
      #journey .journey-item{
        display: flex;
        flex-direction: column;
        gap: 24px;
        max-width: 100%;
        overflow: hidden;
      }
    
      .journey-item img{
        max-width: 100% !important;
      }
      #journey .journey-item h4{
        font-size: 32px;
      }
      
      #journey .journey-item p,
      #journey .journey-item ul
      {
        font-size: 16px !important;
      }

      #journey .journey-item ul li{
        margin-bottom: 18px;
      }

      #journey .journey-item span{
        font-size: 16px;
      }

      #journey .journey-item span span{
        font-size: 24px;
      }
    

    #applying .item p,
    #why-attend .item p{
        font-size: 16px !important;
    }
    
    #investors .item img{
        max-width: 152px;
    }
    #investors .item span:first-of-type{
        font-size: 24px;
    }
    #investors .item span:last-of-type{
        font-size: 20px;
    }
    
    #agenda .item{
        min-height: 408px;
        padding: 20px;
    }
     #agenda .item img{
        height: 100%;
     }

    #agenda .item .title{
        font-size: 28px !important;
    }
    
    #agenda .item ul{
        font-size: 16px !important;
        min-height: 130px;
    }

    #agenda .item .date{
        font-size: 16px !important;
    }
    #agenda .item .date span{
        font-size: 30px;
    }
    #agenda .item .info{
        font-size: 14px;
    }

    .accordion-body{
        font-size: 16px !important;
    }
  
    .accordion-button{
        font-size: 22px;
    }
  
    .form-wrapper{
        padding: 30px;
        gap: 30px;
    }
    label{
        font-size: 16px !important;
    }
      
    input[type='text'], select, textarea{
        padding: 12px 16px;
        font-size: 14px !important;
    }
    .form-wrapper button{
        padding: 12px 40px;
    }
        
    .error-feedback{
        font-size: 11px !important;
    }
    #expectation img,
    #applying img,
    #why-attend img{
        max-width: 100px;
    }
 
}

@media (min-width:1200px){
    header nav img{
        max-width: 100px;
    }
    header nav ul{
        font-size: 16px !important;
    }
    #hero .content{
        margin-top: 50px;
    }
    #hero .content h1{
        font-size: 48px !important;
    }
    
    #hero .content p{
        font-size: 16px !important;
    }
    #hero .content > span{
        font-size: 14px !important;
    }
    .primary-btn{
        height: 50px;
        padding: 0 25px;
    }
    
    #statistics{
        height: 200px;
        top: -25px;
    }

    .statistic-item span:first-of-type{
        font-size: 42px;
    }
    .statistic-item span:last-of-type{
        font-size: 18px;
    }
    
    footer .container{
        padding-block: 50px;
    }
        
    h2{
        font-size: 38px !important;
        margin-bottom: 36px;
    }
    #about{
        margin-bottom: 50px;
        margin-top: 75px;
    }

    #about p{
        font-size: 16px !important;
        margin-bottom: 36px;
    }
    #about li{
        font-size: 16px;
    }
 

      #expectation,
      #journey,
      #applying,
      #why-attend,
      #faqs,
      #agenda,
      #pre-register,
      #investors{
        padding-block: 80px !important;
      }
      #journey{
        padding-bottom: 0 !important;
      }
    
      .video-wrapper{
        max-width: 60%;
        margin: auto;
      }
    
      #expectation p{
        font-size: 16px !important;
      }
    
      #journey .journey-item{
        display: flex;
        flex-direction: column;
        gap: 24px;
        max-width: 100%;
        overflow: hidden;
      }
    
      .journey-item img{
        max-width: 100% !important;
      }
      #journey .journey-item h4{
        font-size: 32px;
      }
      
      #journey .journey-item p,
      #journey .journey-item ul
      {
        font-size: 16px !important;
      }

      #journey .journey-item ul li{
        margin-bottom: 18px;
      }

      #journey .journey-item span{
        font-size: 16px;
      }

      #journey .journey-item span span{
        font-size: 24px;
      }
    

    #applying .item p,
    #why-attend .item p{
        font-size: 16px !important;
    }
    
    #investors .item img{
        max-width: 152px;
    }
    #investors .item span:first-of-type{
        font-size: 24px;
    }
    #investors .item span:last-of-type{
        font-size: 20px;
    }
    
    #agenda .item{
        min-height: 380px;
        padding: 20px;
    }
     #agenda .item img{
        height: 100%;
     }

    #agenda .item .title{
        font-size: 24px !important;
    }
    
    #agenda .item ul{
        font-size: 15px !important;
        min-height: 130px;
    }

    #agenda .item .date{
        font-size: 15px !important;
    }
    #agenda .item .date span{
        font-size: 30px;
    }
    #agenda .item .info{
        font-size: 13px;
    }

    .accordion-body{
        font-size: 16px !important;
        max-width: 100%;

    }
  
    .accordion-button{
        font-size: 22px;
    }
  
    .form-wrapper{
        padding: 30px;
        gap: 30px;
    }
    label{
        font-size: 16px !important;
    }
      
    input[type='text'], select, textarea{
        padding: 12px 16px;
        font-size: 14px !important;
    }
    .form-wrapper button{
        padding: 12px 40px;
    }
        
    .error-feedback{
        font-size: 11px !important;
    }
    #expectation img,
    #applying img,
    #why-attend img{
        max-width: 100px;
    }
 
}


@media (min-width:992px){
    header nav img{
        max-width: 100px;
    }
    header nav ul{
        font-size: 14px !important;
    }
    #hero .content{
        margin-top: 50px;
    }
    #hero .content h1{
        font-size: 40px !important;
    }
    
    #hero .content p{
        font-size: 14px !important;
    }
    #hero .content > span{
        font-size: 13px !important;
    }
    .primary-btn{
        height: 46px;
        padding: 0 25px;
    }
    
    #statistics{
        height: 175px;
        top: -125px;
    }

    .statistic-item span:first-of-type{
        font-size: 32px;
    }
    .statistic-item span:last-of-type{
        font-size: 16px;
    }
    
    footer .container{
        padding-block: 40px;
    }
        
    h2{
        font-size: 32px !important;
        margin-bottom: 36px;
    }
    #about{
        margin-bottom: 10px;
        margin-top: 25px;
    }

    #about p{
        font-size: 14px !important;
        margin-bottom: 36px;
    }
    #about li{
        font-size: 14px;
    }
 
      #expectation,
      #journey,
      #applying,
      #why-attend,
      #faqs,
      #agenda,
      #pre-register,
      #investors{
        padding-block: 60px !important;
      }
      #journey{
        padding-bottom: 0 !important;
      }
    
      .video-wrapper{
        max-width: 60%;
        margin: auto;
      }
    
      #expectation p{
        font-size: 14px !important;
      }
    
      #journey .journey-item{
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
        overflow: hidden;
      }
    
      .journey-item img{
        max-width: 100% !important;
      }
      #journey .journey-item h4{
        font-size: 28px;
      }
      
      #journey .journey-item p,
      #journey .journey-item ul
      {
        font-size: 14px !important;
      }

      #journey .journey-item ul li{
        margin-bottom: 12px;
      }

      #journey .journey-item span{
        font-size: 14px;
      }

      #journey .journey-item span span{
        font-size: 20px;
      }
    

    #applying .item p,
    #why-attend .item p{
        font-size: 14px !important;
    }
    
    #investors .item img{
        max-width: 152px;
    }
    #investors .item span:first-of-type{
        font-size: 18px;
    }
    #investors .item span:last-of-type{
        font-size: 14px;
    }
    #agenda h2{
        max-width: none;
    }
    #agenda .item{
        min-height: 320px;
        padding: 20px;
    }
     #agenda .item img{
        height: 100%;
        object-fit: cover;
     }

    #agenda .item .title{
        font-size: 22px !important;
    }
    
    #agenda .item ul{
        font-size: 14px !important;
        min-height: 100px;
    }

    #agenda .item .date{
        font-size: 14px !important;
    }
    #agenda .item .date span{
        font-size: 26px;
    }
    #agenda .item .info{
        font-size: 13px;
    }

    .accordion-body{
        font-size: 14px !important;
        max-width: 100%;
    }
  
    .accordion-button{
        font-size: 18px;
    }
  
    .form-wrapper{
        padding: 25px;
        gap: 25px;
    }
    label{
        font-size: 13px !important;
    }
      
    input[type='text'], select, textarea{
        padding: 10px 16px;
        font-size: 13px !important;
    }
    .form-wrapper button{
        padding: 12px 40px;
    }
        
    .error-feedback{
        font-size: 10px !important;
    }
    #expectation img,
    #applying img,
    #why-attend img{
        max-width: 85px;
    }
 
}


@media (max-width:768px){
    header nav img{
        max-width: 100px;
    }
   
    #hero .content{
        margin-top: 50px;
    }
    #hero .content h1{
        font-size: 38px !important;
    }
    
    #hero .content p{
        font-size: 14px !important;
    }
    #hero .content > span{
        font-size: 13px !important;
    }
    .primary-btn{
        height: 46px;
        padding: 0 20px;
    }
    
    #statistics{
        height: auto;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        top: -50px;
    }
    .statistic-item{
        margin-bottom: 60px;
        width: 50%;
    }
     
    #statistics .row{
        padding:  60px 0 0 !important;
        padding-inline-start: 50px !important;
    } 

    .statistic-item span:first-of-type{
        font-size: 32px;
    }
    .statistic-item span:last-of-type{
        font-size: 16px;
    }
    
    footer .container{
        padding-block: 40px;
    }
    footer img{
        max-width: 100px;
    }
    footer span{
        font-size: 14px !important;
    }
        
    h2{
        font-size: 28px !important;
        margin-bottom: 36px;
    }
    #about{
        margin-bottom: 10px;
        margin-top: 25px;
    }

    #about p{
        font-size: 14px !important;
        margin-bottom: 36px;
    }
    #about li{
        font-size: 14px !important;
    }
 
      #expectation,
      #journey,
      #applying,
      #why-attend,
      #faqs,
      #agenda,
      #pre-register,
      #investors{
        padding-block: 50px !important;
      }
      #journey{
        padding-bottom: 0 !important;
      }
    
      .video-wrapper{
        max-width: 80%;
        margin: auto;
      }
    
      #expectation p{
        font-size: 14px !important;
      }
    
      #journey .journey-item{
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
        overflow: hidden;
      }
    
      .journey-item img{
        max-width: 100% !important;
      }
      #journey .journey-item h4{
        font-size: 26px;
      }
      
      #journey .journey-item p,
      #journey .journey-item ul
      {
        font-size: 14px !important;
      }

      #journey .journey-item ul li{
        margin-bottom: 12px;
      }

      #journey .journey-item span{
        font-size: 14px;
      }

      #journey .journey-item span span{
        font-size: 20px;
      }
    
    #applying .item,
    #why-attend .item{
        margin-bottom: 20px;
    }
    #applying .item p,
    #why-attend .item p{
        font-size: 14px !important;
    }
    
    #investors .item img{
        max-width: 152px;
    }
    #investors .item span:first-of-type{
        font-size: 18px;
    }
    #investors .item span:last-of-type{
        font-size: 14px;
    }
    #agenda h2{
        max-width: none;
    }
    #agenda .item{
        min-height: 320px;
        padding: 20px;
        margin-bottom: 20px;
    }
     #agenda .item img{
        height: 100%;
        object-fit: cover;
        object-position: center;
     }

    #agenda .item .title{
        font-size: 22px !important;
    }
    
    #agenda .item ul{
        font-size: 14px !important;
        min-height: 100px;
    }

    #agenda .item .date{
        font-size: 14px !important;
    }
    #agenda .item .date span{
        font-size: 26px;
    }
    #agenda .item .info{
        font-size: 13px;
    }

    .accordion-body{
        font-size: 14px !important;
        max-width: 100%;
    }
  
    .accordion-button{
        font-size: 18px;
    }
  
    .form-wrapper{
        padding: 25px;
        gap: 25px;
    }
    label{
        font-size: 13px !important;
    }
      
    input[type='text'], select, textarea{
        padding: 10px 16px;
        font-size: 13px !important;
    }
    .form-wrapper button{
        padding: 10px 40px;
        font-size: 14px !important;
    }
        
    .error-feedback{
        font-size: 10px !important;
    }
    #expectation img,
    #applying img,
    #why-attend img{
        max-width: 80px;
    }
 
}

@media (max-width:576px){
    .container{
        padding-inline: 25px !important;
    }
    header nav img{
        max-width: 100px;
    }
   
    #hero .content{
        margin-top: 50px;
    }
    #hero .content h1{
        font-size: 38px !important;
    }
    
    #hero .content p{
        font-size: 14px !important;
    }
    #hero .content > span{
        font-size: 13px !important;
    }
    .primary-btn{
        height: 46px;
        padding: 0 20px;
        font-size: 14px !important;
    }
    
    #statistics{
        height: auto;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        top: -145px;
        background-position: 20%;
        width: 90%;
    }
    .statistic-item{
        margin-bottom: 50px;
        width: 50%;
    }
    
    #statistics .row{
        padding:  50px 0 0 !important;
        padding-inline-start: 15px !important;
    } 

    .statistic-item span:first-of-type{
        font-size: 32px;
    }
    .statistic-item span:last-of-type{
        font-size: 16px;
    }
    
    footer .container{
        padding-block: 40px;
    }
    footer img{
        max-width: 100px;
    }
    footer span{
        font-size: 14px !important;
    }
        
    h2{
        font-size: 28px !important;
        margin-bottom: 36px;
    }
    #applying h2{
        margin-bottom: 36px !important;
    }
    #about{
        margin-bottom: 10px;
        margin-top: -130px;
    }

    #about p{
        font-size: 14px !important;
        margin-bottom: 36px;
    }
    #about li{
        font-size: 14px !important;
    }
 
      #expectation,
      #journey,
      #applying,
      #why-attend,
      #faqs,
      #agenda,
      #pre-register,
      #investors{
        padding-block: 50px !important;
      }
      #journey{
        padding-bottom: 0 !important;
      }
    
      .video-wrapper{
        max-width: 80%;
        margin: auto;
      }
    
      #expectation p{
        font-size: 14px !important;
      }
    
      #journey .journey-item{
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
        overflow: hidden;
      }
    
      .journey-item img{
        max-width: 100% !important;
      }
      #journey .journey-item h4{
        font-size: 26px;
      }
      
      #journey .journey-item p,
      #journey .journey-item ul
      {
        font-size: 14px !important;
      }

      #journey .journey-item ul li{
        margin-bottom: 12px;
      }

      #journey .journey-item span{
        font-size: 14px;
      }

      #journey .journey-item span span{
        font-size: 20px;
      }
    
    #applying .item,
    #why-attend .item{
        margin-bottom: 20px;
    }
    #applying .item p,
    #why-attend .item p{
        font-size: 14px !important;
    }
    
    #investors .item img{
        max-width: 152px;
    }
    #investors .item span:first-of-type{
        font-size: 18px;
    }
    #investors .item span:last-of-type{
        font-size: 14px;
    }
    #agenda h2{
        max-width: none;
    }
    #agenda .item{
        min-height: 320px;
        padding: 20px;
        margin-bottom: 20px;
    }
     #agenda .item img{
        height: 100%;
        object-fit: cover;
        object-position: center;
     }

    #agenda .item .title{
        font-size: 22px !important;
    }
    
    #agenda .item ul{
        font-size: 14px !important;
        min-height: 100px;
    }

    #agenda .item .date{
        font-size: 14px !important;
    }
    #agenda .item .date span{
        font-size: 26px;
    }
    #agenda .item .info{
        font-size: 13px;
    }

    .accordion-body{
        font-size: 14px !important;
        max-width: 100%;
    }
  
    .accordion-button{
        font-size: 16px;
    }
  
    .form-wrapper{
        padding: 25px;
        gap: 25px;
    }
    label{
        font-size: 13px !important;
    }
      
    input[type='text'], select, textarea{
        padding: 10px 16px;
        font-size: 13px !important;
    }
    .form-wrapper button{
        padding: 10px 40px;
        font-size: 14px !important;
    }
        
    .error-feedback{
        font-size: 10px !important;
    }
    #expectation img,
    #applying img,
    #why-attend img{
        max-width: 80px;
    }
 
}

#journey img{
    max-width: 100%;
}
.form-check{
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: center;
}
.form-check label{
    margin-bottom: 0;
    position: relative;
    top: 2px;
    line-height: 2;
}
.form-check-input:checked{
    background-color:#810D9E ;
    border-color:#810D9E ;
}

.sector-invested-in-item,
.amount-item,
.current-investments-item{
    display: none;
}

.iti--inline-dropdown{
    width:100%
}
.iti__selected-country{
    background: transparent !important;
    border-right: 1px solid !important;
}
.iti__country-list,
.iti__search-input,
.iti__dropdown-content{
    background-color: #09132F !important;
}
.iti__dropdown-content{
    width: 320px;
}
.iti__search-input{
    border-left: 0 !important;
    border-right: 0 !important;
    border-top: 0 !important;
    border-radius: 0 !important;
}

.website,
.website2{
    color: #de6cfb !important;
}