@charset "UTF-8";
@font-face {
  font-family: "Bebas Neue";
  src: url("../../fonts/BebasNeue-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Permanent Marker";
  src: url("../../fonts/PermanentMarker-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #0e0e0e;
  color: #ffffff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== TOP BAR (ALIGNED WITH NAVBAR) ===== */
.nav-align {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

.top-bar {
  height: 44px;
  background: linear-gradient(to bottom, #111, #000);
  border-bottom: 1px solid #1e1e1e;
}
.top-bar .top-bar-inner {
  height: 100%;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.top-bar .top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #cfcfcf;
}
.top-bar .top-text {
  opacity: 0.9;
}
.top-bar .top-contact {
  color: #4aa3ff;
  text-decoration: none;
}
.top-bar .top-contact:hover {
  text-decoration: underline;
}
.top-bar .lang-dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  border: 1px solid #2b2b2b;
  cursor: pointer;
}
.top-bar .lang-dropdown img {
  width: 18px;
  display: block;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  width: 100%;
  background: black;
  z-index: 10;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.header .custom-navbar .navbar-nav {
  display: flex;
  align-items: center;
}
.header .custom-navbar .nav-logo img {
  height: 62px;
  width: 56px;
  margin: 0 20px;
}
.header nav a {
  margin-right: 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
}

/* Modal content styling */
.modal-content {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  /* Soft shadow */
  max-width: 500px;
  /* Limiting width */
  margin: auto;
}

/* Logo Styling */
.modal-logo {
  width: 120px;
  /* Adjust logo size */
  margin-bottom: 20px;
  /* Space below the logo */
}

/* Title - 'Welcome' */
.model-description h3 {
  font-size: 2.2rem;
  /* Slightly larger title */
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

/* Description text */
.model-description p {
  font-size: 1.125rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
  /* Space before the button */
}

/* 'Get Started' Button Styling */
.btn_wrapper {
  display: inline-block;
  padding: 14px 30px;
  background-color: #f44336;
  /* Red background */
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  /* Slightly larger font */
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn_wrapper:hover {
  background-color: #e53935;
  /* Slightly darker on hover */
}

/* Optional: Modal backdrop custom styling */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.7);
  /* Darker backdrop */
}

/* Section styling */
.what-youll-master {
  padding: 80px 0;
}
@media (min-width: 1024px) {
  .what-youll-master {
    padding-bottom: 160px;
  }
}
.what-youll-master {
  /* Adjusting for more spacious section */
  background-color: #f5f5f5;
}

.section-tag {
  font-size: 1.2rem;
  color: #f44336;
  /* Red color */
  font-weight: 600;
}
@media (min-width: 1024px) {
  .section-tag {
    font-size: 36px;
  }
}

.section-title {
  font-size: 2.8rem;
  /* Larger title to make it stand out */
  color: #ffffff;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .section-title {
    font-size: 72px;
  }
}

/* Custom card styling */
.custom-card {
  border: none;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  /* Deeper shadow for a more "pop" effect */
  background-color: #fff;
  transition: box-shadow 0.3s ease;
  /* Smooth transition for hover effect */
  height: 100%;
  padding: 20px;
  border-radius: 0%;
}

.custom-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  /* Stronger shadow on hover */
}

.card-img-top {
  width: 90px;
  /* Icon size adjustment */
  height: 90px;
  /* Icon size adjustment */
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
}

.card-body {
  text-align: left;
}

.card-title {
  font-size: 1.4rem;
  /* Slightly larger title */
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  font-family: "Bebas Neue", sans-serif;
}
@media (min-width: 1024px) {
  .card-title {
    font-size: 24px;
  }
}

.card-text {
  font-size: 1rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Ensure cards are evenly spaced */
@media (max-width: 767px) {
  .custom-card {
    margin-bottom: 30px;
    /* Add spacing between cards on smaller screens */
  }
}
@media (min-width: 768px) {
  .custom-card {
    margin-bottom: 30px;
    /* Add spacing between cards on medium screens */
  }
}
/* ===== FEATURES ===== */
.features {
  background: #fff;
  color: #000;
  padding: 80px 0;
}
.features h2 {
  text-align: center;
}
.features .hashtag {
  text-align: center;
  color: #E7000B;
  margin-bottom: 40px;
}
.features .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.features .card {
  padding: 30px;
  border: 1px solid #eee;
  text-align: center;
}

.training-wrapper {
  max-width: 1200px;
  margin: auto;
}

.training-card {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.training-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.training-title {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 12px;
  text-transform: uppercase;
}

.row.g-3 {
  --bs-gutter-x: 16px;
}

/* ===== PRICING ===== */
/* =========================
   PRICING — EXACT MATCH
========================= */
.pricing {
  background: #000;
  padding: 120px 0;
  position: relative;
}
.pricing .section-title {
  color: #fff;
}

.pricing-row {
  align-items: flex-end;
}

/* CARD */
.price-card {
  position: relative;
  background: #000;
  border: 1px solid #222;
  padding: 0;
  color: #fff;
  height: 100%;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.price-card-media {
  position: relative;
  padding: 36px 28px 24px;
  background-position: center;
  background-size: cover;
}

.price-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  pointer-events: none;
}

.price-card-media > * {
  position: relative;
  z-index: 1;
}

.price-card-basic {
  background-image: url("../../images/png/price-1.png");
}

.price-card-pro {
  background-image: url("../../images/png/price-2.png");
}

.price-card-elite {
  background-image: url("../../images/png/price-3.png");
}

/* FEATURED (PRO) */
.price-card.featured {
  border: 2px solid #E7000B;
  transform: none;
  box-shadow: 0 0 40px rgba(231, 0, 11, 0.35);
}

.price-card:not(.featured):hover {
  border-color: #E7000B;
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(231, 0, 11, 0.25);
}

.price-card:not(.featured):hover .price-btn.btn-outline {
  background: #E7000B;
  border-color: #E7000B;
  color: #fff;
}

.price-card.featured:hover {
  transform: scale(1.06);
  box-shadow: 0 0 40px rgba(231, 0, 11, 0.35);
}

/* BADGE */
.badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #E7000B;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 0;
  padding: 5px 16px;
  font-family: "Bebas Neue", sans-serif;
}

/* TEXT */
.plan-title {
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 6px;
  text-align: left;
  font-family: "Bebas Neue", sans-serif;
}
@media (min-width: 1024px) {
  .plan-title {
    font-size: 30px;
  }
}

.plan-desc {
  font-size: 12px;
  color: #aaa;
  text-align: left;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .plan-desc {
    font-size: 16px;
  }
}

.price {
  font-size: 38px;
  font-weight: 800;
  text-align: left;
  font-family: "Bebas Neue", sans-serif;
}
@media (min-width: 1024px) {
  .price {
    font-size: 48px;
  }
}

.price span {
  font-size: 12px;
  color: #aaa;
}

/* WHITE FEATURE BOX */
.feature-box {
  background: transparent;
  padding: 18px 28px 0;
  margin-bottom: 16px;
}

.feature-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-box li {
  font-size: 13px;
  color: #fff;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.feature-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #E7000B;
  font-weight: 700;
}

.price-btn {
  margin-top: auto;
  width: 80%;
  padding: 14px 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 0;
  text-decoration: none;
  margin: 0 auto;
  margin-bottom: 28px;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.price-card:not(.featured) .price-btn.btn-outline {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.price-card.featured .price-btn.btn-red {
  background: #E7000B;
  border-color: #E7000B;
  color: #fff;
}

/* MOBILE */
@media (max-width: 991px) {
  .price-card {
    min-height: unset;
  }
  .price-card.featured {
    transform: none;
    box-shadow: none;
  }
}
/* ===== ABOUT ===== */
.about {
  background: #fff;
  color: #000;
  padding: 80px 0;
}
.about .stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  text-align: center;
  margin-top: 40px;
}
.about .stats strong {
  font-size: 32px;
  color: #E7000B;
}

/* ===== CONTACT ===== */
.contact {
  padding: 80px 0;
  position: relative;
  background-color: #000;
}
.contact form {
  display: grid;
  gap: 15px;
}
.contact form input,
.contact form textarea {
  padding: 12px;
  background: #111;
  border: 1px solid #333;
  color: #ffffff;
}
.contact .contact-left .description {
  color: #d4d4d4;
  font-size: 18px;
}
.contact .contact-left .contact-info {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}
.contact .contact-left .contact-info-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
}
.contact .contact-left .contact-info-icon {
  width: 54px;
  height: 54px;
  background: #E7000B;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .contact-left .contact-info-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 4px;
}
.contact .contact-left .contact-info-value a,
.contact .contact-left .contact-info-value p {
  color: #A1A1A1;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Inter", sans-serif;
}
.contact .form-group label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  margin-bottom: 12px;
}
.contact .form-group input,
.contact .form-group textarea {
  border-radius: 0;
}
.contact .btn.btn-primary {
  border-radius: 0;
  padding: 16px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
}

.auth-page {
  background: #000;
  padding: 90px 0 120px;
}

.auth-card {
  background: transparent;
  padding: 0;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #1c1c1c;
}

.auth-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #8d8d8d;
  background: #2a2a2a;
}

.auth-tab.is-active {
  background: #E7000B;
  color: #fff;
}

.auth-form {
  padding: 32px 0 0;
}

.auth-field {
  margin-bottom: 22px;
}

.auth-label {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 10px;
}

.auth-input {
  position: relative;
}

.auth-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #8d8d8d;
}

.auth-input .form-control {
  background: #1a1a1a;
  border: 1px solid #2b2b2b;
  border-radius: 0;
  color: #fff;
  padding: 14px 16px 14px 44px;
  height: 54px;
}

.auth-input .form-control::-moz-placeholder {
  color: #6f6f6f;
}

.auth-input .form-control::placeholder {
  color: #6f6f6f;
}

.auth-forgot {
  display: inline-block;
  color: #E7000B;
  text-decoration: none;
  margin: 10px 0 26px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.auth-submit.btn.btn-primary {
  width: 100%;
  padding: 18px 16px;
  border-radius: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
}

.auth-notice {
  background: #2a2a2a;
  border: 1px solid #3b3b3b;
  color: #d3d3d3;
  padding: 16px 16px;
  margin: 0 0 24px;
  font-size: 13px;
  line-height: 1.4;
  font-family: "Inter", sans-serif;
}

.auth-discount {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  gap: 0;
}

.auth-discount .auth-input .form-control {
  border-right: 0;
}

.auth-discount-apply {
  background: transparent;
  border: 1px solid #2b2b2b;
  color: #E7000B;
  padding: 0 16px;
  min-height: 54px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
}

.auth-heading {
  padding: 8px 0 10px;
  text-align: center;
}

.auth-title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  letter-spacing: 2px;
  color: #fff;
}

.auth-subtitle {
  margin: 8px 0 22px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #bdbdbd;
}

.auth-back {
  display: block;
  margin-top: 18px;
  text-align: center;
  text-decoration: none;
  color: #bdbdbd;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.support-page {
  background: #000;
}

.support-page .container-fluid.py-5 {
  background: #000;
}

.support-hero {
  text-align: center;
  padding: 20px 0 30px;
  font-family: "Inter", sans-serif;
}

.support-title {
  margin: 0;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 56px;
}

.support-subtitle {
  margin: 10px 0 0;
  color: #bdbdbd;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.4;
}

.faq-accordion {
  font-family: "Inter", sans-serif;
}

.faq-accordion .accordion-item {
  background: transparent;
  border: 0;
  margin-bottom: 14px;
}

.faq-accordion .accordion-header {
  margin: 0;
}

.faq-accordion .accordion-button {
  background: #111;
  color: #fff;
  border: 1px solid #1f1f1f;
  border-radius: 6px;
  padding: 18px 18px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.25;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #272727;
  border-color: #2f2f2f;
  border-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  background-image: none;
  content: "-";
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1c1c1c;
  color: #E7000B;
  font-weight: 700;
  transform: none;
}

.faq-accordion .accordion-button.collapsed::after {
  content: "+";
}

.faq-accordion .accordion-collapse {
  background: #111;
  border: 1px solid #1f1f1f;
  border-top: 0;
  border-radius: 0 0 6px 6px;
}

.faq-accordion .accordion-collapse.show {
  background: #272727;
  border-color: #2f2f2f;
}

.faq-accordion .accordion-body {
  color: #bdbdbd;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.6;
}

.faq-accordion .accordion-body p {
  margin-bottom: 12px;
}

.cancel-membership-section {
  margin-top: 28px;
}

.cancel-membership-section .card {
  background: #E7000B;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
}

.cancel-membership-section .card-body {
  padding: 34px 38px;
}

.cancel-membership-section h3 {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.cancel-membership-section p {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

.cancel-membership-section .cancel-form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.cancel-membership-section .cancel-form-field {
  width: 100%;
}

.cancel-membership-section .cancel-form .form-control {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  height: 46px;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  padding: 10px 14px;
}

.cancel-membership-section .cancel-form .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.cancel-membership-section .cancel-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.cancel-membership-section .cancel-form .btn.btn-light {
  height: 40px;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 0 22px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }
  nav {
    display: none;
  }
}
#chat-widget-container {
  bottom: -10px !important;
}

.global-go-up-button {
  background-color: #E7000B;
  position: fixed;
  bottom: 10px;
  right: 50px;
  width: 45px;
  height: 45px;
  border-radius: 15px;
  z-index: 100;
  border: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0px 10px 30px rgba(1, 28, 42, 0.25);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.global-go-up-button:hover {
  transform: translateY(-2px);
}
.global-go-up-button:active {
  transform: translateY(0);
}
.global-go-up-button:focus-visible {
  outline: 3px solid rgba(253, 83, 47, 0.5);
  outline-offset: 3px;
}
@media (max-width: 575px) {
  .global-go-up-button {
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
}

.global-go-up-button.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.global-go-up-button::after {
  display: block;
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-image: url(/assets/images/png/arrow-right.png);
  top: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  transform: translateY(-50%) rotate(-90deg);
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .global-go-up-button::after {
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
  }
}

.top-bg {
  background-color: #111;
  color: #D4D4D4;
}

.lighter-dark-bg {
  background-color: #262626;
}

header .navbar-toggler {
  border: none !important;
}
header .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
header .nav-link {
  color: #D4D4D4;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

/* FOR GOOGLE TRANSLATE CSS START HERE */
body {
  top: 0 !important;
}

body .goog-text-highlight {
  background: rgba(0, 0, 0, 0) !important;
  box-shadow: none !important;
}

.goog-te-gadget {
  display: block !important;
}

#google_translate_element,
select.goog-te-combo {
  position: fixed;
  z-index: 999;
  top: -999px;
}

.goog-te-banner-frame,
.goog-te-menu-frame,
.goog-te-tooltip {
  display: none !important;
}

font,
.goog-text-highlight {
  background-color: rgba(0, 0, 0, 0) !important;
  box-shadow: none !important;
}

#goog-gt-tt,
.goog-te-combo,
.skiptranslate {
  display: none !important;
}

#teams-dropdown-menu span.icon .fa {
  display: inline-block;
  color: #fff;
}

#teams-dropdown-menu span.icon {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
}

#teams-dropdown-menu span.icon i {
  transition: transform 0.2s ease;
  transform-origin: center;
}

.loader {
  z-index: 999999;
  position: fixed;
  top: 0;
  bottom: 0;
  height: 100vh;
  width: 100%;
  background: #fff;
  left: 0;
}

#teams-dropdown-menu ul li {
  text-transform: capitalize;
}

#teams-dropdown-menu {
  border-radius: 10px;
  position: relative;
  background-color: transparent;
  cursor: pointer;
  width: 60px;
  display: flex;
  align-items: center;
  height: 36px;
  padding: 6px;
  margin-bottom: 0px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

#teams-dropdown-menu * {
  cursor: pointer;
}

#teams-dropdown-menu .flag-text {
  font-size: 0px;
  color: #000000;
}

#teams-dropdown-menu ul {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(10, 10, 10, 0.0509803922), 0 0 10px 0 rgba(10, 10, 10, 0.0784313725);
  display: none;
  left: 0;
  overflow: hidden;
  padding: 10px 0;
  position: absolute;
  top: 50px;
  width: 135px;
  z-index: 99;
  padding: 0;
  left: unset !important;
  right: 0;
}

img.img-fluid.flg {
  margin-right: 10px;
}

#teams-dropdown-menu ul.active {
  display: block;
  animation: slidedown 0.2s;
  top: 50px;
}

#teams-dropdown-menu ul.active ~ span.icon i {
  transform: rotate(180deg);
}

@keyframes slidedown {
  from {
    margin-top: -25px;
    opacity: 0;
  }
  to {
    margin-top: 0;
    opacity: 1;
  }
}
#teams-dropdown-menu ul li {
  padding: 10px 15px;
  color: #000000;
  font-size: 14px;
  letter-spacing: 0.5px;
  height: auto !important;
  display: flex;
  margin-left: 0;
  float: none;
}

#teams-dropdown-menu ul li:hover {
  color: #000 !important;
  background-color: #f0f0f0;
}

#teams-dropdown-menu span.icon:before {
  display: none;
  content: none;
}

@media screen and (max-width: 1199px) {
  #teams-dropdown-menu {
    height: 32px;
    position: relative !important;
    cursor: pointer !important;
    width: 60px !important;
    display: flex !important;
    margin-right: 0px !important;
    margin-bottom: 0px !important;
  }
  #teams-dropdown-menu .flag-text {
    font-size: 0px;
    color: #000000;
    margin-right: 10px;
  }
  #teams-dropdown-menu .submenu-button {
    display: none;
  }
  #teams-dropdown-menu span.icon i {
    color: #000;
  }
  .header-main #teams-dropdown-menu {
    margin-left: auto !important;
  }
  .header.sticky header nav.menu.open ul {
    margin-top: 25px;
  }
}
@media (max-width: 575px) {
  #teams-dropdown-menu .flag-text {
    margin-right: 0;
  }
}
/* FOR GOOGLE TRANSLATE CSS END'S HERE */
.btn-primary {
  background-color: #E7000B !important;
  color: #fff !important;
  border-color: #E7000B !important;
}

.btn-outline-danger {
  border-color: #E7000B !important;
  color: #fff !important;
}
.btn-outline-danger:hover {
  background-color: #E7000B !important;
  color: #fff !important;
}

.font-bebas {
  font-family: "Bebas Neue", sans-serif !important;
}

.font-permanent {
  font-family: "Permanent Marker", sans-serif !important;
}

.font-inter {
  font-family: "Inter", sans-serif !important;
}

.text-red {
  color: #E7000B !important;
}

.wavy-border-top {
  width: 100%;
  position: absolute;
  top: -28px;
  left: 0;
}
@media (min-width: 1024px) {
  .wavy-border-top {
    top: -50px;
  }
}
.wavy-border-top img {
  width: 100%;
}

.wavy-border-bottom {
  width: 100%;
  position: absolute;
  bottom: -22px;
  left: 0;
}
@media (min-width: 1024px) {
  .wavy-border-bottom {
    bottom: -50px;
  }
}
.wavy-border-bottom img {
  width: 100%;
  transform: scaleY(-1) scaleX(-1);
}

.text-black {
  color: #0A0A0A;
}

.text-gray-40 {
  color: #404040;
}

.text-white {
  color: #fff;
}

.offcanvas.offcanvas-bottom {
  height: 80dvh;
}
@media (min-width: 1024px) {
  .offcanvas.offcanvas-bottom {
    height: 60dvh;
  }
}

main {
  background-color: #000;
}

/* ===== HERO ===== */
.hero {
  min-height: 100dvh;
}
@media (min-width: 1024px) {
  .hero {
    min-height: 1000px;
  }
}
.hero {
  background: url("../../images/png/Hero.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .hero-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 600px;
  text-align: center;
  color: #fff;
  justify-items: center;
}
@media (min-width: 1024px) {
  .hero .hero-content .hero-tag {
    font-size: 36px;
  }
}
.hero .hero-content h1 {
  font-size: 60px;
  line-height: 1.1;
}
.hero .hero-content h1 span {
  color: #E7000B;
}
@media (min-width: 1024px) {
  .hero .hero-content h1 {
    font-size: 128px;
  }
}
.hero .hero-content p {
  margin: 20px 0;
  color: #bdbdbd;
  font-size: 24px;
}

.about {
  padding: 100px 0;
  background-color: #fff;
}
.about .btn.btn-primary {
  border-radius: 0;
  padding: 16px 32px;
}
.about .about-stats {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .about .about-stats {
    margin-top: 0;
    padding-left: 24px;
  }
}
.about .about-stat-card {
  background: #fff;
  border: 1px solid #ededed;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.12);
  padding: 34px 22px;
  text-align: center;
  height: 100%;
}
.about .about-stat-icon {
  width: 64px;
  height: 64px;
  background: #E7000B;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.about .about-stat-icon i {
  color: #fff;
  font-size: 26px;
}
.about .about-stat-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: 44px;
  line-height: 1;
  color: #0a0a0a;
  margin-bottom: 12px;
}
.about .about-stat-label {
  font-size: 14px;
  letter-spacing: 1px;
  color: #404040;
  text-transform: uppercase;
}
.about .mission-card {
  padding: 48px;
  background-color: #000;
}
@media (min-width: 1024px) {
  .about .mission-card p {
    font-size: 30px;
  }
}
@media (min-width: 1024px) {
  .about .mission-card h1 {
    font-size: 48px;
  }
}
.about .mission-card span {
  color: #D4D4D4;
  font-size: 18px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 16px 0 16px;
  background: #262626;
}
.footer .footer-bottom {
  border-top: 1px solid #fff;
  padding: 20px 0;
}

/*  POLICY PAGE CSS START HERE */
.policy-content {
  position: relative;
  /* Custom to this site */
  background-color: #ffffff;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (min-width: 1024px) {
  .policy-content {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.policy-content .terms-content {
  font-size: 16px;
  color: rgba(27, 37, 52, 0.6);
  font-weight: 400;
}
.policy-content .terms-content span {
  font-size: 16px;
  color: rgba(27, 37, 52, 0.6);
  font-weight: 400;
}
@media (max-width: 375px) {
  .policy-content .terms-content {
    font-size: 14px;
  }
}
.policy-content .terms-content h1,
.policy-content .terms-content h2 {
  color: #E7000B;
  font-style: normal;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.3;
  margin: 0;
  padding: 50px 0 15px 0;
}
@media (max-width: 1199px) {
  .policy-content .terms-content h1,
  .policy-content .terms-content h2 {
    padding: 40px 0 15px 0;
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .policy-content .terms-content h1,
  .policy-content .terms-content h2 {
    padding: 30px 0 10px 0;
    font-size: 20px;
  }
}
@media (max-width: 375px) {
  .policy-content .terms-content h1,
  .policy-content .terms-content h2 {
    font-size: 18px;
    padding: 20px 0 10px 0;
  }
}
.policy-content .terms-content h6 {
  margin: 0 0 15px 0;
  font-size: 18px;
  color: rgba(27, 37, 52, 0.65);
  line-height: 1.3;
}
.policy-content .terms-content b {
  font-size: 18px;
  line-height: 1.3;
  color: #E7000B;
}
@media (max-width: 575px) {
  .policy-content .terms-content b {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .policy-content .terms-content b {
    font-size: 15px;
  }
}
.policy-content .terms-content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #E7000B;
  margin-bottom: 15px;
}
.policy-content .terms-content p.version {
  font-size: 14px;
  color: rgba(27, 37, 52, 0.6);
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}
.policy-content .terms-content a {
  color: #E7000B;
  transition: 0.3s all;
  font-weight: 500;
}
.policy-content .terms-content a:hover {
  color: #E7000B;
  transition: 0.3s all;
}
.policy-content .print {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  right: 0;
  padding: 20px 14px;
  writing-mode: vertical-rl;
  color: #fff;
  background: #E7000B;
  box-shadow: 0px 4px 60px rgba(30, 92, 255, 0.2);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
  transform: rotate(-180deg);
  transition: 0.3s all;
  border-radius: 0px 12px 12px 0px;
  position: sticky;
  width: -moz-max-content;
  width: max-content;
  float: right;
  top: 140px;
  z-index: 2;
}
@media (max-width: 1399px) {
  .policy-content .print {
    padding: 20px 10px;
  }
}
@media (max-width: 991px) {
  .policy-content .print {
    writing-mode: unset;
    transform: none;
    border-radius: 12px 0 0 12px;
    padding: 10px;
    font-size: 0;
    transition: 0.3s all;
  }
}
@media (max-width: 575px) {
  .policy-content .print {
    padding: 8px;
  }
}
.policy-content .print img {
  padding-top: 10px;
}
@media (max-width: 991px) {
  .policy-content .print img {
    padding: 0;
    transform: rotate(90deg);
  }
}

.mb-self h2 {
  margin-bottom: 10px;
}

/*  POLICY PAGE CSS END'S HERE *//*# sourceMappingURL=main.css.map */