 /* Popup styling */
 .popup-overlay {
  display: none ; /* Hidden by default */
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999 !important;
}

.popup {
  display: none; /* Hidden by default */
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 90% !important;
  max-width: 500px !important;
  background: #fff !important;
  padding: 20px !important;
  box-shadow: 0 5px 15px rgba(0,0,0,.5) !important;
  z-index: 1000 !important;
  border-radius: 8px !important;
}

.label{
  color: #000000 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  padding-top: 10px !important;
  margin-bottom: 0%;
  display: flex; 
}

.custom-select-box {
  position: relative;
  display: inline-block;
  width: 100%;
}
.custom-selected-option {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 2px solid #CDCDCD;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
}
.custom-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  background-color: #ffffff;
  border: 2px solid #CDCDCD;
  border-top: none;
  z-index: 10;
}
.custom-options.show {
  display: block;
}
.custom-options ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.custom-options li {
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border: 1px solid #f8f5f5;
}
.custom-options li:hover {
  background-color: #FFEAE1;
}
.custom-search-box {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: none;
  outline: none;
  border: 1px solid #f8f5f5;
}
.custom-options .search-container {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  border: 1px solid #f8f5f5;
}

.input-error-msg {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 160%;
    letter-spacing: 0.02em;
    color: red;
  }
  
   
  .input-api-success-msg{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0.02em;
    color: green;
    background-color: #d1ffd7;
    border-radius: 3px;
  }
   
  .input-api-error-msg{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0.02em;
    color: red;
    background-color: #ffebee;
    border-radius: 3px;
  }
   
  

    .contact-number {
    font-style: normal;
    font-weight: 400;
    /* font-size: 16px; */
    font-size: clamp(0.7rem, 0.95vw, 0.95rem);
    line-height: 160%;
    letter-spacing: 0.02em;
    color: #323232;
  }
   
  .send-mail-btn {
    all: unset;
    cursor: pointer;
    border: 1.5px solid #f5b300;
    border-radius: 42px;
    width: 200px;
    height: 61px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    font-size: clamp(0.7rem, 0.95vw, 0.95rem);
    line-height: 20px;
    color: #323232;
  }
  
  /* phone-number */
  :root {
    --primary: #111;
    --secondary: rgb(231, 230, 223);
  }	
  
  /* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  } */
  
  /* body {    
    font-family: sans-serif;
    background-color: var(--secondary);
  } */
  .select-box {
    position: relative;
  }
  
  /* .select-box input:focus {
    border: .1rem solid var(--primary);
  } */
  
  .code{
    line-height: 1.5;
    color:#ccc;
    font: "poppins";
  }
  .selected-option {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .selected-option div{
    position: relative;
    width: 10rem;
    padding: 0 2.8rem 0 .5rem;
    text-align: center;
    cursor: pointer;
  }
  
  .selected-option div::after{
    position: absolute;
    content: "";
    right: .8rem;
    top: 35%;
    transform: translateY(-50%) rotate(45deg);  
    width: .7rem;
    height: .7rem;
    border-right: .12rem solid  #ccc;
    border-bottom: .12rem solid  #ccc;
  
    transition: .5s;
  }
  
  .selected-option div.active::after{
    transform: translateY(-5%) rotate(225deg);
  }
  
  .select-box .options {
    position: absolute;
    top: 3rem;
    
    width: 100%;
    background-color: #fff;
    border-radius: .5rem;
    z-index: 1;
    display: none;
  }
  
  .select-box .options.active {
    display: block;
  }
  
  .select-box .options::before {
    position: absolute;
    content: "";
    left: 1rem;
    top: -1.2rem;
  
    width: 0;
    height: 0;
    border: .6rem solid transparent;
    border-bottom-color: #e2e2e2;
  }
  
  input.search-box {
    width: 440px;
    background-color: #ffffff;
    color:  var(--primary);
    border-radius: .5rem .5rem 0 0;
    padding: 0.8rem 1rem;
    border: 1px solid #f8f5f5;
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  }
  
  .select-box ol {
    list-style: none;
    max-height: 15rem;
    overflow: overlay;
    border: 1px solid #f8f5f5;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom: none;
    
  }
  
  .select-box ol::-webkit-scrollbar {
    width: 0.6rem;
  }
  
  .select-box ol::-webkit-scrollbar-thumb {
    width: 0.4rem;
    height: 3rem;
    background-color: #ccc;
    border-radius: .4rem;
  }
  
  .select-box ol li {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
  }
  
  .select-box ol li.hide {
    display: none;
  }
  
  .select-box ol li:not(:last-child) {
    border-bottom: .1rem solid #eee;
  }
  
  .select-box ol li:hover {
    background-color: #FFEAE1;
  }
  
  .select-box ol li .country-name {
    margin-left: .4rem;
  }
  ol, ul {
    padding-left: 0;
  }
  
  .lg-text{
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    align-items: center !important; 
    color: #262626;
  }

  .th-text{
    font-size: 35px;
    font-weight: 500;
    line-height: 48px;
    align-items: center !important; 
    color: #262626;
  }

  .video-container {
    width: 70% !important;
    height: 50% !important;
    /*background-color: black !important; /* Optional: to give a background color when video is not found */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
}

.video-container video {
    width: 100% !important;
    height: 100% !important;
}

.video-container .fallback {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    /* background: url('path/to/placeholder-image.jpg') no-repeat center center; */
    background-size: cover !important;
    display: none !important;
}

.video-container video:invalid + .fallback,
.video-container video:not([src]) + .fallback {
    display: block !important;
}
      
    /* media Queries */
    
    @media (max-width: 991px) {
  
      .secondrow {
        padding: 10px 10px 0px 10px;
      }
    
      .display-5 {
        font-size: 30px !important;
      }
      .fs-3 {
        font-size: 24px !important;
      }
      .footerTopMargin {
        margin-top: 3rem;
      }
     
      .topSideText {
        padding: 30px 0px 0px 0px;
      }
      .marginTopBlackBg {
        margin-top: 4rem !important;
      }
    }
    
    @media (min-width: 992px) and (max-width: 1250px) {
      .secondrow {
        padding: 10px 0px 0px 10px;
      }
    
      .display-5 {
        font-size: 36px !important;
      }
      .fs-3 {
        font-size: 24px !important;
      }
  
    }
    
    @media (max-width: 576px) {

      .video-container {
        width: 95% !important;
      }
  
      .vid-desktop {
        width: 100%;
        height: auto;
    }

    input.search-box {
      width: 100% !important;
    }

    .mobile-fld{
   
      height: 80px !important;
    }
      
  
      .event-name{
        font-size: 34px !important;
        font-weight: 600 !important;
       }
      
       .event-join{
        font-size: 18px !important;
        font-weight: 500 !important;
       }
  
      .topSideText {
        padding: 20px 12px 0px 12px;
      }
      .slideCardSmallText {
        font-size: 10px;
      }
      .fs-6 {
        font-size: 16px !important;
      }
      .slideCardIconSize {
        width: 35px !important;
      }
      .fs-3 {
        font-size: 18px !important;
      }
      .h5Tags {
        font-size: 18px !important;
      }
      .display-6 {
        font-size: 24px !important;
      }
      .marginTopBlackBg {
        margin-top: 2rem !important;
      }
      .fs-5 {
        font-size: 16px !important;
      }
      .display-5 {
        font-size: 24px !important;
      }
      
      .get-contact-btn {
        padding: 10px 20px !important;
        background-color: #f88701 !important;
        border: none; 
        border-radius: 25px;
        text-decoration: none; 
       } 
    }
    
    