@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}



/*>>>>>>>>> global code start <<<<<<<*/
@font-face {
  font-family: 'Unicephalon';
  src: url('../fonts/unicephalon.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-Variable.ttf') format('truetype');
  font-weight: 200;
  /* Regular */
  font-style: normal;
}

@font-face {
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-Variable.ttf') format('truetype');
  font-weight: 400;
  /* Regular */
  font-style: normal;
}

@font-face {
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-Variable.ttf') format('truetype');
  font-weight: 500;
  /* Medium */
  font-style: normal;
}

@font-face {
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-Variable.ttf') format('truetype');
  font-weight: 600;
  /* Semi-Bold */
  font-style: normal;
}

@font-face {
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-Variable.ttf') format('truetype');
  font-weight: 700;
  /* Bold */
  font-style: normal;
}


:root {
  --unicephalon: "Roboto", sans-serif;
  --general-sans: "Nunito Sans", sans-serif;
  --danger: #E50914;
  --light-red: #feeeee;
  --dark: #080808;
  --dark-two: #101010;
  --grey: #F6F6F6;
  --light-blue: #F4F4FF;
  --dark-grey: #484848;
  --light-yellow: #FFF8CC;
  --green: #00A538;
  --disable-grey: #AFAFAF;
  --acent-yellow: #FFF8CC;
  --acent-orange: #FBE9D6;
  --acent-red: #FCD7D2;
  --acent-green: #D0F4DD;
  --border-grey: #d9d9d9;
  --white: #ffffff;
  --box-shadow: 8px 4px 25px 5px rgba(8, 8, 8, 0.15);
  --button-gradient: linear-gradient(90deg, #FF8A00 0%, #E50914 100%);
  --gradient-secondry: linear-gradient(90deg, #FF8A00 0%, #E50914 100%);
  --purple-gradient: linear-gradient(89deg, #2738ED 0%, #6C0AE2 98.66%);
}

/********* background color class end**********/
.bg-danger {
  background: var(--danger);
}

.bg-dark {
  background: var(--dark);
}

.bg-dark-two {
  background: var(--dark-two);
}

.bg-grey {
  background: var(--grey);
}

.bg-dark-grey {
  background: var(--dark-grey);
}

.bg-disable-grey {
  background: var(--disable-grey);
}

.bg-border {
  background: var(--border-grey);
}

.bg-white {
  background: var(--white) !important;
}

/********* background class end**********/

/*---------- text color class end--------*/
.text-red {
  color: var(--danger) !important;
}

.text-dark {
  color: var(--dark);
}

.text-grey {
  color: var(--grey);
}

.text-dark-grey {
  color: var(--dark-grey);
}

.text-disable-grey {
  color: var(--disable-grey);
}

.text-border {
  color: var(--border-grey);
}

.text-white {
  color: var(--white);
}

.text-center {
  text-align: center;
}

.text-start {
  text-align: left;
}

.text-end {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

@media (min-width:768px) {
  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width:992px) {
  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width:1200px) {
  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-end {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-decoration-none {
  text-decoration: none;
}

/*---------- text color end --------*/

/*---- text class start ----*/
.fw-bold {
  font-weight: bold;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fs-36 {
  font-size: 24px;
}

@media (min-width:768px) {
  .fs-36 {
    font-size: 28px;
  }
}

@media (min-width:992px) {
  .fs-36 {
    font-size: 36px;
  }
}

.fs-28 {
  font-size: 20px;
}

@media (min-width:768px) {
  .fs-28 {
    font-size: 22px;
  }
}

@media (min-width:992px) {
  .fs-28 {
    font-size: 28px;
  }
}

.fs-24 {
  font-size: 16px;
}

@media (min-width:768px) {
  .fs-24 {
    font-size: 18px;
  }
}

@media (min-width:992px) {
  .fs-24 {
    font-size: 24px;
  }
}

.fs-18 {
  font-size: 16px;
}

@media (min-width:768px) {
  .fs-18 {
    font-size: 18px;
  }
}

@media (min-width:992px) {
  .fs-18 {
    font-size: 18px;
  }
}

.fs-16 {
  font-size: 14px;
}

@media (min-width:768px) {
  .fs-16 {
    font-size: 14px;
  }
}

@media (min-width:992px) {
  .fs-16 {
    font-size: 16px;
  }
}


.fs-14 {
  font-size: 14px;
}

@media (min-width:768px) {
  .fs-14 {
    font-size: 14px;
  }
}

@media (min-width:992px) {
  .fs-14 {
    font-size: 14px;
  }
}

.fs-12 {
  font-size: 10px;
}

@media (min-width:768px) {
  .fs-12 {
    font-size: 12px;
  }
}

.fs-8 {
  font-size: 8px;
}

.f-general-sans {
  font-family: var(--general-sans);
}

.f-unicephalon {
  font-family: var(--unicephalon);
}

/*---- text class end ---*/

/*---- hover class ------*/
.hover {
  transition: border 0.3s ease, box-shadow 0.3s ease;
  /* Smooth transition */
}

.hover:hover {
  border: 1px solid var(--danger) !important;
  box-shadow: 8px 4px 25px 5px rgba(8, 8, 8, 0.15);
}

/*---- hover class ------*/

/*--- border utlities ---*/
.border-grey {
  border: 1px solid var(--border-grey) !important;
}

.border-red {
  border: 1px solid var(--danger) !important;
}

.border-dark-grey {
  border: 1px solid var(--dark-grey);
}

.border-0 {
  border: none;
}

/*--- border utlities end ---*/


/*--- image style start ---*/
.img-fluid {
  max-width: 100%;
  height: auto;
}

/*--- image style end ---*/

h1 {
  text-align: left;
  font-family: Orbitron;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  font-size: 52px;
  background: linear-gradient(180deg, #09BBFE 8.33%, #5A42EC 91.67%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.typing-three {
  text-align: center;
}

@media (min-width:768px) {
  h1 {
    font-size: 52px;
  }
}

@media (max-width:992px) {
  h1 {
    font-size: 28px;
    text-align: center;
  }

  .seats img {
    width: 100%;
  }
}

h2 {
  color: var(--WHITE, #FFF);
  text-align: left;
  font-family: var(--unicephalon);
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: normal;
}

@media (min-width:768px) {
  /* h2 {
    font-size: 36px;
  } */
}

@media (max-width:992px) {
  h2 {
    font-size: 18px;
    text-align: center;
  }
}

h3 {
  color: var(--Accents-Cyan, #00C0E8);
  font-family: "Nunito Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

p {
  font-family: "Nunito Sans";
  color: var(--dark);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

@media (min-width:768px) {
  p {
    font-size: 14px;
  }
}

@media (min-width:992px) {
  p {
    font-size: 16px;
  }
}

a {
  color: var(--dark-grey);
  font-size: 14px;
  font-weight: normal;
  font-family: var(--general-sans);
  line-height: normal;
  text-decoration: none;
}

@media (min-width:768px) {
  a {
    font-size: 14px;
  }
}

@media (min-width:992px) {
  a {
    font-size: 16px;
  }
}

ul li {
  font-family: var(--general-sans);
  color: var(--dark);
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
  list-style-position: inside;
  margin-top: 8px;
}

@media (min-width:768px) {
  ul li {
    font-size: 12px;
  }
}

@media (min-width:992px) {
  ul li {
    font-size: 16px;
  }
}

ul.liststar li::before {
  content: url('../images/shield-check.svg');
}

.button {
  border-radius: 8px;
  background: linear-gradient(90deg, #09BBFE 0%, #5A42EC 100%);
  padding: 12px 24px;
  color: var(--infosectrain-WHITE, #FFF);
  font-family: "Nunito Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border: none;
}



.price .old {
  color: var(--infosectrain-WHITE, #FFF);
  text-align: center;
  font-family: "Nunito Sans";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: line-through;
}

.price .new {
  color: #09BBFE;
  text-align: center;
  font-family: Roboto;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (min-width:992px) {
  .button {
    font-size: 14px;
    padding: 16px 24px;
  }
}

@media (min-width:992px) {
  .button {
    font-size: 21px;
  }
}

section,
footer {
  padding: 36px 0;
}

@media (min-width:768px) {

  section,
  footer {
    padding: 52px 0;
  }
}

@media (min-width:992px) {

  section,
  footer {
    padding: 72px 0;
  }
}

/*========navbar style======*/
nav {
  position: relative;
  border-bottom: 1px solid var(--grey);
  background: var(--white);
  padding: 18px 0;
}

.fixedNav {
  position: fixed;
  animation-name: fadeInUp;
  animation-duration: 1s;
  z-index: 1000;
  left: 0;
  right: 0;
  top: 0;
  border-bottom: 1px solid rgba(72, 72, 72, 0.70);
  background: rgba(1, 20, 50, 0.90);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    top: -50px;
  }

  to {
    opacity: 1;
    top: 0;
  }
}

.navbar-brand {
  max-width: 100%;
  height: auto;
  display: block;
}

#toggle {
  display: none;
}

.hamburger {
  display: none;
}

@media (max-width:992px) {
  .hamburger {
    display: block;
    position: relative;
    z-index: 250;
    right: 0;
  }
}

.hamburger div {
  position: relative;
  width: 26px;
  height: 2px;
  background-color: var(--danger);
  margin-top: 6px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.hamburger div:first-child {
  margin-top: 0;
}

.sidenav {
  text-align: end;
  z-index: 99;
  display: flex;
  align-items: center;
}

.sidenav > li {
  display: inline-block;
  list-style: none;
  margin: 0 5px;
}

.sidenav > li::before {
  content: '';
}

@media (min-width:1200px) {
  .sidenav > li {
    margin: 0 10px;
  }
}

.sidenav > li > a {
  color: var(--color-white-solid, #FFF);
  text-align: center;
  font-family: "Nunito Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}

@media (max-width:992px) {
  .sidenav > li > a {
    color: var(--bg-dark);
  }
}

@media (max-width:992px) {
  .sidenav {
    position: fixed;
    width: 0;
    height: 100%;
    background-color: var(--white);
    border-left: 1px solid var(--border-grey);
    top: 0;
    right: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    flex-direction: column;
    z-index: 200;
  }

  .sidenav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: start;
    padding-top: 50px;
  }
}

#toggle:checked ~ .hamburger .top-bun {
  transform: rotate(-45deg);
  background: var(--dark-grey);
}

#toggle:checked ~ .hamburger .bottom-bun {
  opacity: 0;
  transform: rotate(45deg);
}

#toggle:checked ~ .hamburger .meat {
  transform: rotate(45deg);
  margin-top: -2px;
  background: var(--dark-grey);
}

#toggle:checked ~ .sidenav {
  width: 60%;
  padding-left: 8px;
}

/*========navbar end=======*/

/*------ banner style start ------*/
.hero-section {
  position: relative;
  min-height: 100vh;
}

.hero-item {
  margin-top: 70px;
}

.logo-section {
  position: absolute;
  top: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #ff4444, #ff6666);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.logo-squares {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 20px;
  height: 20px;
}

.square {
  background: white;
  width: 8px;
  height: 8px;
}

.logo-text {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.logo-text .red {
  color: #ff4444;
}

.tagline {
  font-size: 14px;
  color: #cccccc;
  margin-left: 10px;
}

.content {
  max-width: 1000px;
  padding: 0 20px;
}

.presents {
  font-size: 16px;
  letter-spacing: 4px;
  color: #cccccc;
  margin-bottom: 20px;
  font-weight: 300;
}

.main-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  background: linear-gradient(45deg, #00ccff, #0099cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px;
  line-height: 1.1;
}

.event-info {
  background: linear-gradient(45deg, #4444ff, #6666ff);
  border-radius: 50px;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.live-badge {
  /* border-radius: 8px; */
  /* background: linear-gradient(89deg, rgba(39, 56, 237, 0.70) 0%, rgba(108, 10, 226, 0.70) 98.66%); */
  /* padding: 8px 16px; */
  /* border-radius: 20px; */
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--general-sans);
}

@media (max-width:768px) {
  .live-badge svg {
    width: 16px;
    height: 16px;
  }
}

.live-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.event-details {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: white;
}

.checkmark {
  width: 24px;
  height: 24px;
  background: linear-gradient(45deg, #00ccff, #0099cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.cta-button {
  background: linear-gradient(45deg, #ff6600, #ff4400);
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 68, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 68, 0, 0.4);
}

@media (max-width: 768px) {
  .logo-section {
    position: relative;
    top: 20px;
    margin-bottom: 40px;
  }

  .features {
    flex-direction: column;
    gap: 20px;
  }

  .event-details {
    flex-direction: column;
    gap: 10px;
  }

  .event-info {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
}

/*------ second banner style start ------*/

.feature-box {
  display: inline-flex;
  align-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  padding: 12px 16px;
  border-top: 2px solid grey;
  border-bottom: 1px solid grey;
}

.feature-box span {
  color: var(--WHITE, #FFF);
  font-family: "Nunito Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 768px) {
  .feature-box span {
    font-size: 16px;
  }

}

.feature-box svg {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
}

@media (max-width: 768px) {
  .feature-box svg {
    width: 16px;
    height: 16px;
  }

}

.date-time {
  font-weight: 500;
  margin-left: 10px;
}

/* @media (max-width: 768px) {
  .feature-box {
      width: 100%;
      margin: 5px 0;
  }
} */
/*---- second banner style end ------*/
/*------ banner style end ------*/

/*--price-offer style start--*/
.price-offer {
  background: radial-gradient(60.82% 100% at 51.2% -50%, #01166E 0%, #000 100%);
  padding: 24px 0;
}

.price-offer .fs-28 {
  font-size: 24px;
}

@media (max-width: 768px) {
  .price-offer .fs-28 {
    font-size: 18px;
  }

}

.price-offer .price {
  color: #fc0;
  font-family: Roboto;
  font-size: 28px;
  font-style: normal;
  line-height: normal;
}

@media (max-width: 768px) {
  .price-offer .price {
    font-size: 24px;
  }
}

/*--price-offer style end--*/


/*------- form code start --------*/
.form-control {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border-grey);
  font-size: 14px;
  font-family: var(--general-sans);
  color: var(--dark-grey);
}

.form-control::placeholder {
  color: var(--dark-grey);
}

.form-control:focus {
  border: 1px solid #2738ED;
  outline-color: #2738ED;
}

.form-control-btn {
  padding: 14px 24px;
  width: 100%;
  background: linear-gradient(89deg, #09BBFE 0%, #5A42EC 98.66%);
  border: none;
  border-radius: 5px;
  font-size: 18px;
  color: black;
  text-transform: uppercase;
  font-family: var(--general-sans);
  font-weight: 700;
  cursor: pointer;
}

.F-message {
  color: var(--white);
  font-size: 12px;
  margin-top: 2px;
  font-family: var(--general-sans);
}

input[type="text"].error,
input[type="email"].error,
textarea.error {
  border: 1px solid var(--white)
}

.seats-left-ani {
  position: relative;
  color: var(--dark-grey);
  padding: 0 12px;
}

.seats-left-ani::before {
  content: "[";
  float: left;
  position: absolute;
  left: 0;
  animation: bracket_blink;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  bottom: auto;
  top: auto;
  transform: none;
  color: var(--danger);
}

.seats-left-ani::after {
  content: "]";
  right: 0;
  animation: bracket_blink;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  position: absolute;
  color: var(--danger);
}

@keyframes bracket_blink {

  0%,
  50% {
    opacity: 0;
    color: var(--danger)
  }
}

@-webkit-keyframes bracket_blink {

  0%,
  50% {
    opacity: 0;
    color: var(--danger)
  }
}

.timers-item {
  width: 100%;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(11.3px);
  -webkit-backdrop-filter: blur(11.3px);
  border: 1px solid rgba(255, 255, 255, 0.3);

}

.timers-item strong {
  font-family: var(--general-sans);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.timers-item span {
  color: var(--bg-dark);
  text-align: center;
  font-family: var(--general-sans);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/*------- form code end --------*/
ul.meetup-list {
  width: 250px;
}

ul.meetup-list li {
  font-size: 14px;
  list-style: none;
  display: flex;
  gap: 8px;
  margin-top: 0 !important;
  position: relative;
  padding-left: 16px;
}

ul.meetup-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 6px;
  display: block;
  background: var(--dark);
  position: absolute;
  left: 0;
  top: 6px;
}

@media (max-width: 768px) {
  ul.meetup-list li {
    font-size: 12px;
  }

}

/*------- experts-profile start ------*/
.experts-profile {
  margin-top: -4rem;
  border-radius: 16px;
  border: 2px solid var(--light-blue);
}

/*------- experts-profile end -------*/

/*======= footer style start ======*/
footer {
  background: #0A0017;
  padding: 36px 0 72px 0;
}

@media (min-width:768px) {
  footer {
    padding: 72px 0;
  }
}

footer .col-md-4.quick-links {
  margin: 18px 0;
}

@media (min-width:768px) {
  footer .col-md-4.quick-links {
    padding-left: 80px;
    margin: 0;
  }
}

footer .col-md-4.quick-links .item ul li {
  /* list-style-position: inside; */
  list-style: none;
  gap: 0;
}

footer .col-md-4.quick-links .item ul li::marker {
  color: var(--white);
}

footer .col-md-4.quick-links .item ul li::before {
  content: '';
}

footer .item h3 {
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 15px;
}

footer .item p {
  color: var(--white);
}

footer .item ul li::marker {
  color: var(--white);
}

footer .item ul li a {
  color: var(--white);
  font-family: var(--general-sans);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  text-decoration: none;
}

@media (min-width:768px) {
  footer .item ul li a {
    font-size: 16px;
  }
}

/*====== footer style end ======*/
/*>>>>>>>>> fixed footer <<<<<<<<*/
.footer-fixed {
  background: linear-gradient(89deg, #2738ED 0%, #6C0AE2 98.66%);
  padding: 12px 0;
  /* position: fixed; */
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
}

@media (max-width:768px) {
  .footer-fixed {
    border-radius: 8px 8px 0 0;
    background-color: #25d366;
  }
}

.footer-fixed .desktop-list {
  display: flex;
  justify-content: center;
  gap: 16px;
}

@media (max-width:768px) {
  .footer-fixed .desktop-list {
    display: none;
  }

  .btn-textA {
    background: #080808;
    color: #00C0E8 !important;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 16px !important;
  }

  .btn-text {
    font-size: 20px !important;
  }

  .price .new,
  .price .old {
    font-size: 20px;
  }

  .timers-item strong {
    font-size: 24px;
  }

  .masterclass-fixed {
    padding: 16px !important;
  }
}

.footer-fixed .desktop-list li {
  display: inline;
  margin: 0;
}

.footer-fixed .desktop-list li::before {
  content: '';
}

.footer-fixed .desktop-list li a {
  color: var(--white);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  font-weight: 400;
}

.footer-fixed .mobile-list {
  display: flex;
  justify-content: center;
}

@media (min-width:768px) {
  .footer-fixed .mobile-list {
    display: none;
  }

}

.footer-fixed .mobile-list li {
  width: 100%;
  max-width: 100%;
  text-align: center;
  list-style: none;
  margin: 0;
}

.footer-fixed .mobile-list li::before {
  display: none;
}

.footer-fixed .mobile-list li a {
  color: var(--white);
  font-size: 16px;
  gap: 16px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

/*>>>>>>>>>>>> model style start <<<<<<<<*/
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #484848a1;
}

/* Modal Content */
.modal-content {
  position: relative;
  background: BLACK;
  margin: auto;
  padding: 20px;
  border: 1px solid var(--border-grey);
  width: 60%;
  max-width: 500px;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  border-radius: 10px;
}

#myModalVideo .modal-content,
#myModalVideo .modal-content .modal-body {
  padding: 0;
  border: none;
  line-height: 0;
}

@media only screen and (max-width: 600px) {
  .modal-content {
    width: 90%;
  }
}

@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0
  }

  to {
    top: 0;
    opacity: 1
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0
  }

  to {
    top: 0;
    opacity: 1
  }
}

.close-video,
.close {
  color: var(--white);
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-video:hover,
.close-video:focus,
.close:hover,
.close:focus {
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

#myModalVideo .modal-header {
  padding: 16px;
}

.modal-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}

.modal-body {
  padding: 2px 16px;
}

/*>>>>>>>>>>> model style end <<<<<<<<<<<*/

/*>>>>>>>>>>> success story style start <<<<<<<<<<*/
.success-story {
  background-color: #F0F0F0;
}

.success-story .row-two {
  margin-top: 24px;
}

.success-rate img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

.success-story .mySwiper2 .swiper-slide img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
}

.success-story .mySwiper3 .swiper-slide img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.mySwiper3 .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper3 .swiper-slide-thumb-active {
  opacity: 1;
}

.success-story .mySwiper3 .navigation {
  margin: 12px 0;
}

/*>>>>>>>>>>> success story style end <<<<<<<<<<*/

/*>>>>>>>>>>> faq style start <<<<<<<<<<*/
.faq-wrapper .faq-item.open .faq-title,
.course-description,
.testimonial-sec {
  border-radius: 16px 16px 0px 0px;
  background: rgba(255, 255, 255, 0.10);
}

.agenda-heading span {
  color: var(--Accents-Cyan, #00C0E8);

  /* Desktop Typo/992px-H3 */
  font-family: "Nunito Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.faq-wrapper .faq-item {
  border-radius: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 24px;
  /* background: linear-gradient(90deg, rgba(10, 0, 23, 0.15) 0.24%, rgba(108, 10, 226, 0.15) 71.84%, rgba(39, 56, 237, 0.15) 119.53%); */
  /* border: 1px solid var(--paid-events-Yellow-Purple, #FFB956); */
  cursor: pointer;
  overflow: hidden;
}

.faq-wrapper .faq-item .faq-title {
  padding: 12px 20px;
  font-weight: 700;
  font-family: var(--general-sans);
  color: var(--white);
  cursor: pointer;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  opacity: 0.9;
}

.faq-wrapper .faq-item .right-icon::after,
.faq-wrapper.two .faq-item .right-icon::after {
  border-right: 2px solid var(--white);
  height: 10px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  width: 10px;
  content: "";
}

.faq-wrapper .faq-item .faq-content {
  display: none;
  padding: 16px 20px;
  color: var(--white);
  border-radius: 0px 0px 16px 16px;
}

.faq-item {
  border: 1.688px solid rgba(0, 192, 232, 0.30);
}

.faq-wrapper .faq-item .right-icon {
  display: block;
  width: 30px;
  height: 25px;
  border-radius: 50%;
  position: relative;
}

.faq-wrapper .faq-item .right-icon::after {
  /* border-top: 2px solid #AFAFAF; */
  border-bottom: 2px solid var(--white);
  display: block;
  margin-top: -8px;
  right: 0;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.faq-wrapper .faq-item.active .faq-content {
  display: block;
  border-radius: 0px 0px 16px 16px;

  /* BG-Blur */
  backdrop-filter: blur(7px);
  /* background: #000E25; */
}

.faq-wrapper .faq-item.open .faq-content ul,
.faq-wrapper .faq-item.active .faq-content ul {
  margin-top: 16px;
}

.faq-wrapper .faq-item .faq-content ul li,
.faq-wrapper .faq-item .faq-content p {
  color: var(--white);
}

.faq-wrapper .faq-item.active .faq-content a {
  display: inline-block;
}

.faq-wrapper .faq-item.open .right-icon::after {
  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
  border-bottom: none;
  border-right: none;
}

/*>>>>>>>>>>> faq style end <<<<<<<<<<*/
/* --------------- vaibhav ----------------- */
.learning-card {
  border-radius: 16px;
  border: 1px solid var(--infosectrain-DARK-GREY, #484848);
  padding: 16px;
}

/* .learning-card:hover {
  background: rgba(90, 9, 229, 0.20);
} */

.owl-carousel {
  box-shadow: 12px -17px 20px 2px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(11.3px);
  -webkit-backdrop-filter: blur(11.3px);
  border: 1px solid rgb(255 255 255 / 17%);
}

.takeaway-card {
  box-shadow: 12px -17px 20px 2px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(11.3px);
  -webkit-backdrop-filter: blur(11.3px);
  border: 1px solid rgb(255 255 255 / 25%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* width: 415px; */
}

.learning-card h3,
.professional-development h3 {
  color: var(--Acent-Orange, #FBE9D6);
  font-family: "Nunito Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-top: 16px;
}


.professional-development p {
  color: var(--WHITE, #FFF);
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.professional-development {
  display: flex;
  padding: 24px;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px;
  background: linear-gradient(89deg, rgba(90, 9, 229, 0.80) 0%, rgba(255, 185, 86, 0.80) 98.66%);
  margin: 36px 0px 36px 0px;
}

.error-message {
  color: white;
  font-size: 14px;
  font-family: "Nunito Sans", sans-serif;
}

@media(max-width:992px) {

  .container {
    background-image: none !important;
  }

  /* .row {
    flex-direction: column-reverse;
  } */

  .learning-card {
    width: 100%;
  }

  .takeaway-card {
    width: 100% !important;
    display: flex;
    flex-direction: row;
  }

  .learning-card ul li,
  .learning-cards ul li {
    font-size: 14px !important;
    line-height: 26px;
  }

  .seats,
  .masterclass-dpdpa {
    flex-wrap: wrap;
  }

  .seats p {
    width: 100% !important;
    text-align: center;
  }

  .trainer-title,
  .live-badge {
    flex-wrap: wrap;
  }

  thead tr th {
    font-size: 16px !important;
  }

  .hero-section .col-md-7 {
    padding: 36px 18px !important;

  }

  .hero-item {
    align-items: center !important;
  }

  /* h1 {
    text-align: center;
    font-size: 52px;
  } */



  .button {
    padding: 16px;
    flex-wrap: wrap;
    gap: 0;
  }

  .masterclass-fixedA {
    flex-wrap: wrap;
  }

  .masterclass-fixed {
    flex-wrap: wrap;
  }

  tbody tr:nth-child(odd),
  tbody tr:nth-child(even) {
    font-size: 12px !important;
  }

  .instructor-profile {
    flex-wrap: wrap;
  }

  .footer-fix {
    position: relative !important;
  }

  .masterclass-fixed {
    border-radius: 16px;
  }

  .cta-fix {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .button-fixA {
    border-radius: 0px;
    width: 100%;
    gap: 24px;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    background: linear-gradient(89deg, #09BBFE 0%, #5A42EC 98.66%);

  }

  h1 {
    margin-top: 16px;
  }
}

.button-fixA {
  border-radius: 16px;
}

.btn-text {
  color: var(--infosectrain-WHITE, #FFF);
  font-family: Orbitron;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}


/* ============ trainer ================= */
.trainer-title {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex-direction: column;
}

.trainer-title h3 {
  overflow: hidden;
  color: var(--Accents-Cyan, #00C0E8);
  text-overflow: ellipsis;

  /* Desktop Typo/992px-H2 */
  font-family: Roboto;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.trainer-title p {
  border-radius: 16px;
  border: 1px solid var(--paid-events-Neon-Blue, #2738ED);
  background: rgba(39, 56, 237, 0.20);
  padding: 8px 16px;
  color: var(--infosectrain-WHITE, #FFF);
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.certificates p {
  margin-top: 8px;
  color: var(--WHITE, #FFF);
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.trainer-register {
  border-radius: 16px;
  background: var(--Soft-Orange, #FFB956);
  padding: 24px;
}


table {
  border-collapse: collapse;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
  margin-top: 24px;
}

thead tr {
  border-bottom: 1px solid rgba(255, 185, 86, 0.17);
  border-left: 1px solid rgba(255, 185, 86, 0.17);
  background: rgba(255, 185, 86, 0.30);
}

thead tr th {
  color: var(--WHITE, #FFF);
  font-family: "Nunito Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  border-left: 1px solid rgba(255, 185, 86, 0.17);
  width: 50%;
}

th,
td {
  padding: 12px 24px;
}

tbody tr:nth-child(odd) {
  border-top: 1px solid rgba(255, 185, 86, 0.17);
  border-bottom: 1px solid rgba(255, 185, 86, 0.17);
  border-left: 1px solid rgba(255, 185, 86, 0.17);
  border-right: 1px solid rgba(255, 185, 86, 0.17);
  background: #000E25;
  color: var(--WHITE, #FFF);
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

tbody tr:nth-child(even) {
  color: var(--WHITE, #FFF);
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-left: 1px solid rgba(255, 185, 86, 0.17);
  border-right: 1px solid rgba(255, 185, 86, 0.17);
}

/* Special black rows */
.highlight {
  background-color: #000 !important;
  color: #fff;
  font-weight: bold;
}

td {
  vertical-align: top;
}

.learning-card ul li,
.learning-cards ul li {
  color: var(--WHITE, #FFF);
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
}


@media only screen and (min-width: 1024px) {
  .footer-sec {
    margin-bottom: 80px;
  }

  .masterclass-fixedA {
    flex-wrap: wrap;
  }
}

/* ======== ipad ================== */
@media only screen and (min-width: 768px) and (max-width: 1024px) {

  /* .hero,
  .seats {
    justify-content: center;
  } */

  .hero .col-md-7 {
    width: 100%;
  }

  .typing-three {
    text-align: center;
  }

  .col-md-5 {
    width: 100%;
  }

  .timers {
    width: 100%;
  }
}

.footer-fix {
  position: fixed;
  bottom: 0px;
  width: 100%;
  left: 0;
}

/* -========= agenda button =========== */

.agenda {
  font-family: "Nunito Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.bootcamp-details h3 {
  color: var(--Acent-Orange, #FBE9D6);
  font-family: "Nunito Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}


.price-card {
  border-radius: 16px;
  background: linear-gradient(19deg, rgba(255, 185, 86, 0.15) 25.67%, rgba(90, 9, 229, 0.15) 74.33%);
  border-radius: 18px;
  padding: 22px 20px 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5), inset 0 0 0 1px rgba(255, 255, 255, .05);
  backdrop-filter: blur(6px);
}

.price-title {
  text-align: center;
  margin: 2px 0 14px
}

.price-title h3 {
  margin: 0;
  font-weight: 600;
  color: #FFF;
  font-size: 18px
}

.price-title .em {
  font-size: 28px;
  font-weight: 800;
  color: #FFB956;
}

/* countdown */
.timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 10px 0 18px
}

.num {
  font-size: 22px;
  color: #FFF;
  font-weight: 800
}

.lbl {
  font-size: 11px;
  color: #FFF;
  margin-top: 4px
}

/* pricing */

.strike {
  color: #caa9ff;
  text-decoration: line-through;
  font-weight: 600;
  opacity: .7
}

.now {
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(90deg, #fff, #ffe3bf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.tag {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  color: #ffd0d0
}

.deadline {
  font-size: 12px;
  color: #ffffff;
  margin-top: 6px
}

.note {
  font-size: 13px;
  color: #ffd3a6;
  font-weight: 700;
  text-align: center;
  margin-top: 10px
}

/* payment-style animated button */
.cta {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 900;
  text-decoration: none;
  color: #20122f;
  border-radius: 5px;
  background: linear-gradient(90deg, #2738ED 0%, #6C0AE2 100%);
}

.cta span {
  color: var(--color-white-solid, #FFF);
  text-align: center;

  /* CTA-BTN/Desktop */
  font-family: "Nunito Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  z-index: 1;
  background: linear-gradient(90deg, var(--btn1), var(--btn2));
  transition: width .9s cubic-bezier(.22, .61, .36, 1);
}

.cta:hover::before {
  width: 100%
}

.cta:active {
  transform: translateY(1px)
}

.foot {
  margin-top: 12px;
  font-size: 13px;
  color: #FFF;
  opacity: .85;
  display: flex;
  align-items: center;
  gap: 8px
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #36d399;
  box-shadow: 0 0 0 3px rgba(54, 211, 153, .15)
}

/* ===== Rolling countdown styles ===== */
.timer {
  display: flex;
  gap: 12px;
}

.tbox {
  border-radius: 8px;
  background: rgba(255, 185, 86, 0.20);
  border: 1px solid rgba(255, 255, 255, .14);
  /* border-radius: 12px; */
  padding: 10px;
  text-align: center;
  /* min-width: 74px; */
  width: 100%;
}

.num {
  display: flex;
  gap: 2px;
  justify-content: center;
  height: 38px;
}

/* each digit column */
.roller {
  position: relative;
  width: 22px;
  height: 38px;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(255, 255, 255, .04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}

/* the vertical strip of 0..9 */
.roller-track {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .45s cubic-bezier(.17, .67, .26, 1);
  will-change: transform;
}

/* individual digit cell */
.roller-digit {
  height: 38px;
  line-height: 38px;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  letter-spacing: .5px;
}

/* subtle shine as it scrolls */
.roller::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, .05) 50%, transparent 100%);
  pointer-events: none;
}


.bootcamp-form p {
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.bootcamp-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
}

.bootcamp-form input::placeholder {
  color: #999;
}

.interesting {
  display: none;
}


/* ============== cybersecurity bootcamp ================ */
.information {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.date {
  border-radius: 16px;
  border-top: 2px solid rgba(39, 56, 237, 0.50);
  background: rgba(39, 56, 237, 0.20);
  padding: 16px;
  font-weight: 700;
  font-size: 28px;
  justify-content: center;
}

.price-info {
  border-radius: 16px;
  border-top: 2px solid rgba(39, 56, 237, 0.50);
  background: rgba(39, 56, 237, 0.20);
  color: #fff;
  display: flex;
  gap: 36px;
  /* justify-content: space-between; */
  padding: 16px;
}

.attend-points h3 {
  color: var(--Accents-Cyan, #00C0E8);
  font-family: "Nunito Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.card-bold {
  color: #FFF;
  font-family: "Nunito Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

.para {
  color: var(--infosectrain-WHITE, #FFF);
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.learning-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* width: 650px; */
  /* margin-top: 16px; */
}

.learning-cards {
  display: flex;
  /* flex-wrap: wrap; */
  /* gap: 16px; */
}

.instructor-profile {
  flex-direction: column;
}

.trainer-card ul li {
  color: var(--infosectrain-WHITE, #FFF);
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
}

.trainer-card {
  border-radius: 16px;
  border: 1px solid var(--infosectrain-DARK-GREY, #484848);
  padding: 24px;
}

.buttonA {
  border-radius: 16px;
  background: var(--infosectrain-BG-DARK, #080808);
  padding: 12px 16px;
  border: none;
  cursor: pointer;
}

.btn-textA {
  color: #00C0E8;
  font-family: "Nunito Sans";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.agenda-heading {
  display: flex;
  gap: 16px;
}

ul li {
  padding-left: 24px;
}

.agenda-sideimage {
  position: absolute;
  right: 0px;
  height: 100vh;
  width: 100%;
}

.agenda-sideimageA {
  position: absolute;
  height: 100vh;
  width: 100%;
  left: 0px;
}

.masterclass-fixedA {
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

/* .profile-trainer {
  display: flex;
} */

/* ============== cybersecurity bootcamp ================ */