* {
  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;
  --soft-blue: #4D8EFF;
  --light-red: #feeeee;
  --dark: #000000;
  --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;
  --soft-orange: #FFB956;
  --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-soft-blue {
  background: var(--soft-blue);
}

.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-soft-blue {
  color: var(--soft-blue) !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(--soft-blue) !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(--soft-blue) !important;
}

.border-dark-grey {
  border: 1px solid var(--dark-grey);
}

.border-0 {
  border: none;
}

/*--- border utlities end ---*/
/*========navbar style======*/
nav {
  position: relative;
  padding: 18px 0;
  border-bottom: 1px solid rgba(237, 237, 237, 0.20);
  background: rgba(8, 8, 8, 0.40);
  backdrop-filter: blur(7px);
}

@media (min-with:992px) {
  nav {
    backdrop-filter: blur(7px);
  }
}

.fixedNav {
  position: fixed;
  animation-name: fadeInUp;
  animation-duration: 1s;
  z-index: 1000;
  left: 0;
  right: 0;
  top: 0;
}

@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(--white);
  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(--white);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.sidenav>li>a:hover {
  color: var(--soft-blue);
}

@media (max-width:992px) {
  .sidenav {
    position: fixed;
    width: 0;
    height: 100%;
    background-color: var(--dark);
    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 {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(89deg, #2738ED 0%, #6C0AE2 98.66%);
  padding: 12px 24px;
  color: var(--white);
  font-family: var(--nunito);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  gap: 8px;
  align-items: center;
}

.button-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine 2.5s infinite;
}


.button-nav .old {
  color: var(--white);
  text-align: center;
  font-family: var(--nunito);
  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(----soft-orange);
}

/*========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 {
  position: relative;
  overflow: hidden;
  padding: 12px 16px;
  display: inline-block;
  color: #080808;
  text-align: center;
  font-family: roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 8px;
  background: var(--soft-orange);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}


.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine 2.5s infinite;
}


.button .old {
  color: var(--bg-dark);
  text-align: center;

  /* Desktop Typo/992px-H3 */
  font-family: var(--nunito);
  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;
  }
}


/*------ banner style start ------*/
.hero-section {
  background: var(--bg-dark);
  background-image: url('../images/banner.jpg');
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  padding: 72px 0;
}

@media (max-width:992px) {
  .hero-section {
    padding: 36px 0 0 0;
  }
}

.hero-section .sub-title {
  color: var(--soft-blue);
  text-align: center;
  font-family: var(--nunito);
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}

.hero-section .item h1 {
  color: var(--white);
  font-family: var(--roboto);
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
}

@media (max-width:768px) {
  .hero-section .item h1 {
    font-size: 28px;
  }
}

.hero-section .date-time {
  line-height: normal;
}

.hero-section .points {
  border-radius: 8px;
  border: 1px solid rgba(108, 10, 226, 0.30);
  background: rgba(39, 56, 237, 0.30);
}

.hero-section .divbtn {
  position: relative;
  overflow: hidden;
  /* IMPORTANT for shine */
  padding: 12px 16px;
  border-radius: 8px;
  background: linear-gradient(89deg, #2738ED 0%, #6C0AE2 98.66%);
  display: inline-block;
  color: #fff;
  font-family: var(--roboto);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.divbtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine 2.5s infinite;
}

.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;
}

@media (max-width:768px) {

  .hero-section .divbtn,
  .hero-section .divbtn .new {
    font-size: 16px;
  }
}

/*---- 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(--soft-orange);
}

.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(--soft-blue);
}

.seats-left-ani::after {
  content: "]";
  right: 0;
  animation: bracket_blink;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  position: absolute;
  color: var(--soft-blue);
}

@keyframes bracket_blink {

  0%,
  50% {
    opacity: 0;
    color: var(--soft-blue)
  }
}

@-webkit-keyframes bracket_blink {

  0%,
  50% {
    opacity: 0;
    color: var(--soft-blue)
  }
}

.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: var(--bg-dark);
  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: var(--dark);
  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: var(--dark-grey);
}

.faq-wrapper .faq-item {
  border-radius: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 24px;
  background: transparent;
  border: 1px solid var(--dark-grey);
  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: var(--dark-grey);
  ;
}

.faq-wrapper .faq-item .right-icon::after,
.faq-wrapper.two .faq-item .right-icon::after {
  border-right: 2px solid var(--disable-grey);
  height: 10px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  width: 10px;
  content: "";
}

.faq-wrapper .faq-item .faq-content {
  display: none;
  padding: 16px 20px;
  background: transparent;
  color: var(--white);
}

.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(--disable-grey);
  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(--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(--disable-grey);
  border-left: 2px solid var(--disable-grey);
  border-bottom: none;
  border-right: none;
}


/* ======= meet expert ========== */

.expert-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(72, 72, 72, 0.40);
  padding: 24px;
  color: var(--white) !important;
  font-family: var(--nunito);
}

.expert-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.expert-header h3 {
  overflow: hidden;
  color: var(--bg-dark);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.exp-badge {
  border-radius: 16px;
  border: 1px solid #6C0AE2;
  background: rgba(39, 56, 237, 0.50);
  border-radius: 16px;
  padding: 8px 16px;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.expert-tags {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 16px 0px 16px 0px;
  color: var(--white);
}

.expert-desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--white);
}


.bootcamp-schedule {
  border-radius: 16px;
  background: linear-gradient(89deg, #2738ED 0%, #6C0AE2 98.66%);
}

@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;
  }

}

/*>>>>>>>>>>> faq style end <<<<<<<<<<*/

/* ============== right form ============= */

.price-card {
  border-radius: 16px;
  background: var(--soft-blue);
  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: 12px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--nunito);
}

.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;
}

.keytake-item {
  border-radius: 8px;
  border: 1px solid rgba(77, 142, 255, 0.40);
  background: rgba(77, 142, 255, 0.25);
  height: 100%;
  border-radius: 16px;
}

.keytake-item svg {
  padding: 8px;
  background: #2738ED;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.masterclass-fixed {
  overflow: hidden;
  overflow: hidden;
  background: linear-gradient(89deg, #2738ED 0%, #6C0AE2 98.66%);
  padding: 24px;
  justify-content: center;
  align-items: center;
}

#why-attend {
  position: relative;
}

#why-attend::after {
  content: '';
  width: 800px;
  height: 1176px;
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(50%, -50%);
  background-image: url(../images/Ellipse.webp);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 872px;
  opacity: 0.90;
  filter: blur(20px);
  z-index: -1;
  display: none;
}

@media (min-width:768px) {
  #why-attend::after {
    display: block;
  }
}

@keyframes shine {
  0% {
    left: -75%;
  }

  100% {
    left: 125%;
  }
}