/* Base Styles */
body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
  color: #fff;
}

.largeText {
  font-size: 3rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .largeText {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 480px) {
  .largeText {
    font-size: 1.75rem !important; /* Slightly larger for small devices (e.g., small tablets) */
  }
}
@media (min-width: 768px) {
  .largeText {
    font-size: 2rem !important;
  }
}
@media (min-width: 1200px) {
  .largeText {
    font-size: 3rem !important;
  }
}
@media (min-width: 2400px) {
  .largeText {
    font-size: 4rem !important;
  }
}

.mediumText {
  font-size: 2rem !important;
}
@media only screen and (max-width: 767px) {
  .mediumText {
    font-size: 1rem !important;
  }
}
@media (min-width: 500px) {
  .mediumText {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 768px) {
  .mediumText {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 1200px) {
  .mediumText {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 2400px) {
  .mediumText {
    font-size: 2.5rem !important;
  }
}

/* Default Typography */
@media only screen and (max-width: 767px) {
  h1 h1,
  h2 h1,
  h3 h1,
  h4 h1,
  h5 h1,
  h6 h1 {
    font-size: 1.75rem !important;
  }
  h1 h2,
  h2 h2,
  h3 h2,
  h4 h2,
  h5 h2,
  h6 h2 {
    font-size: 1.65rem !important;
  }
  h1 h3,
  h2 h3,
  h3 h3,
  h4 h3,
  h5 h3,
  h6 h3 {
    font-size: 1.5rem !important;
  }
  h1 h4,
  h2 h4,
  h3 h4,
  h4 h4,
  h5 h4,
  h6 h4 {
    font-size: 1.35rem !important;
  }
  h1 h5,
  h2 h5,
  h3 h5,
  h4 h5,
  h5 h5,
  h6 h5 {
    font-size: 1.25rem !important;
  }
  h1 h6,
  h2 h6,
  h3 h6,
  h4 h6,
  h5 h6,
  h6 h6 {
    font-size: 1.15rem !important;
  }
}

p {
  font-weight: 500;
  margin: 0.5em 0;
}

/* Responsive Typography */
/* Mobile (default styles for smaller screens) */
@media only screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 0.75rem;
  }
  h4 {
    font-size: 0.85rem;
  }
  h5 {
    font-size: 0.75rem;
  }
  h6 {
    font-size: 0.65rem;
  }
  a,
  p,
  li,
  span,
  input,
  button {
    font-size: 1rem; /* Relative to the base font size (16px) */
    line-height: 1.5;
  }
}
/* Typography for a, p, and li */
a,
p,
li,
span,
input,
button {
  font-size: 1rem; /* Relative to the base font size (16px) */
  line-height: 1.5;
}

/* Laptop */
@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2.25rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.75rem;
  }
  h5 {
    font-size: 1.5rem;
  }
  h6 {
    font-size: 1.25rem;
  }
  a,
  p,
  li,
  span,
  input,
  button {
    font-size: 1rem; /* Consistent with body size */
  }
}
/* Desktop Screens */
@media (min-width: 1200px) {
  body {
    font-size: 16px; /* Larger base font size for desktops */
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1.25rem;
  }
  h6 {
    font-size: 1rem;
  }
  a,
  p,
  li,
  i,
  span,
  input,
  button {
    font-size: 1.1rem; /* Slightly increase relative font size */
    font-size: clamp(1rem, 0.8rem + 0.1vw, 2rem);
  }
}
/* 4K Screens */
@media (min-width: 2400px) {
  body {
    font-size: 24px; /* Significant base font size increase for 4K */
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 2rem;
  }
  h5 {
    font-size: 1.75rem;
  }
  h6 {
    font-size: 1.5rem;
  }
  div {
    font-weight: 500;
    letter-spacing: 1.1;
    font-size: clamp(1rem, 1rem + 0.4vw, 2rem) !important;
  }
  a,
  p,
  li,
  span,
  input,
  button {
    font-weight: 500;
    letter-spacing: 1.1;
    font-size: clamp(1rem, 1rem + 0.6vw, 2rem) !important;
  }
}
/* Base Styles */
body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
  color: #fff;
}

.largeText {
  font-size: 3rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .largeText {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 480px) {
  .largeText {
    font-size: 1.75rem !important; /* Slightly larger for small devices (e.g., small tablets) */
  }
}
@media (min-width: 768px) {
  .largeText {
    font-size: 2rem !important;
  }
}
@media (min-width: 1200px) {
  .largeText {
    font-size: 3rem !important;
  }
}
@media (min-width: 2400px) {
  .largeText {
    font-size: 4rem !important;
  }
}

.mediumText {
  font-size: 2rem !important;
}
@media only screen and (max-width: 767px) {
  .mediumText {
    font-size: 1rem !important;
  }
}
@media (min-width: 500px) {
  .mediumText {
    font-size: 1.25rem !important;
  }
}
@media (min-width: 768px) {
  .mediumText {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 1200px) {
  .mediumText {
    font-size: 1.75rem !important;
  }
}
@media (min-width: 2400px) {
  .mediumText {
    font-size: 2.5rem !important;
  }
}

/* Default Typography */
@media only screen and (max-width: 767px) {
  h1 h1,
  h2 h1,
  h3 h1,
  h4 h1,
  h5 h1,
  h6 h1 {
    font-size: 1.75rem !important;
  }
  h1 h2,
  h2 h2,
  h3 h2,
  h4 h2,
  h5 h2,
  h6 h2 {
    font-size: 1.65rem !important;
  }
  h1 h3,
  h2 h3,
  h3 h3,
  h4 h3,
  h5 h3,
  h6 h3 {
    font-size: 1.5rem !important;
  }
  h1 h4,
  h2 h4,
  h3 h4,
  h4 h4,
  h5 h4,
  h6 h4 {
    font-size: 1.35rem !important;
  }
  h1 h5,
  h2 h5,
  h3 h5,
  h4 h5,
  h5 h5,
  h6 h5 {
    font-size: 1.25rem !important;
  }
  h1 h6,
  h2 h6,
  h3 h6,
  h4 h6,
  h5 h6,
  h6 h6 {
    font-size: 1.15rem !important;
  }
}

p {
  font-weight: 500;
  margin: 0.5em 0;
}

/* Responsive Typography */
/* Mobile (default styles for smaller screens) */
@media only screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 0.75rem;
  }
  h4 {
    font-size: 0.85rem;
  }
  h5 {
    font-size: 0.75rem;
  }
  h6 {
    font-size: 0.65rem;
  }
  a,
  p,
  li,
  span,
  input,
  button {
    font-size: 1rem; /* Relative to the base font size (16px) */
    line-height: 1.5;
  }
}
/* Typography for a, p, and li */
a,
p,
li,
span,
input,
button {
  font-size: 1rem; /* Relative to the base font size (16px) */
  line-height: 1.5;
}

/* Laptop */
@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2.25rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.75rem;
  }
  h5 {
    font-size: 1.5rem;
  }
  h6 {
    font-size: 1.25rem;
  }
  a,
  p,
  li,
  span,
  input,
  button {
    font-size: 1rem; /* Consistent with body size */
  }
}
/* Desktop Screens */
@media (min-width: 1200px) {
  body {
    font-size: 16px; /* Larger base font size for desktops */
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1.25rem;
  }
  h6 {
    font-size: 1rem;
  }
  a,
  p,
  li,
  i,
  span,
  input,
  button {
    font-size: 1.1rem; /* Slightly increase relative font size */
    font-size: clamp(1rem, 0.8rem + 0.1vw, 2rem);
  }
}
/* 4K Screens */
@media (min-width: 2400px) {
  body {
    font-size: 24px; /* Significant base font size increase for 4K */
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 2rem;
  }
  h5 {
    font-size: 1.75rem;
  }
  h6 {
    font-size: 1.5rem;
  }
  div {
    font-weight: 500;
    letter-spacing: 1.1;
    font-size: clamp(1rem, 1rem + 0.4vw, 2rem) !important;
  }
  a,
  p,
  li,
  span,
  input,
  button {
    font-weight: 500;
    letter-spacing: 1.1;
    font-size: clamp(1rem, 1rem + 0.6vw, 2rem) !important;
  }
}
* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font-family: "Poppins", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: right;
}

.child {
  flex: 1;
}

.no-flex {
  flex: none;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.center {
  text-align: center;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify_end {
  justify-content: flex-end;
}

.w100 {
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  .w100 {
    width: 100%;
  }
}

.w95 {
  width: 95%;
}
@media only screen and (max-width: 1199px) {
  .w95 {
    width: 100%;
  }
}

.w90 {
  width: 90%;
}
@media only screen and (max-width: 1199px) {
  .w90 {
    width: 100%;
  }
}

.w85 {
  width: 85%;
}
@media only screen and (max-width: 1199px) {
  .w85 {
    width: 100%;
  }
}

.w80 {
  width: 80%;
}
@media only screen and (max-width: 1199px) {
  .w80 {
    width: 95%;
  }
}

.w75 {
  width: 75%;
}
@media only screen and (max-width: 1199px) {
  .w75 {
    width: 100%;
  }
}

.w70 {
  width: 70%;
}
@media only screen and (max-width: 767px) {
  .w70 {
    width: 70%;
  }
}
@media only screen and (max-width: 575px) {
  .w70 {
    width: 100%;
  }
}

.w65 {
  width: 65%;
}

.w60 {
  width: 60%;
}

.w55 {
  width: 55%;
}
@media only screen and (max-width: 991px) {
  .w55 {
    width: 100%;
  }
}

.w50 {
  width: 50%;
}

.w45 {
  width: 45%;
}

.w40 {
  width: 40%;
}

.w35 {
  width: 35%;
}

.w30 {
  width: 30%;
}
@media only screen and (max-width: 991px) {
  .w30 {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .w30 {
    width: 70%;
  }
}
@media only screen and (max-width: 575px) {
  .w30 {
    width: 100%;
  }
}

.w25 {
  width: 25%;
}
@media only screen and (max-width: 991px) {
  .w25 {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .w25 {
    width: 70%;
  }
}
@media only screen and (max-width: 575px) {
  .w25 {
    width: 100%;
  }
}

.w20 {
  width: 20%;
}
@media only screen and (max-width: 991px) {
  .w20 {
    width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  .w20 {
    width: 50%;
  }
}
@media only screen and (max-width: 575px) {
  .w20 {
    width: 100%;
  }
}

.w15 {
  width: 15%;
}
@media only screen and (max-width: 1199px) {
  .w15 {
    width: 100%;
  }
}

.w10 {
  width: 10%;
}
@media only screen and (max-width: 1199px) {
  .w10 {
    width: 100%;
  }
}

.fees-header-container {
  font-family: "Segoe UI", sans-serif;
  width: 100%;
  max-width: 1400px;
  justify-content: center;
  margin: auto;
  background-color: #f2f8f8;
}
.fees-header-container .fee-structure {
  padding: 2rem;
  color: #333;
  max-width: 1000px;
  margin: auto;
}
.fees-header-container .fee-structure h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 0.2rem;
  color: #4caf50;
  line-height: 1.3;
}
.fees-header-container .fee-structure .session {
  text-align: center;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffc107;
}
.fees-header-container .fee-structure .session strong {
  color: #555;
  font-weight: 600;
}
.fees-header-container .fee-structure table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.fees-header-container .fee-structure table th,
.fees-header-container .fee-structure table td {
  border: 1px solid #999;
  padding: 0.75rem;
  text-align: center;
  font-size: 0.95rem;
}
.fees-header-container .fee-structure table .col-header {
  background-color: #3896fb;
  color: white;
}
.fees-header-container .fee-structure table .col-header:nth-child(2) {
  background-color: #5b9bd5;
}
.fees-header-container .fee-structure table .col-header:nth-child(3) {
  background-color: #ffc107;
}
.fees-header-container .fee-structure table .col-header:nth-child(4) {
  background-color: #00bcd4;
}
.fees-header-container .fee-structure table .col-header:nth-child(5) {
  background-color: #4caf50;
}
.fees-header-container .fee-structure table .col-header:nth-child(6) {
  background-color: #e5ac02;
}
.fees-header-container .fee-structure table .col-header:nth-child(7) {
  background-color: #08c677;
}
.fees-header-container .fee-structure table .row-header {
  background-color: #00bcd4;
  color: white;
  font-weight: 600;
}
.fees-header-container .fee-structure table thead {
  background-color: #f9eaea;
}
.fees-header-container .fee-structure table thead th {
  font-weight: bold;
}
.fees-header-container .fee-structure table tbody tr:nth-child(even) {
  background-color: #e6e5e5;
}
.fees-header-container .fee-structure .notes {
  font-size: 0.9rem;
}
.fees-header-container .fee-structure .notes h4 {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  text-decoration: underline;
}
.fees-header-container .fee-structure .notes ol {
  padding-left: 1.2rem;
}
.fees-header-container .fee-structure .notes ol li {
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.fees-header-container .fee-structure .notes ol li em {
  display: block;
  font-style: italic;
  color: #555;
  margin-top: 0.3rem;
}
.fees-header-container .fees-footer-logos {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 5rem;
  gap: 5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.fees-header-container .fees-footer-logos img .fees-logo {
  width: 100px;
  height: auto;
  margin: 0 1rem;
}
@media (max-width: 767px) {
  .fees-header-container .fees-footer-logos img .fees-logo {
    width: 80px;
  }
}
.fees-header-container .fees-footer-logos img .fees-stamp {
  width: 100px;
  height: auto;
  margin: 0 1rem;
}
@media (max-width: 767px) {
  .fees-header-container .fees-footer-logos img .fees-stamp {
    width: 80px;
  }
}/*# sourceMappingURL=fees.css.map */