/* ================================
   FONTS
================================ */
@font-face {
  font-family: 'PPNeueMachina';
  src: url('../../fonts/PPNeueMachina-PlainUltrabold.ttf');
  font-weight: 900;
}

@font-face {
  font-family: 'PPNeueMachina';
  src: url('../../fonts/PPNeueMachina-PlainUltrabold.otf');
  font-weight: 900;
}

@font-face {
  font-family: 'PPNeueMachina1';
  src: url('../../fonts/PPNeueMachina-PlainRegular.otf');
}

@font-face {
  font-family: 'Gothic';
  src: url('../../fonts/GOTHIC.TTF');
}

/* ================================
   GLOBAL STYLES (DESKTOP DEFAULT)
================================ */
body {
  font-family: 'Gothic', sans-serif !important;
  background: black;
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 1.6;
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
}

p,
a,
b,
li,
span {
  font-family: 'Gothic', sans-serif !important;
  font-size: 14px;
  line-height: 1.6;
}

.form-control, .form-select{
  z-index: 999;
  position: relative;
}

.main-content {
  background: linear-gradient(0deg, rgba(2, 2, 2, 1) 0%, rgba(55, 55, 55, 1) 49%, rgba(2, 2, 2, 1) 100%);
  position: relative;
  background-position: center;
  background-size: cover;
  margin-left: 220px;
  padding: 50px;
  overflow: visible !important;
}

.main-content::before {
  content: '';
  position: absolute;
  bottom: -53px;
  width: 220px;
  height: 600px;
  left: 0px;
  background: url('../../images/base/dotsright.svg') no-repeat;
  z-index: 1;
}

.main-content::after {
  content: '';
  position: absolute;
  top: 0px;
  right: 0px;
  width: 300px;
  height: 480px;

  background-position: right bottom;
  background: url('../../images/base/dotsleft.svg') no-repeat;
  z-index: 1;
}

/* ================================
   HEADINGS
================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'PPNeueMachina' !important;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 44px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 26px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
}

.alert{
  z-index: 999;
}
.alert .btn-close{
  float: right;
}

/* HERO */
.hero-heading {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-top: 40px;
    line-height: 1.1;
    font-family: 'PPNeueMachina' !important;
    text-align: center;
}

.hero-heading span {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    font-family: 'PPNeueMachina' !important;
}

.hero-subtitle {
    font-size: 18px;
    color: #d6d6d6;
    margin-top: 10px;
    padding-bottom: 40px;
    font-weight: 400;
    text-align: center;
}

/* table pagination css */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pagination {
  list-style: none;
  display: flex;
  gap: 6px;
  padding: 0;
}

.page-item .page-link {
  padding: 6px 12px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #333;
  border-radius: 4px;
}

.page-item.active .page-link {
  background-image: linear-gradient(101deg, #CC0066, #6666CC), linear-gradient(101deg, #CC0066, #6666CC) !important;
  color: #fff;
  border-color: none;
}

.page-item.disabled .page-link {
  color: #999;
  pointer-events: none;
}


/* ================================
   MOBILE VIEW (max-width: 767px)
================================ */
@media (max-width: 767px) {

  body {
    font-size: 14px;
    letter-spacing: 0.5px;
    background-attachment: scroll;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  p,
  a,
  li,
  span {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* ================================
   TABLET VIEW (768px – 1024px)
================================ */
@media (min-width: 768px) and (max-width: 1024px) {

  body {
    font-size: 15px;
    letter-spacing: 0.8px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  p,
  a,
  li,
  span {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* ================================
   LARGE DESKTOP (1440px+)
================================ */
@media (min-width: 1440px) {

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 52px;
  }

  h3 {
    font-size: 38px;
  }

  p {
    font-size: 17px;
  }
}