/* Map old Font Awesome family names to the Pro files already on the site. */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/fa-solid-900.woff2") format("woff2"),
       url("../fonts/fa-solid-900.woff") format("woff");
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/fa-regular-400.woff2") format("woff2"),
       url("../fonts/fa-regular-400.woff") format("woff");
}

/* Homepage background images moved from inline styles */
.bg-hero-1 {
  background-image: url("../images/hero1.jpg");
}

.bg-hero-2 {
  background-image: url("../images/hero2.jpg");
}

.bg-hero-3 {
  background-image: url("../images/hero3.jpg");
}

.bg-funfact-shape {
  background-image: url("../images/stats-bg.png");
}

.testimonial-five__inner {
  align-items: stretch;
}

.testimonial-five__inner .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.testimonial-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--theme-color4);
  color: var(--theme-color1);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
  text-transform: uppercase;
}

.testimonial-five__single-card .text {
  font-size: 22.5px;
  line-height: 30px;
}

@media (max-width: 991.98px) {
  .testimonial-five__single-card .text {
    font-size: 18px;
    line-height: 22.5px;
  }
}

.bg-page-title {
  background-image: url("../images/inner-bg.jpg");
}

.page-title:before {
  background: linear-gradient(to left, #3c682f 0%, #0e3639 100%);
  background: linear-gradient(
    to left,
    color-mix(in srgb, #0e3639 72%, #b4e717 28%) 0%,
    #0e3639 100%
  );
  opacity: 0.6;
}

.page-title-inner {
  padding: 300px 0 54px;
}

.page-title-inner .title-outer,
.page-title-inner .auto-container {
  position: relative;
  z-index: 1;
}

.page-title .title {
  line-height: 50px;
}

.page-title-inner .title-outer .text {
  margin: 16px auto 0;
  max-width: 640px;
}

.inner-page {
  padding: 50px 0 70px;
  overflow: visible;
}

.inner-page__layout {
  align-items: stretch;
}

.inner-page__layout > [class*="col-"] {
  overflow: visible;
  padding-top: 0;
}

.inner-page__content {
  max-width: 100%;
}

.inner-block {
  margin: 0;
  padding: 0;
  border: 0;
}

.inner-block + .inner-block {
  margin-top: 32px;
}

.inner-block .h2.title {
  margin: 0 0 22px;
  font-size: 32px;
  line-height: 1.3;
  color: var(--theme-color1);
}

.inner-block > .h3.title {
  margin: 22px 0 0;
  font-size: 22px;
  line-height: 1.35;
  color: var(--theme-color1);
}

.inner-block + .inner-block .h2.title {
  margin-top: 0;
}

.inner-block p {
  margin: 0 0 14px;
  color: rgba(16, 16, 16, 0.7);
  line-height: 26px;
}

.inner-block p:last-child {
  margin-bottom: 0;
}

.page-photo-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 22px;
}

.page-photo {
  position: relative;
  overflow: hidden;
}

.page-photo .img-fluid {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease-in-out;
}

.page-photo:hover .img-fluid {
  transform: scale(1.06);
}

.about-page-photo {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 0 22px;
  min-height: 320px;
  background-color: color-mix(in srgb, var(--theme-color1) 10%, var(--theme-color3));
}

.about-page-photo--section {
  margin: 28px 0 0;
}

.about-page-photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.about-page-photo__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color1);
  font-size: 42px;
}

.about-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
  margin-top: 18px;
}

.about-check-grid + p {
  margin-top: 22px;
}

.about-check-item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.about-check-item__icon {
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--theme-color-white);
  border: 1px solid rgba(16, 16, 16, 0.2);
  color: var(--theme-color1);
  font-size: 14px;
  line-height: 1;
}

.about-check-item__text {
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 8px;
  color: var(--theme-color1);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.about-course-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.about-course-grid .service-six__single-card {
  margin: 0;
  height: 100%;
  background-color: var(--theme-color3);
}

.about-course-grid .service-six__single-card .content .title {
  color: var(--theme-color1);
}

.about-course-grid .service-six__single-card:hover .content .title {
  color: var(--theme-color-white);
}

.course-card-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
  overflow: hidden;
}

.course-card-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.funfact-four .image {
  height: auto;
}

.funfact-four .image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: unset;
}

.funfact-four__single-item {
  display: flex;
  flex-direction: column;
  height: 224px;
  padding: 24px 32px 15px;
  overflow: hidden;
}

.funfact-four__single-item::before {
  top: 52px;
  height: 56px;
}

.funfact-four__single-item .num {
  margin-top: auto;
  padding-top: 8px;
  font-size: 56px;
}

.funfact-four__single-item .small-text {
  margin: 6px 0 0;
}

.funfact-four__single-item.style-2 .tag,
.funfact-four__single-item.style-2 .small-text {
  color: var(--theme-color-white);
}

@media (max-width: 1699.98px) {
  .funfact-four__single-item {
    padding: 24px 20px 15px;
  }
}

.inner-block--dark {
  background-color: var(--theme-color1);
  padding: 32px;
}

.inner-block--dark .h2.title {
  color: var(--theme-color-white);
}

.inner-block--dark p {
  color: rgba(255, 255, 255, 0.78);
}

.inner-block--dark .about-check-item__text {
  color: var(--theme-color-white);
}

.inner-block--dark .about-check-item__icon {
  background-color: color-mix(in srgb, var(--theme-color4) 22%, var(--theme-color1));
  border-color: var(--theme-color4);
  color: var(--theme-color4);
}

.inner-block--dark .about-value-tags li {
  background-color: color-mix(in srgb, var(--theme-color4) 22%, var(--theme-color1));
  border-color: var(--theme-color4);
  color: var(--theme-color-white);
}

.inner-block--dark .inner-dark-grid > div:last-child .h2.title {
  margin-top: 0;
}

.inner-dark-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 32px;
}

.about-value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.about-value-tags + p {
  margin-top: 22px;
}

.about-value-tags--left {
  justify-content: flex-start;
}

.about-value-tags li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 50px;
  background-color: color-mix(in srgb, var(--theme-color4) 20%, #fff);
  color: var(--theme-color1);
  border: 1px solid color-mix(in srgb, var(--theme-color1) 40%, var(--theme-color4));
  font-size: 13px;
  font-weight: 500;
}

.inner-block--cta {
  background-color: var(--theme-color3);
  padding: 32px;
}

.about-page-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.inner-block--cta > .about-page-cta__buttons:first-child {
  margin-top: 0;
}

.page-sidebar {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 0;
  padding-top: 0;
}

.main-header.header-2,
.header-brand,
.header-brand-inner,
.header-brand .logo-box,
.header-brand .logo,
.header-brand .logo a {
  overflow: visible;
}

.header-brand .logo img {
  max-height: 90px;
  object-fit: contain;
}

.mobile-header-logo {
  display: none;
}

@media (max-width: 1199.98px) {
  .header-brand .logo-box {
    display: none;
  }

  .header-brand-inner {
    justify-content: center;
  }

  .header-brand-media {
    width: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    gap: 6px;
    padding: 6px 10px;
  }

  .header-brand-media img {
    width: 28px;
    height: 28px;
  }

  .header-2.header-style-two > .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }

  .header-2.header-style-two .header-lower,
  .header-2.header-style-two .header-lower .main-box,
  .header-2.header-style-two .header-lower .nav-outer {
    background-color: var(--theme-color3);
    background-color: color-mix(in srgb, var(--theme-color3) 88%, var(--theme-color1) 12%);
  }

  .header-2.header-style-two .header-lower .nav-outer {
    padding: 15px 25px;
    box-shadow: none;
    border-bottom: none;
  }

  .header-lower .mobile-header-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
  }

  .header-lower .mobile-header-logo img {
    display: block;
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
  }

  .header-2.header-style-two .header-lower .main-box .outer-box {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }
}

@media (max-width: 399.98px) {
  .header-2.header-style-two .header-lower .nav-outer {
    padding: 15px 25px;
  }
}

@media (max-width: 479.98px) {
  .header-lower .mobile-header-logo img {
    height: 42px;
    max-width: 180px;
  }
}

.header-2.header-style-two .header-lower {
  position: relative;
  z-index: 3;
}

.header-2.header-style-two .header-lower .nav-outer,
.header-2.header-style-two .header-lower .outer-box,
.header-2.header-style-two .sticky-header .nav-outer {
  overflow: visible;
}

.header-2.header-style-two .main-menu .navigation > li > ul,
.header-2.header-style-two .sticky-header .main-menu .navigation > li > ul {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.header-2.header-style-two .main-menu .navigation > li.dropdown:hover > ul,
.header-2.header-style-two .sticky-header .main-menu .navigation > li.dropdown:hover > ul {
  transform: translateX(-50%);
}

.header-2.header-style-two .main-menu .navigation > li > ul.from-right,
.header-2.header-style-two .sticky-header .main-menu .navigation > li > ul.from-right {
  left: 50%;
  right: auto;
}

.header-2.header-style-two .main-menu .navigation > li > ul > li > ul,
.header-2.header-style-two .main-menu .navigation > li > ul.from-right > li.dropdown > ul,
.header-2.header-style-two .sticky-header .main-menu .navigation > li > ul > li > ul,
.header-2.header-style-two .sticky-header .main-menu .navigation > li > ul.from-right > li.dropdown > ul {
  left: 100%;
  right: auto;
}

.main-menu .navigation > li > ul > li.dropdown > a:after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
}

.footer-site-grid .usefull-link li a::before,
.footer-important-bar__links li a::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
}

.header-2.header-style-two .header-lower .nav-outer,
.header-2.header-style-two .sticky-header {
  box-shadow: 0 8px 24px rgba(16, 16, 16, 0.14);
}

@media (max-width: 1199.98px) {
  .header-2.header-style-two .header-lower .nav-outer {
    box-shadow: none;
    border-bottom: none;
  }
}

.header-2.header-style-two .sticky-header {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, visibility 0.5s ease;
}

.header-2.header-style-two .sticky-header.fixed-header {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.footer-wrapper {
  position: relative;
  z-index: 4;
}

.page-sidebar__box {
  background-color: transparent;
}

.page-sidebar__title {
  margin: 0 0 20px;
  padding: 0 0 12px;
  border-bottom: 2px solid var(--theme-color4);
  background: none;
  color: var(--theme-color1);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}

.page-sidebar__group + .page-sidebar__group {
  margin-top: 24px;
}

.page-sidebar__group-title {
  margin: 0 0 12px;
  color: var(--theme-color1);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-sidebar__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-sidebar__links li {
  margin: 0;
}

.page-sidebar__links li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background-color: var(--theme-color3);
  color: var(--theme-color1);
  font-size: 15px;
  line-height: 1.45;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  border-left: 3px solid transparent;
}

.page-sidebar__links li a i {
  color: var(--theme-color1);
  font-size: 13px;
  opacity: 0.55;
}

.page-sidebar__links li a:hover {
  background-color: color-mix(in srgb, var(--theme-color4) 22%, var(--theme-color3));
  border-left-color: var(--theme-color4);
  color: var(--theme-color1);
}

.page-sidebar__links li.active a {
  background-color: var(--theme-color1);
  border-left-color: var(--theme-color4);
  color: var(--theme-color-white);
}

.page-sidebar__links li.active a i,
.page-sidebar__links li a:hover i {
  color: var(--theme-color4);
  opacity: 1;
}

@media (max-width: 1199.98px) {
  .page-title-inner {
    padding: 72px 0 48px;
  }
}

@media (max-width: 991.98px) {
  .page-title-inner {
    padding: 56px 0 40px;
  }

  .page-sidebar {
    margin-top: 48px;
  }

  .about-course-grid,
  .inner-dark-grid,
  .about-check-grid,
  .vision-value-grid,
  .message-with-photo,
  .training-areas {
    grid-template-columns: 1fr;
  }

  .calendar-list__item {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-page-photo img {
    height: 240px;
  }

  .inner-block + .inner-block {
    margin-top: 32px;
  }
}

@media (max-width: 767.98px) {
  .inner-block .h2.title {
    font-size: 22px;
  }

  .inner-block--dark,
  .inner-block--cta,
  .inner-block--light {
    padding: 24px 18px;
  }

  .process-step,
  .training-area {
    padding: 22px 16px;
  }

  .message-photo--vertical {
    min-height: 320px;
  }

  .content-update-notice {
    flex-direction: column;
    gap: 14px;
    padding: 22px 18px;
  }

  .faculty-table-wrap {
    overflow: visible;
  }

  .faculty-table thead {
    display: none;
  }

  .faculty-table,
  .faculty-table tbody,
  .faculty-table tr,
  .faculty-table td {
    display: block;
    width: 100%;
  }

  .faculty-table tbody tr {
    margin-bottom: 14px;
    padding: 6px 0;
    background-color: var(--theme-color3);
    border: 0;
  }

  .faculty-table.table-striped > tbody > tr:nth-of-type(even) > * {
    --bs-table-bg-type: transparent;
  }

  .faculty-table tbody tr:nth-child(even) {
    background-color: color-mix(in srgb, var(--theme-color3) 42%, #fff);
  }

  .faculty-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 16px;
    border: 0;
    text-align: right;
  }

  .faculty-table tbody td::before {
    content: attr(data-label);
    flex: 0 0 42%;
    color: var(--theme-color1);
    font-weight: 600;
    text-align: left;
  }
}

.inner-block .message-quote {
  margin: 0 0 24px;
  color: var(--theme-color1);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.message-with-photo {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.message-photo--vertical {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  min-height: 420px;
  aspect-ratio: 3 / 4;
  background-color: color-mix(in srgb, var(--theme-color1) 10%, var(--theme-color3));
  color: var(--theme-color1);
  font-size: 42px;
}

.message-photo--vertical img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.message-with-photo__copy p:last-child {
  margin-bottom: 0;
}

.message-follow {
  margin-top: 22px;
}

.inner-block .message-signoff {
  margin-top: 22px;
  margin-bottom: 0;
  padding: 16px 20px;
  background-color: color-mix(in srgb, var(--theme-color4) 28%, var(--theme-color3));
  border-left: 4px solid var(--theme-color1);
  border-radius: 8px;
  color: var(--theme-color1);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
}

@media (max-width: 991.98px) {
  .message-with-photo {
    grid-template-columns: 1fr;
  }

  .message-photo--vertical {
    max-width: 240px;
  }
}

.vision-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.vision-value-card {
  height: 100%;
  padding: 24px;
  background-color: var(--theme-color3);
}

.vision-value-card .h3.title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
  color: var(--theme-color1);
}

.vision-value-card p {
  margin: 0;
}

.vision-path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin: 18px 0 22px;
}

.vision-path__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.course-meta__item {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 18px;
  background-color: var(--theme-color3);
  color: var(--theme-color1);
}

.course-meta__label,
.course-meta__value {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.content-update-notice {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 28px;
  padding: 28px 24px;
  background-color: var(--theme-color3);
  border-left: 3px solid var(--theme-color4);
}

.inner-block > .content-update-notice:first-child {
  margin-top: 0;
}

.content-update-notice__icon {
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--theme-color4) 18%, #fff);
  color: var(--theme-color1);
  font-size: 20px;
}

.content-update-notice__copy .h3.title {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.35;
  color: var(--theme-color1);
}

.content-update-notice__copy p {
  margin: 0;
}

.content-update-notice__copy p + p {
  margin-top: 10px;
}

.eligibility-card__facts {
  margin: 0 0 16px;
}

.eligibility-card__facts p {
  margin: 0 0 6px;
  color: var(--theme-color1);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  transition: color 0.2s ease-in-out;
}

.service-six__single-card:hover .eligibility-card__facts p {
  color: var(--theme-color-white);
}

@media (max-width: 767.98px) {
  .service-six .row > [class*="col-"] {
    margin-bottom: 15px;
  }

  .work-three__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    justify-items: center;
    column-gap: 8px;
    row-gap: 24px;
    margin-top: 36px;
  }

  .work-three__single-item {
    width: min(152px, 100%);
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 14px 10px;
    overflow: hidden;
  }

  .work-three__single-item::before {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
  }

  .work-three__single-item .content {
    max-width: 100%;
  }

  .work-three__single-item .content .num {
    font-size: 10px;
    padding: 3px 8px;
    margin-bottom: 6px;
    line-height: 1.2;
  }

  .work-three__single-item .content .title {
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 4px;
  }

  .work-three__single-item .content .text {
    font-size: 11px;
    line-height: 1.3;
    margin: 0;
  }
}

@media (max-width: 379.98px) {
  .work-three__single-item {
    padding: 12px 8px;
  }

  .work-three__single-item .content .title {
    font-size: 12px;
  }

  .work-three__single-item .content .text {
    font-size: 10px;
    line-height: 1.25;
  }
}

.eligibility-card__facts p:last-child {
  margin-bottom: 0;
}

.admission-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}

.admission-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.admission-step__num {
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.admission-step__copy {
  min-width: 0;
}

.admission-step__copy .h3.title {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.35;
  color: var(--theme-color1);
}

.admission-step__copy p {
  margin: 0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}

.process-steps + p {
  margin-top: 22px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 26px;
}

.process-step__num {
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.process-step__copy {
  min-width: 0;
  flex: 1 1 auto;
}

.process-step__copy .h3.title {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.35;
}

.process-step__copy p {
  margin: 0;
}

.process-step__copy p + p {
  margin-top: 10px;
}

.process-step--dark {
  background-color: var(--theme-color1);
}

.process-step--light {
  background-color: var(--theme-color3);
}

.process-step--dark .process-step__num {
  background-color: var(--theme-color4);
  color: var(--theme-color1);
}

.process-step--light .process-step__num {
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
}

.process-step--dark .process-step__copy .h3.title {
  color: var(--theme-color-white);
}

.process-step--light .process-step__copy .h3.title {
  color: var(--theme-color1);
}

.process-step--dark .process-step__copy p {
  color: rgba(255, 255, 255, 0.78);
}

.process-step--dark .about-check-item__text {
  color: var(--theme-color-white);
}

.process-step--dark .about-check-item__icon {
  background-color: color-mix(in srgb, var(--theme-color4) 22%, var(--theme-color1));
  border-color: var(--theme-color4);
  color: var(--theme-color4);
}

.inner-block--light {
  background-color: var(--theme-color3);
  padding: 32px;
}

.training-areas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.training-area {
  padding: 28px 24px;
  height: 100%;
}

.training-area .h3.title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
}

.training-area p {
  margin: 0;
}

.training-area--dark {
  background-color: var(--theme-color1);
}

.training-area--light {
  background-color: var(--theme-color3);
}

.training-area--dark .h3.title {
  color: var(--theme-color-white);
}

.training-area--light .h3.title {
  color: var(--theme-color1);
}

.training-area--dark p {
  color: rgba(255, 255, 255, 0.78);
}

.training-area .eligibility-card__facts {
  margin: 16px 0 0;
}

.training-area .eligibility-card__facts + p,
.training-area .eligibility-specialisations + p {
  margin-top: 14px;
}

.training-area--dark .eligibility-card__facts p {
  color: var(--theme-color4);
}

.training-area--light .eligibility-card__facts p {
  color: var(--theme-color1);
}

.training-area .eligibility-specialisations {
  margin-top: 16px;
}

.training-area .eligibility-specialisations > p {
  margin: 0 0 10px;
  font-weight: 600;
}

.training-area--dark .eligibility-specialisations > p {
  color: var(--theme-color-white);
}

.training-area--light .eligibility-specialisations > p {
  color: var(--theme-color1);
}

.training-area .about-value-tags {
  margin-top: 0;
}

.training-area--dark .about-value-tags li {
  background-color: color-mix(in srgb, var(--theme-color4) 22%, var(--theme-color1));
  border-color: var(--theme-color4);
  color: var(--theme-color-white);
}

.training-area p + p {
  margin-top: 14px;
}

.training-area__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.training-area--dark .training-area__link {
  color: var(--theme-color4);
}

.training-area--light .training-area__link {
  color: var(--theme-color1);
}

.training-area__link:hover,
.training-area__link:focus-visible {
  text-decoration: underline;
}

.inner-block .faculty-table-wrap {
  margin-top: 22px;
}

a.training-area {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.training-area:hover,
a.training-area:focus-visible {
  box-shadow: 0 12px 28px rgba(14, 54, 57, 0.08);
}

a.training-area--dark:hover,
a.training-area--dark:focus-visible {
  box-shadow: 0 12px 28px rgba(14, 54, 57, 0.22);
}

.faculty-dept {
  margin-top: 36px;
}

.faculty-dept:first-of-type {
  margin-top: 18px;
}

.inner-block .faculty-dept .h3.title {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.35;
  color: var(--theme-color1);
}

.faculty-table-wrap {
  margin: 0;
}

.faculty-table {
  margin-bottom: 0;
  --bs-table-bg: #fff;
  --bs-table-striped-bg: color-mix(in srgb, var(--theme-color3) 28%, #fff);
  --bs-table-hover-bg: color-mix(in srgb, var(--theme-color4) 32%, #fff);
  --bs-table-striped-color: var(--theme-color1);
  --bs-table-hover-color: var(--theme-color1);
  --bs-table-color: rgba(16, 16, 16, 0.82);
}

.faculty-table thead th {
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
  font-weight: 600;
  white-space: nowrap;
  border-color: var(--theme-color1);
  vertical-align: middle;
}

.faculty-table tbody td {
  vertical-align: middle;
  border-color: color-mix(in srgb, var(--theme-color1) 12%, #fff);
}

.calendar-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.calendar-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  padding: 20px 22px;
  background-color: var(--theme-color3);
}

.calendar-list__info {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.calendar-list__icon {
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--theme-color-white);
  border: 1px solid rgba(16, 16, 16, 0.2);
  color: var(--theme-color1);
  font-size: 18px;
}

.calendar-list__info .h3.title {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  color: var(--theme-color1);
}

.calendar-list__soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 10px 18px;
  background-color: color-mix(in srgb, var(--theme-color4) 20%, #fff);
  border: 1px solid color-mix(in srgb, var(--theme-color1) 40%, var(--theme-color4));
  color: var(--theme-color1);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.infra-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: var(--theme-color3);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.infra-card:hover {
  background-color: color-mix(in srgb, var(--theme-color4) 18%, var(--theme-color3));
  box-shadow: 0 12px 28px rgba(14, 54, 57, 0.08);
}

a.infra-card {
  text-decoration: none;
  color: inherit;
}

.gallery-album-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 195px;
  background-color: color-mix(in srgb, var(--theme-color1) 10%, var(--theme-color3));
  color: var(--theme-color1);
  font-size: 32px;
}

.gallery-album-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-album-card .infra-card__image img {
  height: 195px;
}

.gallery-album-card .infra-card__body {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gallery-album-card .infra-card__body .h3.title {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.gallery-album-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(16, 16, 16, 0.2);
  border-radius: 50%;
  color: var(--theme-color1);
  font-size: 14px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.gallery-album-card:hover .gallery-album-card__arrow {
  background-color: var(--theme-color1);
  border-color: var(--theme-color1);
  color: var(--theme-color-white);
}

.gallery-album-back {
  margin-top: 16px;
}

.gallery-album-back--bottom {
  margin-top: 28px;
}

.infra-card__image {
  overflow: hidden;
}

.infra-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 150px;
  background-color: color-mix(in srgb, var(--theme-color1) 10%, var(--theme-color3));
  color: var(--theme-color1);
  font-size: 32px;
}

.infra-card__image img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.infra-card:hover .infra-card__image img {
  transform: scale(1.06);
}

.infra-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 16px 16px 18px;
}

.infra-card__body .h3.title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
  color: var(--theme-color1);
}

.infra-card__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.infra-card__body p + p {
  margin-top: 6px;
}

.recruiter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.recruiter-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 148px;
  padding: 22px 16px;
  background-color: var(--theme-color-white);
  border: 1px solid color-mix(in srgb, var(--theme-color1) 10%, #fff);
}

.inner-block--light .recruiter-card {
  background-color: var(--theme-color-white);
}

.recruiter-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 72px;
  color: var(--theme-color1);
  font-size: 32px;
}

.recruiter-card__label {
  margin-top: 8px;
  color: rgba(16, 16, 16, 0.5);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.highlight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: var(--theme-color3);
}

.highlight-card__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  background-color: color-mix(in srgb, var(--theme-color1) 10%, var(--theme-color3));
  color: var(--theme-color1);
  font-size: 32px;
}

.highlight-card__label {
  padding: 14px 16px;
  color: var(--theme-color1);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.achievement-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.achievement-gallery__item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--theme-color1) 10%, var(--theme-color3));
}

.achievement-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.achievement-gallery__item:hover img,
.achievement-gallery__item:focus-visible img {
  transform: scale(1.06);
}

.achievement-gallery__zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--theme-color1) 48%, transparent);
  color: var(--theme-color-white);
  font-size: 22px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.achievement-gallery__item:hover .achievement-gallery__zoom,
.achievement-gallery__item:focus-visible .achievement-gallery__zoom {
  opacity: 1;
}

@media (max-width: 1199.98px) {
  .infra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recruiter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .achievement-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .training-areas {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .recruiter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .infra-grid,
  .highlight-grid,
  .achievement-gallery,
  .gallery-album-grid {
    grid-template-columns: 1fr;
  }

  .infra-card__image img,
  .infra-card__placeholder {
    height: 200px;
  }

  .gallery-album-card .infra-card__image img,
  .gallery-album-card .gallery-album-card__placeholder {
    height: 260px;
  }
}

.admission-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admission-form__section {
  margin: 0;
  padding: 28px 24px;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid color-mix(in srgb, var(--theme-color1) 10%, #fff);
}

.admission-form__section:nth-child(even) {
  background-color: var(--theme-color3);
  border-color: color-mix(in srgb, var(--theme-color1) 8%, var(--theme-color3));
}

.admission-form__section .h3.title {
  margin: 0 0 20px;
  font-size: 22px;
  line-height: 1.35;
  color: var(--theme-color1);
}

.admission-form__section > p {
  margin: 0 0 18px;
}

.admission-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.admission-form__field--full {
  grid-column: 1 / -1;
}

.admission-form__field.is-hidden {
  display: none;
}

.admission-form__label {
  display: block;
  margin: 0 0 8px;
  color: var(--theme-color1);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.admission-form__required {
  color: #b42318;
}

.admission-form__control,
.admission-form select,
.admission-form textarea,
.admission-form input[type="text"],
.admission-form input[type="email"],
.admission-form input[type="tel"],
.admission-form input[type="date"],
.admission-form input[type="number"],
.admission-form input[type="file"] {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 48px;
  padding: 10px 14px;
  border: 1px solid color-mix(in srgb, var(--theme-color1) 18%, #fff);
  border-radius: 4px;
  background-color: #fff;
  color: var(--theme-color1);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.admission-form textarea.admission-form__control {
  height: 110px;
  resize: vertical;
}

.admission-form textarea.admission-form__control[rows="8"] {
  height: 180px;
}

.admission-form input[type="file"] {
  height: auto;
  padding: 12px 14px;
}

.admission-form__control:focus,
.admission-form select:focus,
.admission-form textarea:focus,
.admission-form input:focus {
  outline: 0;
  border-color: var(--theme-color1);
}

.admission-form .nice-select,
.admission-form .nice-select.admission-form__control {
  float: none;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 48px;
  min-height: 48px;
  line-height: 1;
  padding: 0 40px 0 14px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--theme-color1) 18%, #fff);
  background-color: #fff;
  font-size: 15px;
  font-weight: 500;
  color: var(--theme-color1);
}

.admission-form .nice-select .current {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admission-form .nice-select.open {
  z-index: 20;
}

.admission-form .nice-select .list {
  width: 100%;
  max-height: 240px;
  overflow-y: auto;
  z-index: 21;
}

.admission-form__hint {
  margin: 6px 0 0;
  color: rgba(16, 16, 16, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.admission-form__error {
  margin: 6px 0 0;
  color: #b42318;
  font-size: 13px;
  line-height: 1.45;
}

.admission-form__field.is-invalid .admission-form__control,
.admission-form__field.is-invalid .nice-select,
.admission-form__field.is-invalid input,
.admission-form__field.is-invalid select,
.admission-form__field.is-invalid textarea {
  border-color: #b42318;
}

.admission-form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}

.admission-form__check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.admission-form__check span {
  color: rgba(16, 16, 16, 0.78);
  font-size: 15px;
  line-height: 1.5;
}

.admission-form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.admission-form__radios legend.admission-form__label {
  float: none;
  width: 100%;
  padding: 0;
  margin: 0 0 8px;
}

.admission-form__radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--theme-color1);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
}

.admission-form__radio input {
  width: 16px;
  height: 16px;
  margin: 0;
  flex: 0 0 auto;
}

.admission-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.admission-form button.btn-style2,
.admission-form button.theme-btn-two {
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.admission-form__alert {
  margin: 0 0 20px;
  padding: 18px 20px;
  background-color: color-mix(in srgb, var(--theme-color4) 16%, #fff);
  border-left: 3px solid var(--theme-color4);
  color: var(--theme-color1);
}

.admission-form__alert[hidden] {
  display: none;
}

.admission-form__captcha-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  margin-bottom: 10px;
  padding: 10px 18px;
  background-color: var(--theme-color3);
  border: 1px dashed color-mix(in srgb, var(--theme-color1) 28%, #fff);
  color: var(--theme-color1);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

.news-list__card,
a.news-list__card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 84px;
  padding: 18px 18px 18px 20px;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid color-mix(in srgb, var(--theme-color1) 10%, #fff);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.news-list__card:nth-child(even),
a.news-list__card:nth-child(even) {
  background-color: var(--theme-color3);
  border-color: color-mix(in srgb, var(--theme-color1) 8%, var(--theme-color3));
}

a.news-list__card:hover,
a.news-list__card:focus-visible {
  border-color: var(--theme-color4);
  box-shadow: 0 12px 28px rgba(14, 54, 57, 0.08);
  outline: 0;
}

.news-list__card--static {
  cursor: default;
}

.news-list__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.news-list__badge--news {
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
}

.news-list__badge--event,
.news-list__badge--new {
  background-color: var(--theme-color4);
  color: var(--theme-color4-text-color);
}

.news-list__title {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: var(--theme-color1);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.news-list__arrow {
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--theme-color3);
  color: var(--theme-color1);
  font-size: 16px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

a.news-list__card:nth-child(even) .news-list__arrow {
  background-color: #fff;
}

a.news-list__card:hover .news-list__arrow,
a.news-list__card:focus-visible .news-list__arrow {
  background-color: var(--theme-color4);
  color: var(--theme-color4-text-color);
  transform: translateX(3px);
}

.news-list__arrow i {
  rotate: -30deg;
}

.news-detail__title {
  margin-top: 16px;
}

.news-detail__actions {
  margin-top: 28px;
}

.news-detail__actions .btn-style2 .theme-btn-arrow-right i,
.news-detail__actions .btn-style2 .theme-btn-arrow-left i {
  rotate: 0deg;
}

@media (max-width: 575.98px) {
  .news-list__card,
  a.news-list__card {
    gap: 10px;
    padding: 14px 12px;
    min-height: 72px;
  }

  .news-list__title {
    font-size: 15px;
  }

  .news-list__arrow {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 767.98px) {
  .admission-form {
    gap: 12px;
  }

  .admission-form__section {
    padding: 20px 16px;
  }

  .admission-form__section .h3.title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .admission-form__grid {
    grid-template-columns: 1fr;
  }

  .admission-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .admission-form__actions .btn-style2,
  .admission-form__actions .theme-btn-two {
    width: 100%;
    justify-content: center;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 20px;
  margin-top: 8px;
}

.blog-grid__item .news-four__single-card {
  margin-top: 22px;
  height: 100%;
}

.news-four__single-card .content .title {
  font-size: 24px;
  line-height: 28px;
}

.news-four__single-card .image img,
.news-four__single-card .image img:nth-child(1),
.news-four__single-card .image img:nth-child(2) {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-page .news-four__single-card .image {
  height: 240px;
}

.blog-pagination {
  margin-top: 36px;
}

.blog-pagination ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 4px;
  background-color: var(--theme-color3);
  color: var(--theme-color1);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.blog-pagination a:hover,
.blog-pagination a:focus-visible {
  background-color: color-mix(in srgb, var(--theme-color4) 28%, var(--theme-color3));
  outline: 0;
}

.blog-pagination .is-current span {
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
}

.blog-pagination .is-disabled span {
  opacity: 0.4;
  cursor: default;
}

@media (min-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .news-four__single-card .image,
  .inner-page .news-four__single-card .image {
    height: 200px;
  }

  .news-four__single-card .content .tag {
    padding-top: 12px;
    padding-left: 16px;
  }

  .news-four__single-card .content .title,
  .inner-page .news-four__single-card .content .title {
    padding: 10px 16px 12px;
    line-height: 1.35;
  }

  .news-four__single-card .content .bottom {
    padding: 12px 16px;
  }
}

.blog-avatar {
  flex: 0 0 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  flex-shrink: 0;
}

.blog-avatar--sm {
  flex-basis: 28px;
  width: 28px;
  height: 28px;
  font-size: 12px;
}

.blog-avatar--lg {
  flex-basis: 48px;
  width: 48px;
  height: 48px;
  font-size: 18px;
}

.blog-article__media {
  position: relative;
  margin: 0 0 22px;
  overflow: hidden;
  border-radius: 8px;
}

.blog-article__media img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-article__date-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: rgba(16, 16, 16, 0.66);
  font-size: 15px;
}

.blog-article__meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-article__meta i {
  color: var(--theme-color1);
}

.blog-reviews {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-reviews__empty {
  padding: 18px 20px;
  background-color: var(--theme-color3);
  color: rgba(16, 16, 16, 0.72);
}

.blog-review {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px;
  background-color: #fff;
  border: 1px solid color-mix(in srgb, var(--theme-color1) 10%, #fff);
  border-radius: 8px;
}

.blog-review__copy {
  min-width: 0;
  flex: 1 1 auto;
}

.blog-review__name {
  margin: 0 0 4px;
  color: var(--theme-color1);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.blog-review__date {
  display: block;
  margin-bottom: 8px;
  color: rgba(16, 16, 16, 0.55);
  font-size: 13px;
}

.blog-review__copy p {
  margin: 0;
}

.page-sidebar > * + * {
  margin-top: 32px;
}

.page-sidebar__box--spaced {
  margin-top: 0;
}

.blog-recent {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-recent li {
  margin: 0;
}

.blog-recent a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.blog-recent__image {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 4px;
}

.blog-recent__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-recent__title {
  display: block;
  color: var(--theme-color1);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.blog-recent__date {
  display: block;
  margin-top: 6px;
  color: rgba(16, 16, 16, 0.55);
  font-size: 13px;
}

.blog-recent a:hover .blog-recent__title,
.blog-recent a:focus-visible .blog-recent__title {
  color: var(--theme-color1);
  text-decoration: underline;
}

.page-sidebar__cta {
  margin-top: 28px;
  padding: 24px 18px;
  border-radius: 8px;
  background-color: var(--theme-color1);
}

.page-sidebar__cta-title {
  margin: 0 0 10px;
  color: var(--theme-color-white);
  font-size: 20px;
  line-height: 1.3;
}

.page-sidebar__cta p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
}

.page-sidebar__cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.page-sidebar__cta .btn-style2,
.page-sidebar__cta .theme-btn-two {
  width: 100%;
  min-width: 0;
  justify-content: center;
  box-sizing: border-box;
}

.page-sidebar__cta .theme-btn-two,
.page-sidebar__cta .theme-btn-two.ma-theme-btn-white {
  padding: 14px 16px;
  overflow: visible;
  white-space: normal;
  background: #fff;
  color: var(--theme-color1);
  box-shadow: none;
}

.page-sidebar__cta .theme-btn-two span,
.page-sidebar__cta .theme-btn-two .page-sidebar__cta-btn-text {
  position: static;
  display: inline;
  overflow: visible;
  color: var(--theme-color1);
  font-weight: 700;
}

.page-sidebar__cta .theme-btn-two:hover,
.page-sidebar__cta .theme-btn-two.ma-theme-btn-white:hover {
  background: var(--theme-color4);
  color: var(--theme-color4-text-color);
}

.page-sidebar__cta .theme-btn-two:hover span,
.page-sidebar__cta .theme-btn-two:hover .page-sidebar__cta-btn-text {
  color: var(--theme-color4-text-color);
}

.page-sidebar__cta .btn-style2 .theme-btn {
  text-align: center;
}

@media (max-width: 767.98px) {
  .blog-review {
    padding: 16px;
  }
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
}

.contact-info-card {
  padding: 22px 20px;
  background-color: var(--theme-color3);
  border: 1px solid color-mix(in srgb, var(--theme-color1) 10%, var(--theme-color3));
  border-radius: 8px;
}

.contact-info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 50%;
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
  font-size: 18px;
}

.contact-info-card .h3.title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
  color: var(--theme-color1);
}

.contact-info-card p {
  margin: 0;
}

.contact-info-card__college {
  margin: 0 0 8px;
  color: var(--theme-color1);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.contact-info-card a {
  color: var(--theme-color1);
  font-weight: 600;
  text-decoration: none;
}

.contact-info-card a:hover,
.contact-info-card a:focus-visible {
  text-decoration: underline;
}

.contact-info-card__phones {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.contact-map {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--theme-color1) 10%, #fff);
  background-color: var(--theme-color3);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

@media (min-width: 768px) {
  .contact-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .contact-map iframe {
    height: 240px;
  }
}

.naac-grade {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 22px 0;
  padding: 24px 22px;
  background-color: var(--theme-color1);
}

.naac-grade__mark {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 1px solid var(--theme-color4);
  background-color: color-mix(in srgb, var(--theme-color4) 18%, var(--theme-color1));
  color: var(--theme-color4);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}

.naac-grade__copy {
  min-width: 0;
}

.naac-grade__copy .h3.title {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.35;
  color: var(--theme-color-white);
}

.naac-grade__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.naac-toc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

.naac-toc a {
  display: block;
  padding: 14px 16px;
  background-color: #fff;
  border: 1px solid color-mix(in srgb, var(--theme-color1) 10%, var(--theme-color3));
  color: var(--theme-color1);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}

.naac-toc a:hover,
.naac-toc a:focus-visible {
  text-decoration: underline;
}

.naac-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.naac-profile-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 16px;
  background-color: var(--theme-color3);
  border: 1px solid color-mix(in srgb, var(--theme-color1) 10%, var(--theme-color3));
  color: inherit;
  text-decoration: none;
}

a.naac-profile-card:hover,
a.naac-profile-card:focus-visible {
  border-color: color-mix(in srgb, var(--theme-color1) 28%, var(--theme-color3));
}

.naac-profile-card__label {
  color: rgba(16, 16, 16, 0.62);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.naac-profile-card__code {
  color: var(--theme-color1);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.naac-profile-card__file {
  color: var(--theme-color1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.inner-block[id] {
  scroll-margin-top: 140px;
}

.naac-keypoint {
  margin-top: 28px;
}

.naac-keypoint:first-of-type {
  margin-top: 0;
}

.naac-keypoint .h3.title {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.35;
  color: var(--theme-color1);
}

.naac-metrics {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.naac-metric {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  background-color: var(--theme-color3);
  border: 1px solid color-mix(in srgb, var(--theme-color1) 10%, var(--theme-color3));
}

a.naac-metric--link {
  grid-template-columns: 84px minmax(0, 1fr) auto;
  color: inherit;
  text-decoration: none;
}

a.naac-metric--link:hover,
a.naac-metric--link:focus-visible {
  border-color: color-mix(in srgb, var(--theme-color1) 28%, var(--theme-color3));
}

.naac-metric__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 4px 8px;
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.naac-metric__text {
  margin: 0;
  padding-top: 4px;
  color: rgba(16, 16, 16, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.naac-metric__file {
  padding-top: 6px;
  color: var(--theme-color1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.inner-block--light .h2.title {
  color: var(--theme-color1);
}

.inner-block--cta .h2.title {
  color: var(--theme-color1);
}

@media (min-width: 768px) {
  .naac-toc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .naac-profile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .naac-grade {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 16px;
  }

  .naac-metric {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  a.naac-metric--link {
    grid-template-columns: 1fr auto;
  }

  a.naac-metric--link .naac-metric__code {
    grid-column: 1 / 2;
  }

  a.naac-metric--link .naac-metric__file {
    grid-column: 2 / 3;
    grid-row: 1;
  }

  a.naac-metric--link .naac-metric__text {
    grid-column: 1 / -1;
  }

  .naac-metric__code {
    justify-content: flex-start;
    width: fit-content;
  }
}

.iso-certificate-photo,
.naac-certificate-photo {
  margin-top: 8px;
  padding: 16px;
  background-color: var(--theme-color3);
  border: 1px solid color-mix(in srgb, var(--theme-color1) 10%, var(--theme-color3));
}

.iso-certificate-photo img,
.naac-certificate-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.naac-certificate-photo {
  margin-top: 22px;
}

.aqar-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.aqar-criterion {
  background-color: var(--theme-color3);
  border: 1px solid color-mix(in srgb, var(--theme-color1) 10%, var(--theme-color3));
}

.aqar-criterion > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.aqar-criterion > summary::-webkit-details-marker {
  display: none;
}

.aqar-criterion > summary::after {
  flex: 0 0 auto;
  content: "+";
  color: var(--theme-color1);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}

.aqar-criterion[open] > summary::after {
  content: "–";
}

.aqar-criterion .h3.title {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  color: var(--theme-color1);
}

.aqar-criterion__count {
  flex: 0 0 auto;
  color: rgba(16, 16, 16, 0.62);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

.aqar-docs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px 16px;
}

.aqar-doc {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  background-color: #fff;
  border: 1px solid color-mix(in srgb, var(--theme-color1) 10%, #fff);
  color: inherit;
  text-decoration: none;
}

.aqar-doc:hover,
.aqar-doc:focus-visible {
  border-color: color-mix(in srgb, var(--theme-color1) 28%, #fff);
}

.aqar-doc__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 4px 8px;
  background-color: var(--theme-color1);
  color: var(--theme-color-white);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.aqar-doc__text {
  padding-top: 4px;
  color: rgba(16, 16, 16, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.aqar-doc__file {
  padding-top: 6px;
  color: var(--theme-color1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

@media (max-width: 767.98px) {
  .aqar-criterion > summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .aqar-doc {
    grid-template-columns: 1fr auto;
  }

  .aqar-doc__code {
    grid-column: 1 / 2;
    justify-content: flex-start;
    width: fit-content;
  }

  .aqar-doc__file {
    grid-column: 2 / 3;
    grid-row: 1;
  }

  .aqar-doc__text {
    grid-column: 1 / -1;
  }
}

.campus-gallery {
  column-count: 4;
  column-gap: 16px;
  margin-top: 28px;
}

.campus-gallery__item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 16px;
  overflow: hidden;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  background-color: color-mix(in srgb, var(--theme-color1) 8%, var(--theme-color3));
}

.campus-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
}

.campus-gallery__zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--theme-color1) 42%, transparent);
  color: var(--theme-color-white);
  font-size: 22px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.campus-gallery__item:hover .campus-gallery__zoom,
.campus-gallery__item:focus-visible .campus-gallery__zoom {
  opacity: 1;
}

.campus-gallery__item:focus-visible {
  outline: 2px solid var(--theme-color4);
  outline-offset: 3px;
}

.fancybox-slide--image .fancybox-image {
  object-fit: contain;
}

@media (max-width: 1199.98px) {
  .campus-gallery {
    column-count: 3;
  }
}

@media (max-width: 767.98px) {
  .campus-gallery {
    column-count: 2;
    column-gap: 12px;
  }

  .campus-gallery__item {
    margin-bottom: 12px;
  }

  .fancybox-slide {
    padding: 52px 10px 16px;
  }
}

@media (max-width: 479.98px) {
  .campus-gallery {
    column-count: 1;
  }
}

.policy-updated {
  margin: 22px 0 0;
  color: rgba(16, 16, 16, 0.62);
  font-size: 15px;
  line-height: 1.5;
}

.footer-contact-bar__wrap {
  padding-left: 0;
  padding-right: 0;
}

.footer-contact-item__college {
  margin-bottom: 4px;
  font-weight: 600;
}

.footer-quick-nav {
  width: 100%;
  margin: 16px 0 0;
  padding: 16px 20px;
  background-color: var(--theme-color2);
  border-radius: 18px;
  text-align: center;
}

.footer-quick-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 0;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-quick-links li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 16px;
  color: var(--theme-color-white);
  font-size: 16px;
  line-height: 1.4;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 0.2s ease;
}

.footer-quick-links li a::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  content: "\f105";
  font-size: 11px;
  color: var(--theme-color4);
  transition: transform 0.25s ease;
}

.footer-quick-links li a:hover {
  color: var(--theme-color4);
}

.footer-quick-links li a:hover::before {
  transform: translateX(3px);
}

.footer-quick-links li:last-child a {
  border-right: none;
}

.footer-important-bar .footer-legal__inner {
  border-top: 0;
}

.footer-brand-badge {
  padding-bottom: 8px;
}

.footer-brand-badge__inner {
  justify-content: flex-start;
  gap: 12px 18px;
}

.footer-brand-badge__logo {
  flex-shrink: 0;
}

.footer-brand-badge__logo a {
  display: block;
}

.footer-brand-badge__logo img {
  display: block;
  width: 78px;
  height: 78px;
  max-width: 78px;
  object-fit: contain;
}

.footer-brand-badge__text {
  flex: 1 1 0;
  max-width: none;
}

.about-four__photo {
  overflow: hidden;
}

.about-four__photo img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 992px) {
  .about-four__main {
    align-items: stretch;
  }

  .about-four__photo-col {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .about-four__photo {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    min-height: 100%;
  }

  .about-four__photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

@media (min-width: 1200px) {
  .about-four__photo-col {
    flex: 0 0 44.444444%;
    max-width: 44.444444%;
  }

  .about-four__copy-col {
    flex: 0 0 55.555556%;
    max-width: 55.555556%;
  }
}

.about-four__content .site-tab-btn .nav-item .nav-link,
.about-four__content .site-tab-btn .nav-item .nav-link:hover,
.about-four__content .site-tab-btn .nav-item .nav-link:focus {
  width: auto;
  background: transparent;
  background-color: transparent;
  border-bottom: 2px solid transparent;
  color: var(--theme-color1);
}

.about-four__content .site-tab-btn .nav-item .nav-link.active {
  width: auto;
  background: transparent;
  background-color: transparent;
  border-bottom: 2px solid var(--theme-color4);
  color: var(--theme-color1);
}

.about-four__content .site-tab-btn .nav-item .tab-btn2 span {
  background: transparent;
  background-color: transparent;
  color: var(--theme-color1);
  padding: 8px 0;
}

.about-four__content .site-tab-btn .nav-item .nav-link.active .tab-btn2 span {
  color: var(--theme-color1);
}

/* Preloader: large branded letters (theme font shorthand uses missing vars) */
.preloader .animation-preloader .txt-loading {
  font-family: var(--heading-font-family), sans-serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.preloader .animation-preloader .txt-loading .letters-loading {
  display: inline-block;
  color: var(--theme-color1);
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
  color: var(--theme-color2);
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(9)::before {
  animation-delay: 1.6s;
}

.preloader p {
  color: var(--theme-color1);
}

@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 36px;
    letter-spacing: 0.04em;
  }
}

.mobile-menu .nav-logo img {
  max-height: 52px;
  width: auto;
}

.mobile-menu .contact-list-one .fa-whatsapp {
  color: var(--theme-color4);
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
  color: var(--theme-color4);
}

.mobile-menu .navigation li > ul > li > a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-menu .navigation li > ul > li > a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 12px;
  color: var(--theme-color4);
  flex-shrink: 0;
  line-height: 1;
}

.hero-6 .hero-content .top .title {
  line-height: 1.2;
}

@media (max-width: 1199.98px) {
  #smooth-wrapper {
    inset: var(--site-header-height, 300px) 0 0 0 !important;
    height: auto !important;
  }

  .hero-6 {
    margin: 0 12px;
  }

  .hero-6 .hero-inner,
  .hero-6 .swiper-slide {
    min-height: 560px;
  }

  .hero-6 .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 560px;
    padding-top: 32px;
    padding-bottom: 20px;
  }

  .hero-6 .hero-content .top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 18px;
  }

  .hero-6 .hero-content .top .title {
    width: 100%;
    max-width: 100%;
    font-size: 34px;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }

  .hero-6 .hero-content .top .btn-style2 {
    margin-top: 0 !important;
    height: 48px;
    padding-left: 20px;
    padding-right: 8px;
  }

  .hero-6 .hero-content .top .btn-style2 .theme-btn {
    font-size: 14px;
  }

  .hero-6 .hero-content .top .btn-style2 .theme-btn-arrow-left,
  .hero-6 .hero-content .top .btn-style2 .theme-btn-arrow-right {
    width: 34px;
    height: 34px;
  }

  .hero-6 .hero-content .tag {
    gap: 16px;
    padding-top: 18px;
    padding-bottom: 16px;
  }

  .hero-6 .hero-content .tag .rating .num {
    font-size: 32px;
  }

  .hero-6 .hero-content .tag .text {
    font-size: 16px;
    line-height: 1.4;
    padding-left: 24px;
  }

  .hero-6 .hero-content .tag .text::before {
    left: 8px;
    top: 10px;
  }

  .hero-6 .array-button {
    right: 16px;
    bottom: 16px;
    gap: 16px;
  }

  .page-title {
    min-height: 0;
    padding: 0;
  }

  .page-title .title,
  .page-title .h1.title {
    font-size: 36px;
    line-height: 1.25;
  }
}

@media (max-width: 767.98px) {
  .hero-6 {
    margin: 0 10px;
  }

  .hero-6 .hero-inner,
  .hero-6 .swiper-slide,
  .hero-6 .hero-content {
    min-height: 480px;
  }

  .hero-6 .hero-content {
    padding-top: 28px;
    padding-bottom: 16px;
  }

  .hero-6 .hero-content .top {
    gap: 12px;
    padding-bottom: 14px;
  }

  .hero-6 .hero-content .top .title {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-6 .hero-content .top .btn-style2 {
    height: 44px;
    padding-left: 16px;
  }

  .hero-6 .hero-content .tag {
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 12px;
  }

  .hero-6 .hero-content .tag .rating {
    gap: 10px;
  }

  .hero-6 .hero-content .tag .rating .num {
    font-size: 24px;
  }

  .hero-6 .hero-content .tag .rating .info p {
    font-size: 13px;
    line-height: 1.35;
  }

  .hero-6 .hero-content .tag .text {
    font-size: 14px;
    padding-left: 16px;
  }

  .hero-6 .array-button {
    right: 10px;
    bottom: 10px;
    gap: 10px;
  }

  .page-title-inner {
    padding: 48px 0 32px;
  }

  .page-title .title,
  .page-title .h1.title {
    font-size: 26px;
    line-height: 1.25;
  }

  .page-title .text {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 479.98px) {
  .hero-6 .hero-inner,
  .hero-6 .swiper-slide,
  .hero-6 .hero-content {
    min-height: 440px;
  }

  .hero-6 .hero-content .top .title {
    font-size: 22px;
  }

  .hero-6 .hero-content .tag .rating .num {
    font-size: 22px;
  }

  .page-title-inner {
    padding: 40px 0 28px;
  }

  .page-title .title,
  .page-title .h1.title {
    font-size: 22px;
  }
}

@media (max-width: 767.98px) {
  .site-section-title .title,
  .site-section-title .title,
  .site-section-title .title,
  .site-section-title .title,
  .section-title .title,
  .section-title.site-section-title .title {
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }
}

@media (max-width: 479.98px) {
  .site-section-title .title,
  .site-section-title .title,
  .site-section-title .title,
  .site-section-title .title,
  .section-title .title,
  .section-title.site-section-title .title {
    font-size: 28px;
  }
}
