@font-face {
    font-family: 'Sora';
    src: url('fonts/Sora-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Sora';
    src: url('fonts/Sora-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Sora';
    src: url('fonts/Sora-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Sora';
    src: url('fonts/Sora-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
/* Dark Theme */
.bg-dark {
  --bg-color: #000000;
  --text-color: #ffffff;
  --link-color: #ffa500;
  --border-color: #00000033;
  --highlight-color: #ff6f3c;
  --font-family: 'Sora', sans-serif;
}

/* Light Theme */
.bg-light {
  --bg-color: #ffffff;
  --text-color: #292929;
  --link-color: #a0220f;
  --border-color: #f1f6fd;
  --highlight-color: #001f4f;
  --font-family: 'Sora', sans-serif;
}
.bg-gray{
  background-color: #292929;
}
:root {
    --bs-body-font-family: 'Sora', sans-serif !important;
    --red: #A0220F;
    --black: #000000;
    --blue: #001f4f;
    --white: #fff;
    --green: #71ef3a;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
    font-family: var(--bs-body-font-family);
    background-color: #000000;
    color: #ffffff;
}
.bg-overlay-banner{
    background-image: url(https://tradewise.thefuture.university/marketing/new-event/component-1-30.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}
.bg-banner-wrapper {
  background-image: url('https://boomingbulls.com/wp-content/uploads/2024/04/Header-Background-scaled.jpg'); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.br-10{
    border-radius: 10px;
}
.red{
  color: var(--red)
}
.white{
   color: var(--white);
}
.green{
  color: var(--green)
}
.highlight {
    color: var(--black);
    font-weight: bold;
}
.btn-primary-custom {
    background-color: #ffa500;
    color: #fff;
    font-weight: bold;
    border: none;
}
.btn-primary-custom:hover {
    background-color: #e69500;
}
.masterclass-container {
    padding: 30px 0;
}
.masterclass-container h5 {
    font-weight: 700;
    color: #A0220F;
}
.masterclass-container h2{
    font-size: 40px;
    font-weight: 900;
    line-height: 1.4em;
    color: var(--red);
}
.masterclass-container p{
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4em;
}
.feature-list {
    list-style: none;
    padding: 0;
}
.feature-list a{
  color:#080808;
  text-decoration: none;
}

.box {
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #8d8d8dd5;
}
.box .feature-list li{
    padding-bottom: calc(20px/2)
}
.box .feature-list li i{
    font-size: 1.1rem;
    color: var(--black);
    letter-spacing: 5px;
}
header h3{
    background-color: var(--red);
    color: #ffffff;
    padding: 20px 0 10px 0;
    text-align: center;
    border-radius: 10px;
    margin-top: -10px;
}

h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading {
  font-size: 2.5rem;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0.04em 0.04rem 0 #81b5ab;
}

.section {
  overflow: hidden;
}

.wrapper {
  height: 100vh;
}

.list {
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
  padding: 0.2rem;
}

.item {
  width: 100vw;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
  box-shadow: rgb(149, 157, 165, 0.2) 0px 8px 24px;
  overflow: hidden;
}

.item_number {
  font-size: 1.5rem;
  height: 3rem;
  width: 3rem;
  margin-bottom: 0.5rem;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  position: absolute;
  top: 6rem;
  left: 3rem;
}

.item_content {
  background-color: #fff;
  color: #292929;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem;
  display: flex;
  position: relative;
  width: 50%;
}

.item_media {
  object-fit: cover;
  width: 50%;
  height: 100%;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.padding-vertical {
  padding: 2rem;
}

.btn-grad {background: linear-gradient(to right, #A0220F 0%, #000000cf 51%, #A0220F 100%);}
.btn-grad {
   margin: 10px;
   padding: 15px 45px;
   text-align: center;
   text-transform: uppercase;
   transition: 0.5s;
   background-size: 200% auto;
   color: white;            
   box-shadow: 0 0 5px #eee;
   border-radius: 10px;
   font-weight: bold;
   display: inline-block;
   text-decoration: none;
 }

 .btn-grad:hover {
   background-position: right center; /* change the direction of the change here */
   color: #fff;
   text-decoration: none;
 }
 .check-icon {
  color: #0d47a1;
  font-size: 1.2rem;
  margin-right: 10px;
}
.feature-box {
  background-color: #f1f6fd;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
  border: 1px solid #0000003d;
}
.highlight-line {
  width: 80px;
  height: 4px;
  background-color: #ff6f3c;
  margin: 10px auto 30px;
}

@media (max-width: 575.98px) {
    .masterclass-container h2{
        font-size: 1.8rem;
    }
  .heading {
    font-size: 2.5rem;
  }

  .item {
    display: flex;
    flex-direction: column;
  }

  .item_content,
  .item_media {
    height: 50vh;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .item_number {
    font-size: 0.5rem;
    top: 1.5rem;
  }
}
/* Styles for the popup */
.popup-container {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Transparent black background */
  z-index: 999;
}

.popup-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border-radius: 10px;
  width: 40%;
  max-width: 500px;
}

.close-btn {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
  color: #000;
  text-decoration: none;
}

.popup-content h2 {
  font-size: 24px;
  color: var(--blue);
}

.popup-content input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.popup-content button {
  width: 100%;
  padding: 12px;
  background-color: var(--red);
  color: #fff;
  border: none;
  font-weight: bold;
  border-radius: 5px;
}

.popup-content button:hover {
  background-color: var(--blue);
}
.comparison-section {
  padding: 40px 20px;
  text-align: center;
}
.lifting{
  border: 1px solid #000000;
  border-radius: 10px;
  background-color: #b6b6b66e;
}
.lifting .p-blr-5{
  
  padding: 1.8rem;  
}
.lifting h3{
  background-color: var(--red);
  padding: 20px;
  border-radius: 10px 10px 0 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.lifting h5 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 12px;
  text-transform: none;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.lifting h5 i {
  color: var(--black);
  font-size: 14px;
}

.space-25 {
  width: 25px;
  display: inline-block;
}
.features p{
  color: var(--text-color);
  text-align: justify;
}
.features h3{
  color: var(--text-color);
  font-weight: bold;
}
.features h5{
  color: var(--text-color);
}
.features span{
  color: var(--red);
}
.features img{
  width: 100%;
}
.wheather-you .info-box{
  border-radius: 10px;
  border: 1px solid #000000;
}
.wheather-you h5, p, ul{
  color: var(--text-color);
}
.wheather-you p{
  margin: 0 !important;
}
.wheather-you span{
  color: var(--red)
}
.footer {
  position: sticky;
  bottom: 0;
  width: 100%;
  background-color: var(--red);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-top: 2px solid green;
  border-left: 2px solid green;
  border-right: 2px solid green;
  /* Remove bottom border and radius */
  border-bottom: none;
  box-shadow: 0 -4px 10px #00000044;
  color: white;
  padding: 15px 0;
}

.footer a{
    text-decoration: auto;
    color: white;
}