* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

:root {
  --roboto: "Roboto", sans-serif;
  --nunito: "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-nunito {
  font-family: var(--nunito);
}

.f-roboto {
  font-family: var(--roboto);
}

/*---- 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 ---*/
/*========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;
  background: var(--white);
  box-shadow: 10px 10px 15px 0px rgba(0, 0, 0, 0.10);
}

@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: 2em;
  height: 3px;
  border-radius: 3px;
  background-color: var(--dark-grey);
  margin-top: 6px;
  transition: all 0.3s ease-in-out;
}

.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;
  }
}

@media (max-width:992px) {
  .sidenav > li {
    display: flex;
    flex-direction: row;
    margin-top: 50px;
  }
}

.sidenav > li > a {
  color: var(--bg-dark);
  font-size: 16px;
  font-weight: 600;
  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(--grey);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    /* transform: scale(0); */
    flex-direction: column;
    z-index: 200;
  }
}

#toggle:checked ~ .hamburger .top-bun {
  transform: rotate(-45deg);
  /* margin-top: 25px; */
}

#toggle:checked ~ .hamburger .bottom-bun {
  opacity: 0;
  transform: rotate(45deg);
}

#toggle:checked ~ .hamburger .meat {
  transform: rotate(45deg);
  margin-top: -3px;
}

#toggle:checked ~ .sidenav {
  width: 50%;
}

.button-nav {
  border-radius: 8px;
  background: linear-gradient(268deg, #080808 0%, #E50914 100%);
  padding: 12px 24px;
  color: var(--infosectrain-WHITE, #FFF);
  font-family: "Nunito Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  gap: 8px;
  align-items: center;
}

.button-nav .old {
  color: var(--infosectrain-WHITE, #FFF);
  text-align: center;
  font-family: "Nunito Sans";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  text-decoration-line: line-through;
}

.button-nav .new {
  color: var(--infosectrain-Soft-Orange, #FFB956);
}

/*========navbar end=======*/

/*--- image style start ---*/
.img-fluid {
  max-width: 100%;
  height: auto;
}

/*--- image style end ---*/

h1 {
  color: #21D6FF;
  font-family: var(--roboto);
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

@media (min-width:768px) {
  h1 {
    font-size: 36px;
  }
}

@media (min-width:992px) {
  h1 {
    font-size: 72px;
  }
}

h2 {
  color: var(--white);
  font-family: var(--nunito);
  font-size: 24px;
  font-style: normal;
  font-weight: 100;
}

@media (min-width:768px) {
  h2 {
    font-size: 32px;
  }
}

@media (min-width:992px) {
  h2 {
    font-size: 52px;
  }
}

h3 {
  color: var(--dark);
  font-family: var(--nunito);
  font-size: 18px;
  font-style: normal;
  font-weight: bold;
  line-height: normal;
}

p {
  font-family: var(--nunito);
  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(--nunito);
  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(--nunito);
  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: 14px;
  }
}

@media (min-width:992px) {
  ul li {
    font-size: 16px;
  }
}

ul.liststar li::before {
  content: url('../images/shield-check.svg');
}

.button {
  padding: 12px 16px;
  display: inline-block;
  color: #080808;
  text-align: center;
  font-family: roboto;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 8px;
  background: var(--infosectrain-Yellow, #FC0);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.button .old {
  color: var(--infosectrain-BG-DARK, #080808);
  text-align: center;

  /* Desktop Typo/992px-H3 */
  font-family: "Nunito Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: line-through;
}

.footer-fix {
  position: fixed;
  bottom: 0px;
  width: 100%;
  left: 0;
  z-index: 999;
}

@media (min-width:992px) {
  .button {
    font-size: 28px;
    padding: 16px 24px;
  }
}

@media (min-width:992px) {
  .button {
    font-size: 28px;
  }
}

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;
  background: var(--white);
  border-bottom: 1px solid var(--border-grey);
}

@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(--bg-dark);
  font-size: 16px;
  font-weight: 600;
  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 {
  background: #0A192F;
  background-image: url('../images/grc-banner.webp');
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  padding: 104px 0;
}

.hero-section .sub-title {
  color: var(--white);
  text-align: center;
  font-family: var(--nunito);
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}

.hero-section .item h1 {
  color:#FFCC00;
  font-family: var(--roboto);
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.hero-section .date-time {
  line-height: normal;
}

.hero-section .points {
  border-radius: 16px;
  border-top: 1px solid rgba(255, 185, 86, 0.40);
  border-left: 1px solid rgba(255, 185, 86, 0.40);
  background: rgba(255, 185, 86, 0.20);
}

.hero-section .divbtn {
  padding: 12px 16px;
  background-color: var(--danger);
  border-radius: 8px;
}

.hero-section .divbtn {
  color: var(--white);
  font-family: var(--roboto);
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.hero-section .divbtn .old {
  color: var(--white);
  text-align: center;
  font-family: var(--nunito);
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: line-through;
}

.hero-section .divbtn .new {
  color: #FFB956;
  font-family: var(--roboto);
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

/*---- banner style end ------*/

/*------ second banner style start ------*/

.feature-box {
  display: inline-flex;
  align-items: center;
  font-family: var(--nunito);
}

.feature-box span {
  color: var(--white);
  font-family: var(--nunito);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.88px;
}

@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(--nunito);
  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%;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  color: black;
  text-transform: uppercase;
  font-family: var(--nunito);
  font-weight: 700;
  cursor: pointer;
  background-color: var(--infosectrain-Yellow, #FC0);
}

.error-message {
  color: var(--white);
  font-size: 12px;
  margin-top: 2px;
  font-family: var(--nunito);
}

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%;
}

.timers-item strong {
  font-family: var(--nunito);
  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(--nunito);
  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;
    margin-bottom: 100px;
  }
}

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(--nunito);
  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;
  }
}

.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: radial-gradient(51.01% 100% at 50% 0%, #E50914 0%, #080808 100%);
  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: 18px;
  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 {
  background: #FBE9D6;
}

.faq-wrapper .faq-item {
  border-radius: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 24px;
  background: #FBE9D6;
  border: 1px solid #FBE9D6;
  cursor: pointer;
  overflow: hidden;
}

.faq-wrapper .faq-item .faq-title {
  padding: 12px 20px;
  font-weight: 700;
  font-family: var(--nunito);
  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;
  background: #FBE9D6;
  ;
}

.faq-wrapper .faq-item .right-icon::after,
.faq-wrapper.two .faq-item .right-icon::after {
  border-right: 2px solid black;
  height: 10px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  width: 10px;
  content: "";
}

.faq-wrapper .faq-item .faq-content {
  display: none;
  padding: 16px 20px;
  background: var(--white);
  color: var(--dark);
}

.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 black;
  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;
}

.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(--dark);
}

.faq-wrapper .faq-item.active .faq-content a {
  display: inline-block;
}

.faq-wrapper .faq-item.open .right-icon::after {
  border-top: 2px solid var(--dark);
  border-left: 2px solid var(--dark);
  border-bottom: none;
  border-right: none;
}


/* ======= meet expert ========== */

.expert-card {
  border-radius: 16px;
  border: 1px solid var(--infosectrain-Soft-Orange, #FFB956);
  background: var(--infosectrain-LIGHT-YELLOW, #FFF7EC);
  padding: 24px;
}

.expert-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.expert-header h3 {
  overflow: hidden;
  color: var(--infosectrain-BG-DARK, #080808);
  text-overflow: ellipsis;

  /* Desktop Typo/992px-H3 */
  font-family: "Nunito Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.exp-badge {
  border-radius: 16px;
  background: var(--infosectrain-Acent-Red, #FCD7D2);
  padding: 8px 16px;
  color: var(--infosectrain-DARK-GREY, #484848);
  text-align: center;

  /* Desktop Typo/992px-Body-P */
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.expert-tags {
  color: var(--infosectrain-DARK-GREY, #484848);

  /* Desktop Typo/992px-Body-P */
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 16px 0px 16px 0px;
}

.expert-desc {
  color: var(--infosectrain-DARK-GREY, #484848);

  /* Desktop Typo/992px-Body-P */
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}


@media (max-width: 992px) {
  .cta-fix {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .footer-fix {
    position: relative !important;
    margin-bottom: 1px;
  }

  .masterclass-fixed {
    flex-wrap: wrap;
    justify-content: center;
  }

  .date-time {
    flex-wrap: wrap;
    justify-content: center;
  }

  .mob-view {
    text-align: center;
  }

  .timers {
    width: 50% !important;
  }

  .footer-fix {
    z-index: 0;
  }

  footer {
    margin-bottom: 0px;
  }

  .button-mob {
    border-radius: 0px;
    position: relative;
    z-index: 999;
  }

  .footer-fixed {
    z-index: -999;
  }

  .hero-section {
    background-image: none;
  }

  .mob-margin {
    margin-top: 20px;
  }
}

/*>>>>>>>>>>> faq style end <<<<<<<<<<*/

/* ============== right form ============= */

.price-card {
  border-radius: 16px;
  background: radial-gradient(51.01% 100% at 50% 0%, #E50914 0%, #080808 100%);
  border-radius: 18px;
  padding: 22px 20px 18px;
  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;
  text-align: center;
}

.price-title .em {
  font-size: 28px;
  font-weight: 800;
  color: #FFB956;
  text-align: center;
}

.bootcamp-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
}

.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;
}

.interesting {
  display: none;
}