:root {
    /* Font*/
    --ff-brand: 'Metropolis', sans-serif;
    --ff-heading: 'Space Grotesk', sans-serif;
  
    /* Font Weight */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
  
    /* Colours */
    --clr-blitz-purple: #543DA3;
    --clr-blitz-neonGreen: #CEEA4A;
  }
  
  /* paddings */
  /* paddings */
  :root {
    --container-inline-padding: 80px;
    --container-padding-block: 60px;
  }
  
  @media (max-width: 2700px) {
    :root {
      --container-padding-inline: 120px;
      --container-padding-block: 100px;
    }
  }
  
  
  @media (max-width: 1470px) {
    :root {
      --container-padding-inline: 70px;
      --container-padding-block: 70px;
    }
  }
  
  @media (max-width: 1175px) {
    :root {
      --container-padding-inline: 60px;
      --container-padding-block: 60px;
    }
  }
  
  @media (max-width: 768px) {
    :root {
      --container-padding-inline: 50px;
      --container-padding-block: 50px;
    }
  }
  
  @media (max-width: 600px) {
    :root {
      --container-padding-inline: 30px;
      --container-padding-block: 30px;
    }
  
  }

  @font-face {
    font-family: 'geomanist-regular-webfont';
    font-display: swap;
    src: url('/assets/fonts/geomanist-regular-webfont/font.ttf');
 }
  
  /*Global*/
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    scroll-behavior: smooth;
    font-family: 'geomanist-regular-webfont';
  }
  
  body {
    font-family: var(--ff-brand);
    font-weight: var(--fw-regular);
    font-size: 1rem;
    line-height: 1.3;
    -webkit-font-smoothing: antialiased;
  
  }
  
  ul,
  li {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  a {
    text-decoration: none;
    cursor: pointer;
  }
  
  img,
  picture,
  video,
  canvas,
  svg {
    display: block;
  }
  
  input,
  button,
  textarea,
  select {
    font: inherit;
    cursor: pointer;
  }
  
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    overflow-wrap: break-word;
  }
  .Container{
    width: 100%;
    margin-inline: auto;
    padding-inline: var(--container-padding-inline);
    padding-block: var(--container-padding-block);
  }
  .nav{
    display: flex;
    flex-direction: row;
    gap:20px;
    position: fixed;
    z-index: 11;
    top: 0px;
    font-size: 25px;
    color: #3F3F3F;
    align-items: center;
    justify-content: space-between;
    background: #CEEA4A;
    padding-block: 15px;
    font-weight: var(--fw-regular);
  }
  .navlink ul{
    display: flex;
    flex-direction: row;
    gap:70px;
  }
  .MenuLinks{
    color: #3F3F3F;
    font-weight:500
  }
  .dropdown-menu a{
    color: #3F3F3F;
    font-weight:500
  }

  .button-Logo{
    display: flex;
    flex-direction: row;
    gap:50px;
    align-items: center;
  }
  .MenuButtonParent{
    display: flex;
    flex-direction: row;
    gap:15px;
  }
  .menuButton{
    border-radius: 31px;
    border: 2px solid #543DA3;
    background: #CEEA4A;
    padding-inline: 20px;
    padding-block:7px;
    color: #3F3F3F;
    font-weight: 500;
  }
  .menuButton:hover{
    border-radius: 31px;
    border: 2px solid #543DA3;
    background: var(--clr-blitz-purple);
    padding-inline: 20px;
    padding-block:7px;
    color: var(--clr-blitz-neonGreen);
  }
  .background-container {
    width: 100%;
    height: 650px;
    background-image: url('/assets/WebinarImages/Section2-BGImage.png');
    background-size: cover; /* Cover the entire container */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent image repetition */
    display: grid;
    grid-template-columns: 1fr 0.5fr ;
    grid-template-rows: 1fr;
    gap:50px;
    margin-top: 100px;
    position: sticky;
    top: 40px;
}
.background-container-career {
    width: 100%;
    height: 650px;
    background-image: url('/assets/images/career-bg.png');
    background-size: cover; /* Cover the entire container */
    background-position: top; /* Center the image */
    background-repeat: no-repeat; /* Prevent image repetition */
    display: grid;
    grid-template-columns: 1fr 0.5fr ;
    grid-template-rows: 1fr;
    gap:50px;
    margin-top: 100px;
    position: sticky;
    top: 40px;
}
.heading-1{
    font-size: 50px;
}
.heading-2{
    font-size: 40px;
}
.heading-3{
    font-size: 30px;
}
.heading-4{
    font-size: 25px;
}
.para-style{
    font-size: 20px;
    line-height: 30px;
    font-family: "Rubik", sans-serif;
    color: #000;
}
.BlitzPurple{
    color: var(--clr-blitz-purple);
}
.BlitzWhite{
    color: #ffffff;
}
.SecondSecWeb{
    display: flex;
    flex-direction: column;
    gap:20px;
}
.Webinar-TimeDiv{
    display: flex;
    flex-direction: row;
    gap:40px;
    background-color: var(--clr-blitz-purple);
    color:  var(--clr-blitz-neonGreen);
    padding-inline: 30px;
    padding-block:15px;
    align-items: center;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
.Webinar-TimeDivParent{
    display: flex;
    flex-direction: column;
    gap:30px;
    position: absolute;
    right: 0px;
    top: 100px;
    width: 600px;
}
.PanelistChildDiv{
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    grid-template-rows: 1fr;
    column-gap: 100px;
}
.PurpleBG{
    background-color: var(--clr-blitz-purple);
    position: relative;
    margin-top: -100px;
}
.WhiteText{
    color: #FFFFFF;
}
.NeonText{
    color: #CEEA4A;
}
.PanelistParent{
    display: flex;
    flex-direction: column;
    gap:100px;
    margin-top:100px;
}
.profileSec{
    display: flex;
    flex-direction: column;
    gap:20px;
    align-items: center;
}
.txtCenter{
    text-align: center;
}
.PanelistDesc{
    margin-right: 200px;
    margin-top:30px;
}
.ProfileImage{
    width: 300px;
    border-radius: 50%;
}
.StripChild{
    display: flex;
    flex-direction: row;
    gap:25px;
    animation: 20s slide linear infinite;
    width: max-content;
    white-space: nowrap;
    font-family: "Rubik", sans-serif;
    font-weight: 500;
}

@keyframes slide{
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(-100%);
    }
}

.ThunderBolt{
    width: 20px;
}
.Strip{
    display: flex;
    flex-direction: row;
    gap:40px;
    overflow: hidden;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 80px;
}

.nowrap{
    white-space: nowrap;
}

.TechnologyBG{
    width: 100%;
    background-image: url('/assets/WebinarImages/TechnologyBG.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.CareerFooterBG {
    width: 100%;
    position: relative;
    background-image: url('/assets/images/footer-section-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.CareerFooterBG::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: inherit;
    background-position: inherit;
    background-repeat: inherit;
    filter: brightness(50%); /* Dulls the background */
    z-index: 0;
}

.TechnologySec {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 150px;
    position: relative;
    z-index: 1; /* Ensure text appears above the overlay */
    color: white;
}
.ExpertButton{
    border-radius: 80px;
    background: var(--clr-blitz-neonGreen);
    color: var(--clr-blitz-purple); 
    padding-inline: 60px;
    padding-block: 15px;
    font-size: 25px;
    font-weight: 600;
}

.ExpertButton-parent{
    display: flex;
    flex-direction: row;
    gap:10px;
    align-items: center;
}
.ExpertCircle{
    width: 60px;
    height: auto;
}
.FormDiv{
    border-radius: 120px 120px 106px 116px;
    background: #FFF;
    display: flex;
    flex-direction: column;
    gap:80px;
}
.form-col-flex{
    display: flex;
    flex-direction: row;
    gap:50px;
    width: 100%;
}
.form-cols-parent{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.terms-check-flex{
    display: flex;
    flex-direction: row;
    gap:10px;
    text-align: center;
    
}
.terms-check-flex p{
    color: #6B6B6B;
}

.form-col-flex-parent{
    display: flex;
    flex-direction: column;
    gap:50px;
    justify-content: flex-start;
    align-items: baseline;
}
.RegisterButton{
    color: var(--clr-blitz-purple);
    background-color: var(--clr-blitz-neonGreen);
    border: none;
    font-size: 30px;
    font-weight: 600;
    padding-inline: 30px;
    padding-block: 10px;
    border-radius: 10px;
}
.RequiredWarning{
    color: var(--clr-blitz-purple); 
    font-size: 15px;
    font-weight: 500;
    margin-left: 10px;
    margin-top:5px;
    font-weight: 600;
}
.input-webinar{
    color: #000;;
    font-size: 23px;
    font-weight: 100 !important;
    display: flex;
    white-space: nowrap;
    border-radius: 10px;
    background: #EAF1CA;
    border: none;
    padding-block: 20px;
    padding-inline: 20px;
    width: 100%;
  }
  .input-webinar::placeholder{
    color: #000;;
    font-size: 20px;
    font-weight: 100 !important;
    display: flex;
    white-space: nowrap;
  }
  .bigThunder{
    position: absolute;
    right: 100px;
    top: -60px;
    width: 100px;
  }
  .thirdSecWeb{
    position: relative;
    border-radius: 100px 100px 100px 100px;
    margin-top: -95px;
    z-index: 1;
    background: #fff;
  }
  .grid-4-footer{
    display: grid;
    grid-template-columns: 1fr 0.3fr 1fr 1fr;
    gap:50px;
  }
  .FooterLinkParent{
    color: var(--clr-blitz-neonGreen);
    font-size: 22px;
  }
  .grid-2-footer{
    display: flex;
    flex-direction: column;
    gap:25px;
  }
  .FooterLinks ul{
    display: flex;
    flex-direction: column;
    gap:15px;
    font-size: 20px;
  }
  .FooterLinks ul li a{
    color: #fff;
  }
  .newsletterInput{
    border-radius: 80px;
    border: 3px solid #CEEA4A;
    height: 50px;
    width: 275px;
    background: #FFF;
  }
  .purpleDiv{
    height: 15px;
    background-color: var(--clr-blitz-purple);
  }

#terms-checkbox {
    appearance: none; /* Remove default styling */
    width: 20px; /* Size of the custom checkbox */
    height: 20px;
    border: 2px solid #D9D9D9; /* Border color */
    border-radius: 4px; /* Rounded corners for a checkbox-like appearance */
    background-color: #D9D9D9; /* Default background color */
    margin-right: 8px; /* Spacing between checkbox and label text */
    cursor: pointer;
    outline: none;
    position: relative;
  }
  
  #terms-checkbox:checked {
    background-color: var(--clr-blitz-neonGreen); /* Background color when selected */
    border-color: var(--clr-blitz-neonGreen);; /* Border color when selected */
  }
  
  #terms-checkbox:checked::after {
    content: '';
    width: 12px; /* Size of the checkmark */
    height: 12px;
    background-color: #D9D9D9; /* Checkmark color */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    clip-path: polygon(10% 30%, 40% 70%, 90% 10%, 70% 0%, 40% 40%, 30% 50%);
  }
  .FooterLogoDiv{
    display: flex;
    flex-direction: column;
    gap:10px;
  }
  .FooterLogo{
    margin-top: -20px;
  }
  .footer-row-flex{
    display: flex;
    flex-direction: row;
    gap:15px;
    align-items: center;
  }
  .footer-row-flex-parent{
    display: flex;
    flex-direction: column;
    gap:15px;
  }
  .TalkArrow{
    position: absolute;
    left: 23%;
    top:37%;
    width: 35px;
  }
.FooterLogo{
    width: 310px;
}
  @media(max-width:1700px){
    .Webinar-TimeDivParent{
        width: 500px;
    }
    .grid-4-footer{
        gap:30px
    }
  }

  @media (max-width:1400px){
    .background-container{
      margin-top: 90px;
  }
  .background-container-career{
    margin-top: 90px;
}
    .SecondSecWeb{
        width: 90%;
    }
    .navlink ul{
        gap:30px;
    }
    .button-Logo{
        gap:15px
    }
    .HeaderLogo{
        width: 250px;
    }
  }
  @media(max-width:1300px){
    .TechnologySec{
        gap:50px;
    }
    .PanelistDesc{
        margin-right: 40px;
    }
  }
  @media(max-width:1280px){
    .Webinar-TimeDivParent{
        width: 400px;
    }
    .heading-1{
        font-size: 40px;
    }
    .heading-2{
        font-size: 30px;
    }
    .heading-3{
        font-size: 20px;
    }
    .heading-4{
        font-size: 15px;
    }
    .para-style{
        font-size: 17px;
    }
    .FooterLinkParent{
        font-size: 18px;
      }
      .FooterLinks ul{
        font-size: 16px;
      }
      .grid-4-footer{
        gap:20px
      }
      .FooterLogo{
        width: 250px;
      }
      .timeicon{
        width: 35px;
      }
      .Webinar-TimeDiv{
        gap:20px;
      }
      .menuButton{
        font-size: 20px;
      }
      .MenuLinks{
        font-size: 20px;
      }
      .dropdown-menu a{
        font-size: 20px !important;
      }
  }
  @media(max-width:1010px){
    .RegisterButton{
        font-size: 18px;
    }
    .form-col-flex{
        gap:25px;
    }
    .input-webinar{
        padding-inline: 15px;
        padding-block: 15px;
    }
    .background-container{
        grid-template-columns: 1fr;
        height: 850px;
    }
    .background-container-career{
        grid-template-columns: 1fr;
        height: 850px;
    }
    .input-webinar::placeholder{
        font-size: 18px;
      }
    .Webinar-TimeDivParent{
        top:400px;
    }
    .FormDiv{
        gap:50px;
    }
    .form-col-flex-parent{
        gap:35px;
    }
    .bigThunder {
        top: -40px;
        width: 70px;
    }
    .PanelistDesc{
        margin-right: 0px;
        margin-top: 0px;
    }
    .PanelistParent{
        gap:60px;
    }
    .PanelistChildDiv{
        column-gap: 60px;
    }
    .heading-1{
        font-size: 30px;
    }
    .heading-2{
        font-size: 20px;
    }
    .heading-3{
        font-size: 17px;
    }
    .heading-4{
        font-size: 15px;
    }
    .para-style{
        font-size: 14px;
    }
    .FooterLinkParent{
        font-size: 18px;
      }
      .FooterLinks ul{
        font-size: 16px;
      }
      .ExpertButton{
        font-size: 18px;
      }
      .grid-4-footer {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 1fr 1fr 1fr 1fr;
        row-gap: 30px;
      }
  }
@media(max-width:768px){
    .ExpertButton{
        padding-inline: 20px;
        padding-block: 12px;
    }
    .ExpertCircle{
        width: 40px;
    }
    .TalkArrow {
        position: absolute;
        left: 23%;
        top: 37%;
        width: 25px;
    }
    .PanelistChildDiv{
        display: flex;
        flex-direction: column;
        gap:30px
    }
    .PanelistDesc{
        text-align: center;
    }
    .ProfileImage{
        width: 250px;
    }
    .profileSec{
        gap:10px;
    }
    .thirdSecWeb{
        border-radius: 70px;
    }
    .bigThunder{
        width: 50px;
        top:-30px
    }
    .TechnologySec{
        display: flex;
        flex-direction: column;
        gap:20px;
        justify-content: center;
    }
    .form-col-flex{
        flex-direction: column;
    }
}

@media(max-width:560px){
    .grid-4-footer{
        grid-template-rows: 1fr;
        grid-template-columns: 1fr;
        row-gap: 20px;
    }
    .bigThunder{
        right: 40px;
    }
    .thirdSecWeb {
        border-radius: 30px;
    }
    .terms-check-flex p{
        font-size: 12px;
    }
    .FormDiv{
        gap:30px
    }
    .PanelistParent{
        gap:40px
    }
    .Webinar-TimeDivParent{
        width: 330px;
        top:540px;
        gap:20px;
    }
    .timeicon{
        width: 25px;
    }
    .background-container{
        height: 920px;
        margin-top: 70px;
    }
    .background-container-career{
        height: 920px;
        margin-top: 70px;
    }
    .grid-2-footer{
        gap:15px
    }
}
.NewsSubmit{
  position: absolute;
    left: 200px;
    top: 13px;
    color: #6B6B6B;
    background: transparent;
    border: none;
    font-size: 18px;
}
.newsParent{
  position: relative;
}


@media (max-width: 1023px) {
  .navlink{
    display: none;
  }
  .button-Logo {
    gap: 15px;
    flex-direction: row-reverse;
}
.menuButton {
  font-size: 15px;
}
.nav{
  justify-content: space-between;
}
.button-Logo .MenuButtonParent{

  display: none;
}
}

@media(max-width:540px){
  .signin{
    display: none;
  }
  .HeaderLogo{
    width: 180px;
  }
  .menuButton {
    font-size: 13px;
}
}
#successMessage{
  display: none;
}

#loader {
  display: none;
  justify-content: center;
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid #f3f3f3;
  border-bottom: 5px solid #543DA3;
  width: 40px;
  height: 41px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -32px;
  background-color: var(--clr-blitz-neonGreen);
  z-index: 1000;
  padding: 20px;
}
.dropdown-menu a {
  display: block;
  padding: 8px 16px; 
  color: #3F3F3F;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background-color: var(--clr-blitz-neonGreen);
}

.dropdown:hover .dropdown-menu {
  display: block;
}
.ham-btn {
  display: none;
}
@media(max-width:1023px){
  .ham-btn {
    display: block;
    background-color: #CEEA4A;
    border: none;
  }
}
.nav-mob-page {
  display: none;
}
@media (max-width: 1023px) {
  .nav-mob-page {
    display: block;
    padding-block: 30px;
    padding-inline: 50px;
    padding-left: 40px;
    position: absolute;
    top: 72px;
    z-index: 1000;
    right: 0;
    height: auto;
    display: none;
    position: fixed;
    transition: left 3s ease;
    background:var(--clr-blitz-neonGreen);
    border-bottom-left-radius: 10px
  }

  .remove-svg {
    cursor: pointer;
  }
  .show-menu{
    display: block;
  }

  .nav-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 10px;
  }

  .nav-col a {
    display: flex;
    flex-direction: column;
    justify-content: end;
    font-size: 16px;
    font-family: var(--ff-body);
    font-weight: var(--fw-medium);
    color: #3F3F3F;
  }

  .nav-button {
    display: flex;
    gap: 10px;
  }
}

.loaderParent{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media(max-width:1470px){
  .Strip{
    top:55px !important;
  }
}
@media(max-width:600px){
  .Strip{
    top:20px !important;
  }
}

.accordian .content-box {
    position: relative;
    margin: 10px 0px;
    overflow: hidden;
    transition: height 0.5s ease-in-out, padding 0.5s ease-in-out;
    }
    
    .accordian .content-box .accordian-head:hover {
    background-color: #E5F5F8 !important;
    }
    
    .accordian .content-box .accordian-head {
    position: relative;
    padding-inline: 60px;
    padding-block: 20px;
    background-color: #E5F5F8;
    color: #fff;
    cursor: pointer;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 5px;
    }
    
    .accordian .content-box .accordian-head:hover::before {
    background-color: #E5F5F8;
    }
    
    .accordian .content-box .accordian-item {
    position: relative;
    height: 0;
    background-color: #fff;
    overflow: hidden;
    transition: height 0.5s; 
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 5px;
    }
    
    .accordian .content-box.active .accordian-item {
    height: auto;
    padding: 0px 60px 60px 60px !important;
    font-size: medium;
    background: #E5F5F8;
    border-top: 4px solid #3D86A3;
    }
    
    .accordian .content-box.active .acc-txt{
    color:#000;
    }
    .acc-txt {
    color: #000;
    font-weight: 700;
    }

    .flex-row-acc{
        display: flex;
        flex-direction: row;
        gap: 50px;
        justify-content: space-between;
    }

    .flex-row-acc-child{
        display: flex;
        flex-direction: row;
        gap:50px;
        align-items: center;
    }
    .apply-button{
        background-color: #CEEA4A;
        padding: 15px;
        color:#000;
        font-size: 19px;
        font-weight: 600;
        border-radius: 5px;
        border: none;
    }
    .job-search-form-parent{
        display: flex;
        flex-direction: row;
        gap:20px;
        background-color: #fff;
        padding: 22px;
        width: fit-content;
        font-size: 20px;
        box-shadow: 0px 4px 4px 0px #00000040;
        border-radius: 5px;
    }
    .job-search-form-child input{
        background-color: #ffffff;
        border: none;
        outline: none;
        cursor: pointer;
    }
    .job-search-form-child{
        display: flex;
        flex-direction: row;
        gap:40px;
        align-items: center;
    }
    .search-button{
        background-color: #CEEA4A;
        padding-inline: 30px;
        padding-block: 15px;
        color:#000;
        font-size: 20px;
        font-weight: 600;
        border-radius: 5px;
        border: none;
    }

    @media (max-width:900px){
        .job-search-form-child {
            gap: 20px;
        }        
        .job-search-form-child {
            gap: 20px;
        }
        .search-button {
            padding-inline: 15px;
            padding-block: 10px;
            font-size: 16px;
        }
        .job-search-icon{
            height: 20px;
        }
        .drop-down-icon{
            height: 40px;
        }
    }


    @media (max-width:750px){
        .job-search-form-parent{
            flex-direction: column;
            gap:25px;
        }
    }
    .Job-Bag-Yellow{
        display: none;
    }
    .Job-Bag-Yellow{
        position: absolute;
        z-index: 1;
        right: 170px;
        top: 166px;
        height: 150px;
    }

    @media(max-width:1360px){
        .Job-Bag-Yellow{
            position: absolute;
            z-index: 1;
            right: 110px;
            top: 166px;
            height: 100px;
        }
    }

    @media(max-width:1018px){
        .Job-Bag-Yellow{
            position: absolute;
            z-index: 1;
            right: 110px;
            top: 100px;
            height: 100px;
        }
    }

    @media(max-width:500px){
        .Job-Bag-Yellow {
            position: absolute;
            z-index: 1;
            right: 54px;
            top: 78px;
            height: 70px;
        }
    }

    @media (max-width:660px){
      .accordian .content-box .accordian-head {
        padding-inline: 10px;
    }
    .flex-row-acc-child {
      gap: 20px;
    }
    .flex-row-acc {
      gap: 0px;
    }
    .accordian .content-box.active .accordian-item {
      padding: 0px 20px 20px 20px !important;
    }
    .apply-button {
      padding: 10px;
      font-size: 14px;
  }
    }