@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap");
.color-primary {
  color: #0f2540;
}

.color-orange {
  color: #E07B3A;
}

.color-accent {
  color: #e39b3e;
}

.color-teal {
  color: #0e6e6b;
}

.color-white {
  color: #ffffff;
}

.color-blue {
  color: #0f2540;
}

.color-cyan {
  color: #12A4C9;
}

.color-blue-two {
  color: #3a5372;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

img,
picture,
video {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

table {
  border-collapse: collapse;
  width: 100%;
}

ul, ol {
  padding: 0;
  margin: 0;
  list-style-type: none !important;
  margin-block-start: 0;
  -ms-margin-block-start: 0;
  -moz-margin-block-start: 0;
  -o-margin-block-start: 0;
  margin-block-end: 0;
  -ms-margin-block-end: 0;
  -moz-margin-block-end: 0;
  -o-margin-block-end: 0;
  padding-inline-start: 0;
  -ms-padding-inline-start: 0;
  -moz-padding-inline-start: 0;
  -o-padding-inline-start: 0;
}

li {
  text-decoration: none !important;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}
p:last-child {
  padding-bottom: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
}
button:focus {
  box-shadow: none;
  outline: none;
}

a,
a:link,
a:hover,
a:focus,
a:active {
  text-decoration: none;
}

:focus-visible {
  outline: none;
}

::-ms-expand {
  display: none;
}

::-ms-clear {
  display: none;
}

:focus {
  box-shadow: none !important;
  -ms-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
}

::selection {
  background: #ffffff;
  color: #ffffff;
}

:root {
  --color-primary: #0f2540;
  --color-secondary: #6c757d;
  --color-heading: #111111;
  --color-body: #6d6d6d;
  --color-white: #ffffff;
  --color-black: #000000;
  --container: 1320px;
  --radius: 8px;
  --transition: all 0.3s ease;
}

body {
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, serif;
  color: #111111;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

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

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

.text-right {
  text-align: right;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.border-right-0 {
  border-right: 0 !important;
}

.italic {
  font-style: italic;
}

.bold {
  font-weight: bold;
}

.medium {
  font-weight: 500;
}

.list-justified ul {
  justify-content: space-between;
  gap: 10px;
}

.position-sticky {
  position: sticky !important;
  top: 60px;
}

.border-cyan {
  border-color: #12A4C9;
}

.border-gold {
  border-color: #c8962c;
}

.border-white {
  color: #ffffff;
}

.bg-image-radial {
  background-image: radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.045), transparent 42%), radial-gradient(circle at 82% 78%, rgba(18, 164, 201, 0.1), transparent 46%);
}

.pt-0 {
  padding-top: 0 !important;
}

.underline {
  text-decoration: underline !important;
}

body {
  background: #ffffff;
  overflow-x: hidden;
  color: #6d6d6d;
  line-height: 1.7;
  font-weight: 400;
  font-family: "DM Sans", system-ui, sans-serif;
  background-image: linear-gradient(rgba(15, 37, 64, 0.0549019608) 1px, rgba(0, 0, 0, 0) 1px), linear-gradient(90deg, rgba(15, 37, 64, 0.0549019608) 1px, rgba(0, 0, 0, 0) 1px);
  background-size: 28px 28px;
  background-color: #f5f2e9;
}

section {
  position: relative;
}

.container {
  width: min(100% - 30px, 1320px);
  margin-inline: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -15px;
}

[class*=col-] {
  padding-inline: 15px;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  transition: all 0.3s ease;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #0f2540;
}

textarea {
  resize: vertical;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

input:-internal-autofill-selected {
  background-color: transparent;
}

/* clears the ‘X’ from Chrome */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

input:focus {
  outline: none;
  box-shadow: none;
}

select:focus {
  outline: none;
  box-shadow: none;
}

textarea {
  resize: none !important;
}
textarea:focus {
  outline: none;
  box-shadow: none;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  background: #0f2540;
  color: #ffffff;
  border: none;
}

.btn-outline {
  background: transparent;
  border: 2px solid #0f2540;
  color: #0f2540;
}
.btn-outline:hover {
  background: #0f2540;
  color: #ffffff;
}

table {
  width: 100%;
}

th,
td {
  padding: 16px;
  border: 1px solid #e5e5e5;
}

th {
  background: #f8f9fa;
  text-align: left;
}

.alignleft {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
}

.alignright {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
}

.aligncenter {
  display: block;
  margin-inline: auto;
}

.wp-caption {
  max-width: 100%;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.container,
.container-fluid {
  width: 100%;
  margin-inline: auto;
  padding-inline: 15px;
}

.container {
  max-width: 1320px;
}

.container-sm {
  max-width: 540px;
}

.container-md {
  max-width: 720px;
}

.container-lg {
  max-width: 960px;
}

.container-xl {
  max-width: 1140px;
}

.container-xxl {
  max-width: 1320px;
}

.section {
  position: relative;
  padding-block: 100px;
}

.section-sm {
  padding-block: 70px;
}

.section-lg {
  padding-block: 140px;
}

.section-title {
  margin-bottom: 50px;
}
.section-title h2 {
  margin-bottom: 15px;
}
.section-title p {
  max-width: 700px;
}

.bg-light {
  background: #f8f9fa;
}

.bg-primary {
  background: #0f2540;
  color: #ffffff;
}

.site-header {
  position: relative;
  z-index: 999;
  width: 100%;
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  animation: slideUp 0.4s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 90px;
}

.site-logo {
  display: inline-flex;
}
.site-logo img {
  max-height: 50px;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-navigation li {
  position: relative;
}
.main-navigation a {
  display: block;
  color: #111111;
  font-weight: 500;
  transition: all 0.3s ease;
}
.main-navigation a:hover {
  color: #0f2540;
}

.page-banner {
  position: relative;
  overflow: hidden;
  padding: 160px 0;
  background: #f8f9fa;
}

.banner-title {
  margin-bottom: 20px;
}

.banner-text {
  max-width: 650px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  font-size: 0.9rem;
}
.breadcrumb a {
  color: #0f2540;
}

.sidebar {
  position: relative;
}

.sidebar-widget {
  padding: 30px;
  margin-bottom: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.widget-title {
  margin-bottom: 20px;
}

.site-footer {
  position: relative;
  color: #ffffff;
  background: #111111;
}

.footer-top {
  padding: 80px 0;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-widget-title {
  margin-bottom: 25px;
  color: #ffffff;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s ease;
}
.site-footer a:hover {
  color: #ffffff;
}

.accordion-item {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
}
.accordion-item + .accordion-item {
  margin-top: 16px;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.3s ease;
}
.accordion-header:hover {
  background: #f8f9fa;
}

.accordion-body {
  display: none;
  padding: 20px;
  border-top: 1px solid #e5e5e5;
}

.accordion-item.active .accordion-body {
  display: block;
}

:root {
  --ink:#0F2540;
  --ink-2:#3A5372;
  --paper:#F5F2E9;
  --paper-2:#EDE9DC;
  --cyan:#12A4C9;
  --gold:#C8962C;
  --orange:#E8702A;
  --blue:#1F5FAE;
  --rule:rgba(15,37,64,.14);
  --grid:rgba(15,37,64,.055);
  --chalk:#E7EBF0;
  --maxw:1180px;
  --disp:"Playfair Display",Georgia,serif;
  --body:"DM Sans",system-ui,sans-serif;
  --mono:"DM Mono",ui-monospace,monospace;
}

.card {
  overflow: hidden;
}
.card__image img {
  width: 100%;
  display: block;
}
.card__body {
  padding: 24px;
}
.card__title {
  margin-bottom: 12px;
}
.card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.sketch {
  background: #fcfaf4;
  border: 1px solid rgba(15, 37, 64, 0.14);
  border-radius: 3px;
  padding: 16px 16px 12px;
  box-shadow: 0 22px 44px -30px rgba(15, 37, 64, 0.5);
  position: relative;
}

.sketch .tab {
  position: absolute;
  top: -11px;
  left: 20px;
  background: #c8962c;
  color: #2a1d00;
  font-family: "DM Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
}

.sketch svg {
  width: 100%;
  height: auto;
  display: block;
}

.sketch figcaption {
  font-family: "DM Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: #3a5372;
  border-top: 1px dashed rgba(15, 37, 64, 0.14);
  margin-top: 10px;
  padding-top: 9px;
  text-transform: none;
}

.dr {
  stroke-dasharray: var(--len, 600);
  stroke-dashoffset: var(--len, 600);
  animation: draw 1.5s cubic-bezier(0.6, 0.05, 0.3, 1) forwards;
}

.dr.d2 {
  animation-delay: 0.55s;
}

.dr.d3 {
  animation-delay: 1.05s;
}

.dr.d4 {
  animation-delay: 1.4s;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.fade {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

.fade.f1 {
  animation-delay: 1.8s;
}

.fade.f2 {
  animation-delay: 2.15s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/* ---------- trap (signature) ---------- */
.trap {
  background: #FCFAF4;
  border: 1px solid rgba(15, 37, 64, 0.1411764706);
  border-left: 4px solid #c8962c;
  border-radius: 3px;
  padding: 24px 22px;
}

.trap .q {
  font-family: var(--disp);
  font-size: 1.25rem;
  line-height: 1.35;
  margin: 12px 0 18px;
  color: #0f2540;
}

.opt {
  width: 100%;
  text-align: left;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: transparent;
  border: 1px solid rgba(15, 37, 64, 0.1411764706);
  border-radius: 2px;
  padding: 13px 15px;
  margin-bottom: 10px;
  cursor: pointer;
  font: inherit;
  font-size: 0.96rem;
  color: #0F2540;
  transition: 0.18s;
}

.opt:hover {
  border-color: #0F2540;
}

.opt .lt {
  font-size: 0.8rem;
  color: #3A5372;
  min-width: 16px;
}

.opt.wrong {
  border-color: #B5462F;
  background: rgba(181, 70, 47, 0.07);
}

.opt.right {
  border-color: #1D7A4D;
  background: rgba(29, 122, 77, 0.08);
}

.opt:disabled {
  cursor: default;
}

.reveal {
  display: none;
  border-top: 1px dashed rgba(15, 37, 64, 0.1411764706);
  margin-top: 16px;
  padding-top: 16px;
  font-size: 0.95rem;
  color: #3A5372;
}

.reveal.show {
  display: block;
  animation: fadeIn 0.4s ease forwards;
  opacity: 1;
}

.reveal b {
  color: #0F2540;
}

.verdict {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.carousel {
  position: relative;
}

.carousel-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.tabs-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.tab-btn {
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  background: #f8f9fa;
  transition: all 0.3s ease;
}
.tab-btn.active {
  background: #0f2540;
  color: #ffffff;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  width: min(90%, 700px);
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
}

.pagination {
  display: flex;
  gap: 10px;
}

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f8f9fa;
  transition: all 0.3s ease;
}
.page-numbers:hover, .page-numbers.current {
  background: #0f2540;
  color: #ffffff;
}

.search-form {
  display: flex;
}

.search-field {
  flex: 1;
}

.search-submit {
  padding: 0 24px;
  border: none;
  background: #0f2540;
  color: #ffffff;
  cursor: pointer;
}

.widget {
  margin-bottom: 40px;
}

.widget-title {
  margin-bottom: 20px;
}

.widget ul li {
  margin-bottom: 12px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}
.breadcrumbs a {
  color: #0f2540;
}

.testimonial {
  padding: 30px;
}
.testimonial__text {
  margin-bottom: 20px;
}
.testimonial__author {
  font-weight: 600;
}

.cta {
  padding: 80px 0;
  background: #0f2540;
  color: #ffffff;
  text-align: center;
}
.cta .btn {
  margin-top: 24px;
}

.team-member {
  text-align: center;
}
.team-member img {
  border-radius: 12px;
  margin-bottom: 20px;
}
.team-member h4 {
  margin-bottom: 8px;
}
.team-member span {
  color: #6d6d6d;
}

.popup-video {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #0f2540;
  color: #ffffff;
  font-size: 24px;
}

.home-about {
  position: relative;
  z-index: 99 !important;
}
.home-about::after {
  position: absolute !important;
  content: "";
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: #F1F4F6;
  border-radius: 120px 0 0 120px;
  z-index: -1;
}

.gap-15 ul {
  gap: 15px;
}

.about-intro {
  padding: 100px 0;
}

.about-history,
.about-mission,
.about-team {
  padding-bottom: 100px;
}

.about-image img {
  border-radius: 12px;
}

.services-page {
  padding: 100px 0;
}

.service-item {
  margin-bottom: 30px;
}

.products-page {
  padding: 100px 0;
}

.product-grid {
  row-gap: 30px;
}

.projects-page {
  padding: 100px 0;
}

.project-filter {
  margin-bottom: 40px;
}

.blog-page {
  padding: 100px 0;
}

.blog-list {
  row-gap: 30px;
}

.post-content {
  margin-bottom: 50px;
}

.post-navigation {
  margin-top: 60px;
}

.contact-page {
  padding: 100px 0;
}

.contact-form {
  margin-top: 40px;
}

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

.faq-page {
  padding: 100px 0;
}

.faq-list {
  max-width: 900px;
  margin: auto;
}

.career-page {
  padding: 100px 0;
}

.job-item {
  margin-bottom: 30px;
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

.error-code {
  font-size: 140px;
  font-weight: 700;
}

.search-page {
  padding: 100px 0;
}

.search-result {
  padding: 25px 0;
  border-bottom: 1px solid #e5e5e5;
}

.gallery-archive .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.gallery-archive .gallery-grid .gallery-item .gallery-card img {
  border-radius: 5px;
}
.gallery-archive .gallery-grid .gallery-item .gallery-card .gallery-card-content {
  margin-top: 15px;
}
.gallery-archive .gallery-grid .gallery-item .gallery-card .gallery-card-content .gallery-title {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
  color: #0F2540;
  margin-bottom: 8px;
}
.gallery-archive .gallery-grid .gallery-item .gallery-card .gallery-card-content .gallery-count {
  font-size: 16px;
}

.single-gallery .gallery-header {
  margin-bottom: 30px;
}
.single-gallery .gallery-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.single-gallery .gallery-grid-cards .gallery-card-item img {
  border-radius: 5px;
}

.page-header {
  margin-bottom: 40px;
}

.page-title {
  margin-bottom: 20px;
}

.page-content {
  line-height: 1.7;
}
.page-content img {
  border-radius: 8px;
}

.taxonomy-page {
  padding: 100px 0;
}

.taxonomy-header {
  margin-bottom: 50px;
}

.taxonomy-title {
  margin-bottom: 15px;
}

.taxonomy-grid {
  display: grid;
  gap: 30px;
}

.woocommerce {
  padding: 100px 0;
}

.woocommerce-products-header {
  margin-bottom: 40px;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.woocommerce-loop-product__title {
  margin-top: 15px;
  font-size: 20px;
}

.woocommerce-product-price {
  color: #0f2540;
  font-weight: 600;
}

.woocommerce div.product {
  display: grid;
  gap: 40px;
}

.woocommerce-product-gallery img {
  border-radius: 12px;
}

.woocommerce-cart-form {
  margin-bottom: 50px;
}

.woocommerce-cart-form table {
  background: #ffffff;
}

.woocommerce-checkout .form-row {
  margin-bottom: 20px;
}

.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ms-0 {
  margin-left: 0;
}

.me-0 {
  margin-right: 0;
}

.mx-0 {
  margin-inline: 0;
}

.my-0 {
  margin-block: 0;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.ps-0 {
  padding-left: 0;
}

.pe-0 {
  padding-right: 0;
}

.px-0 {
  padding-inline: 0;
}

.py-0 {
  padding-block: 0;
}

.m-1 {
  margin: 4px;
}

.mt-1 {
  margin-top: 4px;
}

.mb-1 {
  margin-bottom: 4px;
}

.ms-1 {
  margin-left: 4px;
}

.me-1 {
  margin-right: 4px;
}

.mx-1 {
  margin-inline: 4px;
}

.my-1 {
  margin-block: 4px;
}

.p-1 {
  padding: 4px;
}

.pt-1 {
  padding-top: 4px;
}

.pb-1 {
  padding-bottom: 4px;
}

.ps-1 {
  padding-left: 4px;
}

.pe-1 {
  padding-right: 4px;
}

.px-1 {
  padding-inline: 4px;
}

.py-1 {
  padding-block: 4px;
}

.m-2 {
  margin: 8px;
}

.mt-2 {
  margin-top: 8px;
}

.mb-2 {
  margin-bottom: 8px;
}

.ms-2 {
  margin-left: 8px;
}

.me-2 {
  margin-right: 8px;
}

.mx-2 {
  margin-inline: 8px;
}

.my-2 {
  margin-block: 8px;
}

.p-2 {
  padding: 8px;
}

.pt-2 {
  padding-top: 8px;
}

.pb-2 {
  padding-bottom: 8px;
}

.ps-2 {
  padding-left: 8px;
}

.pe-2 {
  padding-right: 8px;
}

.px-2 {
  padding-inline: 8px;
}

.py-2 {
  padding-block: 8px;
}

.m-3 {
  margin: 12px;
}

.mt-3 {
  margin-top: 12px;
}

.mb-3 {
  margin-bottom: 12px;
}

.ms-3 {
  margin-left: 12px;
}

.me-3 {
  margin-right: 12px;
}

.mx-3 {
  margin-inline: 12px;
}

.my-3 {
  margin-block: 12px;
}

.p-3 {
  padding: 12px;
}

.pt-3 {
  padding-top: 12px;
}

.pb-3 {
  padding-bottom: 12px;
}

.ps-3 {
  padding-left: 12px;
}

.pe-3 {
  padding-right: 12px;
}

.px-3 {
  padding-inline: 12px;
}

.py-3 {
  padding-block: 12px;
}

.m-4 {
  margin: 16px;
}

.mt-4 {
  margin-top: 16px;
}

.mb-4 {
  margin-bottom: 16px;
}

.ms-4 {
  margin-left: 16px;
}

.me-4 {
  margin-right: 16px;
}

.mx-4 {
  margin-inline: 16px;
}

.my-4 {
  margin-block: 16px;
}

.p-4 {
  padding: 16px;
}

.pt-4 {
  padding-top: 16px;
}

.pb-4 {
  padding-bottom: 16px;
}

.ps-4 {
  padding-left: 16px;
}

.pe-4 {
  padding-right: 16px;
}

.px-4 {
  padding-inline: 16px;
}

.py-4 {
  padding-block: 16px;
}

.m-5 {
  margin: 20px;
}

.mt-5 {
  margin-top: 20px;
}

.mb-5 {
  margin-bottom: 20px;
}

.ms-5 {
  margin-left: 20px;
}

.me-5 {
  margin-right: 20px;
}

.mx-5 {
  margin-inline: 20px;
}

.my-5 {
  margin-block: 20px;
}

.p-5 {
  padding: 20px;
}

.pt-5 {
  padding-top: 20px;
}

.pb-5 {
  padding-bottom: 20px;
}

.ps-5 {
  padding-left: 20px;
}

.pe-5 {
  padding-right: 20px;
}

.px-5 {
  padding-inline: 20px;
}

.py-5 {
  padding-block: 20px;
}

.m-6 {
  margin: 24px;
}

.mt-6 {
  margin-top: 24px;
}

.mb-6 {
  margin-bottom: 24px;
}

.ms-6 {
  margin-left: 24px;
}

.me-6 {
  margin-right: 24px;
}

.mx-6 {
  margin-inline: 24px;
}

.my-6 {
  margin-block: 24px;
}

.p-6 {
  padding: 24px;
}

.pt-6 {
  padding-top: 24px;
}

.pb-6 {
  padding-bottom: 24px;
}

.ps-6 {
  padding-left: 24px;
}

.pe-6 {
  padding-right: 24px;
}

.px-6 {
  padding-inline: 24px;
}

.py-6 {
  padding-block: 24px;
}

.m-7 {
  margin: 32px;
}

.mt-7 {
  margin-top: 32px;
}

.mb-7 {
  margin-bottom: 32px;
}

.ms-7 {
  margin-left: 32px;
}

.me-7 {
  margin-right: 32px;
}

.mx-7 {
  margin-inline: 32px;
}

.my-7 {
  margin-block: 32px;
}

.p-7 {
  padding: 32px;
}

.pt-7 {
  padding-top: 32px;
}

.pb-7 {
  padding-bottom: 32px;
}

.ps-7 {
  padding-left: 32px;
}

.pe-7 {
  padding-right: 32px;
}

.px-7 {
  padding-inline: 32px;
}

.py-7 {
  padding-block: 32px;
}

.m-8 {
  margin: 40px;
}

.mt-8 {
  margin-top: 40px;
}

.mb-8 {
  margin-bottom: 40px;
}

.ms-8 {
  margin-left: 40px;
}

.me-8 {
  margin-right: 40px;
}

.mx-8 {
  margin-inline: 40px;
}

.my-8 {
  margin-block: 40px;
}

.p-8 {
  padding: 40px;
}

.pt-8 {
  padding-top: 40px;
}

.pb-8 {
  padding-bottom: 40px;
}

.ps-8 {
  padding-left: 40px;
}

.pe-8 {
  padding-right: 40px;
}

.px-8 {
  padding-inline: 40px;
}

.py-8 {
  padding-block: 40px;
}

.m-9 {
  margin: 48px;
}

.mt-9 {
  margin-top: 48px;
}

.mb-9 {
  margin-bottom: 48px;
}

.ms-9 {
  margin-left: 48px;
}

.me-9 {
  margin-right: 48px;
}

.mx-9 {
  margin-inline: 48px;
}

.my-9 {
  margin-block: 48px;
}

.p-9 {
  padding: 48px;
}

.pt-9 {
  padding-top: 48px;
}

.pb-9 {
  padding-bottom: 48px;
}

.ps-9 {
  padding-left: 48px;
}

.pe-9 {
  padding-right: 48px;
}

.px-9 {
  padding-inline: 48px;
}

.py-9 {
  padding-block: 48px;
}

.m-10 {
  margin: 64px;
}

.mt-10 {
  margin-top: 64px;
}

.mb-10 {
  margin-bottom: 64px;
}

.ms-10 {
  margin-left: 64px;
}

.me-10 {
  margin-right: 64px;
}

.mx-10 {
  margin-inline: 64px;
}

.my-10 {
  margin-block: 64px;
}

.p-10 {
  padding: 64px;
}

.pt-10 {
  padding-top: 64px;
}

.pb-10 {
  padding-bottom: 64px;
}

.ps-10 {
  padding-left: 64px;
}

.pe-10 {
  padding-right: 64px;
}

.px-10 {
  padding-inline: 64px;
}

.py-10 {
  padding-block: 64px;
}

.m-11 {
  margin: 80px;
}

.mt-11 {
  margin-top: 80px;
}

.mb-11 {
  margin-bottom: 80px;
}

.ms-11 {
  margin-left: 80px;
}

.me-11 {
  margin-right: 80px;
}

.mx-11 {
  margin-inline: 80px;
}

.my-11 {
  margin-block: 80px;
}

.p-11 {
  padding: 80px;
}

.pt-11 {
  padding-top: 80px;
}

.pb-11 {
  padding-bottom: 80px;
}

.ps-11 {
  padding-left: 80px;
}

.pe-11 {
  padding-right: 80px;
}

.px-11 {
  padding-inline: 80px;
}

.py-11 {
  padding-block: 80px;
}

.m-12 {
  margin: 100px;
}

.mt-12 {
  margin-top: 100px;
}

.mb-12 {
  margin-bottom: 100px;
}

.ms-12 {
  margin-left: 100px;
}

.me-12 {
  margin-right: 100px;
}

.mx-12 {
  margin-inline: 100px;
}

.my-12 {
  margin-block: 100px;
}

.p-12 {
  padding: 100px;
}

.pt-12 {
  padding-top: 100px;
}

.pb-12 {
  padding-bottom: 100px;
}

.ps-12 {
  padding-left: 100px;
}

.pe-12 {
  padding-right: 100px;
}

.px-12 {
  padding-inline: 100px;
}

.py-12 {
  padding-block: 100px;
}

.custom-spacing {
  padding-top: 66px;
  padding-bottom: 66px;
}
@media (max-width: 1200px) {
  .custom-spacing {
    padding-top: 66px;
    padding-bottom: 66px;
  }
}
@media (max-width: 992px) {
  .custom-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .custom-spacing {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .custom-spacing {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

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

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

.justify-start {
  justify-content: flex-start;
}

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

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

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

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

.align-start {
  align-items: flex-start;
}

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

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

.gap-1 {
  gap: 8px;
}

.gap-2 {
  gap: 16px;
}

.gap-3 {
  gap: 24px;
}

.gap-4 {
  gap: 32px;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.opacity-0 {
  opacity: 0;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-100 {
  opacity: 1;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.text-start {
  text-align: left;
}

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

.text-end {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.fw-light {
  font-weight: 300;
}

.fw-normal {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.text-primary {
  color: #0f2540;
}

.text-white {
  color: #ffffff;
}

.text-muted {
  color: #6d6d6d;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

.start-0 {
  left: 0;
}

.end-0 {
  right: 0;
}

.w-25 {
  width: 25%;
}

.w-50 {
  width: 50%;
}

.w-75 {
  width: 75%;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.rounded {
  border-radius: 8px;
}

.rounded-pill {
  border-radius: 999px;
}

.shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.shadow {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.shadow-lg {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.transition {
  transition: all 0.3s ease;
}

.theme-default {
  --primary:#0f2540;
  --secondary:#6c757d;
  --background:#ffffff;
  --surface:#f8f9fa;
  --heading:#111111;
  --text:#6d6d6d;
  --border:#e5e5e5;
}

.dark-theme {
  --background:#111111;
  --surface:#1c1c1c;
  --heading:#ffffff;
  --text:#cccccc;
  --border:#333333;
  background: var(--background);
  color: var(--text);
}
.dark-theme body {
  background: var(--background);
  color: var(--text);
}
.dark-theme h1,
.dark-theme h2,
.dark-theme h3,
.dark-theme h4,
.dark-theme h5,
.dark-theme h6 {
  color: var(--heading);
}
.dark-theme .card,
.dark-theme .sidebar-widget,
.dark-theme .modal-content {
  background: var(--surface);
}

[dir=rtl] {
  text-align: right;
}
[dir=rtl] .text-start {
  text-align: right;
}
[dir=rtl] .text-end {
  text-align: left;
}
[dir=rtl] .ms-auto {
  margin-left: 0;
  margin-right: auto;
}
[dir=rtl] .me-auto {
  margin-right: 0;
  margin-left: auto;
}
[dir=rtl] .float-start {
  float: right;
}
[dir=rtl] .float-end {
  float: left;
}
[dir=rtl] .main-navigation ul {
  flex-direction: row-reverse;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button;
  appearance: button;
}

textarea {
  overflow: auto;
}

/*
 Bootstrap compatibility layer.
 Import Bootstrap from node_modules here if required:

 @use "bootstrap/scss/bootstrap";

*/
:root {
  --theme-container:1320px;
  --theme-gutter:15px;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
}

.container {
  width: 100%;
  max-width: var(--theme-container);
  margin-inline: auto;
  padding-inline: var(--theme-gutter);
  box-sizing: border-box;
}

/* Widescreen */
@media (min-width: 1920px) {
  :root {
    --theme-container:1440px;
  }
}
/* Laptop */
@media (max-width: 1366px) {
  :root {
    --theme-container:1140px;
  }
}
/* Tablet Landscape */
@media (max-width: 1200px) {
  :root {
    --theme-container:960px;
  }
}
/* Tablet Portrait */
@media (max-width: 1024px) {
  :root {
    --theme-container:820px;
  }
}
/* Mobile Landscape */
@media (max-width: 880px) {
  :root {
    --theme-container:100%;
    --theme-gutter:14px;
  }
}
/* Mobile */
@media (max-width: 767px) {
  :root {
    --theme-gutter:12px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: calc(var(--bs-gutter-x) * -0.5);
}

.row > * {
  flex-shrink: 0;
  max-width: 100%;
  padding-inline: calc(var(--bs-gutter-x) * 0.5);
  box-sizing: border-box;
}

[class*=col-] {
  position: relative;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.swiper {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e5e5e5;
  display: inline-block;
}

.swiper-pagination-bullet-active {
  background: #0f2540;
}

.fa,
.fas,
.far,
.fab {
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
}

.icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 8px;
}

/**
 * Mobile Menu Widget — Styles
 * Matches markup output by Akadymic\Widgets\Mobile_Menu::render()
 */
/* ==========================================================================
   Hamburger Toggler
   ========================================================================== */
.navbar_togglers {
  display: none;
}

@media (max-width: 1024px) {
  .navbar_togglers {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.navbar_togglers .navbar-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  cursor: pointer;
  background: transparent;
  transition: background-color 0.2s ease;
}

.navbar_togglers .navbar-burger i {
  font-size: 24px;
  line-height: 1;
  color: inherit;
  transition: transform 0.3s ease;
}

/* Swap icon to a close (X) look when menu is open, if using an icon font
   that has an -close variant this can be handled via JS class swap instead */
.navbar_togglers .navbar-burger.is-active i {
  transform: rotate(90deg);
}

/* ==========================================================================
   Overlay
   ========================================================================== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 9998;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ==========================================================================
   Mobile Menu Panel
   ========================================================================== */
.mobile_menu_area {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background-color: #ffffff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 9999;
  transition-property: transform;
  transition-duration: 300ms;
  transition-timing-function: ease;
  padding: 30px 20px;
  box-sizing: border-box;
}

/* Slide from left (default) */
.mobile_menu_area.slide-from-left {
  left: 0;
  transform: translateX(-100%);
}

.mobile_menu_area.slide-from-left.is-open {
  transform: translateX(0);
}

/* Slide from right */
.mobile_menu_area.slide-from-right {
  right: 0;
  transform: translateX(100%);
}

.mobile_menu_area.slide-from-right.is-open {
  transform: translateX(0);
}

/* Lock page scroll while menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* ==========================================================================
   Close Button
   ========================================================================== */
.menu-close-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  margin-bottom: 20px;
}

.menu-close-btn svg {
  fill: currentColor;
  transition: transform 0.2s ease;
}

.menu-close-btn:hover svg {
  transform: rotate(90deg);
}

/* ==========================================================================
   Menu List / Items
   ========================================================================== */
.mobile_menu_area .mobile_navbar {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.mobile_menu_area .mobile_navbar > li.menu-item {
  position: relative;
  width: 100%;
  display: block !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile_menu_area .mobile_navbar > li.menu-item > a.nav_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  width: 100%;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.mobile_menu_area .mobile_navbar > li.menu-item:hover > a.nav_link,
.mobile_menu_area .mobile_navbar > li.menu-item.active > a.nav_link,
.mobile_menu_area .mobile_navbar > li.menu-item.drop-active > a.nav_link {
  color: var(--e-global-color-primary, #2563eb);
}

/* ==========================================================================
   Dropdown Toggle Button (for items with children)
   ========================================================================== */
.mobile_menu_area .dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: transparent;
  border: none;
  color: inherit;
  position: absolute;
  right: 0;
  top: 13px;
}

.mobile_menu_area .dropdown-btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.mobile_menu_area .dropdown-btn:hover,
.mobile_menu_area li.drop-active > .dropdown-btn {
  color: var(--e-global-color-primary, #2563eb);
}

.mobile_menu_area li.drop-active > .dropdown-btn::after {
  transform: rotate(225deg);
}

/* ==========================================================================
   Submenu (dropdown panel)
   ========================================================================== */
.mobile_menu_area .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0 0 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile_menu_area li.drop-active > .sub-menu {
  max-height: 1000px; /* large enough for content; JS sets exact height */
}

.mobile_menu_area .sub-menu .menu-item > a.nav_link {
  padding: 10px 0;
  font-size: 0.95em;
  opacity: 0.85;
}

.elementor-widget-setup-mobile-menu-v1.elementor-widget-empty .elementor-widget-empty-icon {
  display: none !important;
}

.header-nav {
  backdrop-filter: blur(10px);
}

/* Smart Sticky Header */
.header-nav {
  position: relative;
  z-index: 99999;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.header-nav.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-nav.is-hidden {
  transform: translateY(-100%);
}

/* Optional: add a little space so content doesn’t jump when header becomes fixed */
body.has-sticky-header {
  /* This will be set dynamically by JS */
}

/**
 * Akadymic Elementor Default Widgets Styling
 */
.chips-list ul {
  gap: 8px;
}
.chips-list ul li {
  padding: 7px 12px !important;
  background-color: #FCFAF4;
  border: 1px solid rgba(15, 37, 64, 0.1411764706);
  border-radius: 2px;
  margin: 0 !important;
}

.chips-list-varient-two ul li {
  background-color: rgba(255, 255, 255, 0.0588235294);
  border: 1px solid rgba(255, 255, 255, 0.1803921569);
}

/* =====================================================
   Icon Box Grid
===================================================== */
.akadymic-icon-box-grid {
  display: grid;
}

.akadymic-icon-box {
  height: 100%;
}

.akadymic-icon-box-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ---------- Icon Position: Top (default) ---------- */
.akadymic-icon-position-top .akadymic-icon-box-inner {
  flex-direction: column;
}

/* ---------- Icon Position: Left ---------- */
.akadymic-icon-position-left .akadymic-icon-box-inner {
  flex-direction: row;
  align-items: flex-start;
}

.akadymic-icon-position-left .akadymic-icon-box-icon,
.akadymic-icon-position-left .akadymic-icon-box-image {
  margin-right: 15px;
  margin-bottom: 0 !important;
  flex-shrink: 0;
}

/* ---------- Icon Position: Right ---------- */
.akadymic-icon-position-right .akadymic-icon-box-inner {
  flex-direction: row-reverse;
  align-items: flex-start;
}

.akadymic-icon-position-right .akadymic-icon-box-icon,
.akadymic-icon-position-right .akadymic-icon-box-image {
  margin-left: 15px;
  margin-bottom: 0 !important;
  flex-shrink: 0;
}

/* ---------- Content ---------- */
.akadymic-icon-box-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ---------- Button ---------- */
.akadymic-icon-box-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.akadymic-icon-box-btn .btn-icon-before,
.akadymic-icon-box-btn .btn-icon-after {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

/* Optional: Center button when box text is centered */
.akadymic-icon-box[style*="text-align: center"] .akadymic-icon-box-btn.text-center .akadymic-icon-box-btn,
.elementor-element.akadymic-icon-box-grid .akadymic-icon-box.text-center .akadymic-icon-box-btn {
  align-self: center;
}

.akadymic-icon-box-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.akadymic-icon-box-btn .btn-icon-before,
.akadymic-icon-box-btn .btn-icon-after {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.akadymic-icon-box-btn .btn-icon-before i, .akadymic-icon-box-btn .btn-icon-before svg,
.akadymic-icon-box-btn .btn-icon-after i,
.akadymic-icon-box-btn .btn-icon-after svg {
  display: block;
  line-height: 1;
  width: 20px;
  height: auto;
}

.programmes-icon-box .akadymic-icon-box-grid .akadymic-icon-box {
  position: relative;
}
.programmes-icon-box .akadymic-icon-box-grid .akadymic-icon-box::before {
  transition: all 0.45 linear 0ms;
  -o-transition: all 0.45 linear 0ms;
  -moz-transition: all 0.45 linear 0ms;
  -webkit-transition: all 0.45 linear 0ms;
  -ms-transition: all 0.45 linear 0ms;
}
.programmes-icon-box .akadymic-icon-box-grid .akadymic-icon-box.card-active {
  background-color: #002045 !important;
}
.programmes-icon-box .akadymic-icon-box-grid .akadymic-icon-box.card-active::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 96px;
  width: 96px;
  border-radius: 0px 0 0 12px;
  background-color: rgba(214, 227, 255, 0.1);
}
.programmes-icon-box .akadymic-icon-box-grid .akadymic-icon-box.card-active .akadymic-icon-box-content .akadymic-icon-box-title {
  color: #fff;
}
.programmes-icon-box .akadymic-icon-box-grid .akadymic-icon-box.card-active .akadymic-icon-box-content .akadymic-icon-box-desc {
  color: #86A0CD;
}
.programmes-icon-box .akadymic-icon-box-grid .akadymic-icon-box.card-active .akadymic-icon-box-content .akadymic-icon-box-btn {
  color: #FFB866;
}
.programmes-icon-box .akadymic-icon-box-grid .akadymic-icon-box.card-active .akadymic-icon-box-content .akadymic-icon-box-btn .btn-icon-after svg {
  fill: #FFB866;
}
.programmes-icon-box .akadymic-icon-box-grid .akadymic-icon-box.card-active .akadymic-icon-box-content .akadymic-icon-box-btn:hover {
  color: #fff;
}
.programmes-icon-box .akadymic-icon-box-grid .akadymic-icon-box.card-active .akadymic-icon-box-content .akadymic-icon-box-btn:hover .btn-icon-after svg {
  fill: #fff;
}
.programmes-icon-box .akadymic-icon-box-grid .akadymic-icon-box.card-active .akadymic-icon-box-icon {
  background-color: rgba(214, 227, 255, 0.1);
}
.programmes-icon-box .akadymic-icon-box-grid .akadymic-icon-box:hover {
  background-color: #002045 !important;
}
.programmes-icon-box .akadymic-icon-box-grid .akadymic-icon-box:hover::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 96px;
  width: 96px;
  border-radius: 0px 0 0 12px;
  background-color: rgba(214, 227, 255, 0.1);
}
.programmes-icon-box .akadymic-icon-box-grid .akadymic-icon-box:hover .akadymic-icon-box-content .akadymic-icon-box-title {
  color: #fff;
}
.programmes-icon-box .akadymic-icon-box-grid .akadymic-icon-box:hover .akadymic-icon-box-content .akadymic-icon-box-desc {
  color: #86A0CD;
}
.programmes-icon-box .akadymic-icon-box-grid .akadymic-icon-box:hover .akadymic-icon-box-content .akadymic-icon-box-btn {
  color: #FFB866;
}
.programmes-icon-box .akadymic-icon-box-grid .akadymic-icon-box:hover .akadymic-icon-box-content .akadymic-icon-box-btn .btn-icon-after svg {
  fill: #FFB866;
}
.programmes-icon-box .akadymic-icon-box-grid .akadymic-icon-box:hover .akadymic-icon-box-content .akadymic-icon-box-btn:hover {
  color: #fff;
}
.programmes-icon-box .akadymic-icon-box-grid .akadymic-icon-box:hover .akadymic-icon-box-content .akadymic-icon-box-btn:hover .btn-icon-after svg {
  fill: #fff;
}
.programmes-icon-box .akadymic-icon-box-grid .akadymic-icon-box:hover .akadymic-icon-box-icon {
  background-color: rgba(214, 227, 255, 0.1);
}
.programmes-icon-box .akadymic-icon-box-grid .akadymic-icon-box:hover .akadymic-icon-box-icon svg, .programmes-icon-box .akadymic-icon-box-grid .akadymic-icon-box:hover .akadymic-icon-box-icon path {
  fill: #FFB866;
}

/* Image wrapper – needed for absolute tag positioning */
.akadymic-icon-box-image {
  position: relative;
  display: inline-block;
  line-height: 0;
  max-width: 100%;
}

.akadymic-icon-box-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ---------- Tag / Badge ---------- */
.akadymic-icon-box-image .akadymic-tag {
  position: absolute;
  display: inline-block;
  line-height: 1.3;
  white-space: nowrap;
  pointer-events: none;
  box-sizing: border-box;
}

/* Preset positions */
.akadymic-icon-box-image .akadymic-tag.tag-pos-top-left {
  top: 14px;
  left: 14px;
}

.akadymic-icon-box-image .akadymic-tag.tag-pos-top-center {
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
}

.akadymic-icon-box-image .akadymic-tag.tag-pos-top-right {
  top: 14px;
  right: 14px;
}

.akadymic-icon-box-image .akadymic-tag.tag-pos-center-left {
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
}

.akadymic-icon-box-image .akadymic-tag.tag-pos-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.akadymic-icon-box-image .akadymic-tag.tag-pos-center-right {
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}

.akadymic-icon-box-image .akadymic-tag.tag-pos-bottom-left {
  bottom: 14px;
  left: 14px;
}

.akadymic-icon-box-image .akadymic-tag.tag-pos-bottom-center {
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
}

.akadymic-icon-box-image .akadymic-tag.tag-pos-bottom-right {
  bottom: 14px;
  right: 14px;
}

/* ---------- Number ---------- */
.akadymic-icon-box-number {
  display: block;
  line-height: 1.2;
}

/**
 * Akadymic Theme Button – Frontend Styles
 *
 * Minimal structural CSS. All visual styles are controlled via Elementor.
 */
.akadymic-theme-button-wrapper {
  display: flex;
  width: 100%;
}

.akadymic-theme-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  line-height: 1.4;
}

.akadymic-theme-button .akadymic-btn-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* fallback – controlled by Icon Spacing slider */
}

/* Icon positions */
.akadymic-theme-button .akadymic-btn-icon-left {
  flex-direction: row;
}

.akadymic-theme-button .akadymic-btn-icon-right {
  flex-direction: row-reverse;
}

.akadymic-theme-button .akadymic-btn-icon-top {
  flex-direction: column;
}

.akadymic-theme-button .akadymic-btn-icon-bottom {
  flex-direction: column-reverse;
}

.akadymic-theme-button .akadymic-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.akadymic-theme-button .akadymic-btn-icon svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.akadymic-theme-button .akadymic-btn-text {
  display: inline-block;
}

/* Justified alignment helper */
.elementor-align-justify .akadymic-theme-button,
.elementor-tablet-align-justify .akadymic-theme-button,
.elementor-mobile-align-justify .akadymic-theme-button {
  width: 100%;
}

/**
 * Akadymic Gallery – Frontend Styles
 */
.product-gallery-grid {
  display: grid;
}

/* Card */
.product-gallery-item {
  display: flex;
  flex-direction: column;
}

.product-gallery-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Image */
.product-gallery-image {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.product-gallery-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.product-gallery-fancybox {
  display: block;
  cursor: zoom-in;
  height: 100%;
}

.product-gallery-fancybox img {
  height: 100%;
}

/* Tag */
.product-gallery-tag {
  position: absolute;
  display: inline-block;
  line-height: 1.3;
  white-space: nowrap;
  max-width: calc(100% - 24px);
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  z-index: 2;
  box-sizing: border-box;
}

.product-gallery-tag.tag-pos-top-left {
  top: 12px;
  left: 12px;
}

.product-gallery-tag.tag-pos-top-center {
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.product-gallery-tag.tag-pos-top-right {
  top: 12px;
  right: 12px;
}

.product-gallery-tag.tag-pos-bottom-left {
  bottom: 12px;
  left: 12px;
}

.product-gallery-tag.tag-pos-bottom-center {
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.product-gallery-tag.tag-pos-bottom-right {
  bottom: 12px;
  right: 12px;
}

/* Content */
.product-gallery-content {
  flex: 1;
}

.product-gallery-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}

.product-gallery-title {
  margin: 0;
  line-height: 1.35;
}

/* Slider */
.product-gallery-slider {
  position: relative;
}

.product-gallery-swiper {
  width: 100%;
  overflow: hidden;
}

.product-gallery-swiper .swiper-slide {
  height: auto;
}

/* Controls row: progress + arrows */
.product-gallery-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.product-gallery-progress {
  flex: 1;
  position: relative;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
}

.product-gallery-progress .swiper-pagination-progressbar-fill {
  background: #0d7377;
  border-radius: 2px;
}

.product-gallery-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.product-gallery-prev,
.product-gallery-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  color: #1c232b;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.product-gallery-prev:hover,
.product-gallery-next:hover {
  opacity: 0.7;
}

.product-gallery-prev.swiper-button-disabled,
.product-gallery-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

/* Reset Swiper default top positioning for progressbars */
.product-gallery-slider .product-gallery-progress {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  bottom: auto !important;
  width: 100% !important;
}

/* Container for bottom layout spacing */
.product-gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px; /* Space between the cards and progress bar */
}

.product-gallery-progress-wrap {
  flex-grow: 1;
}

/**
 * Akadymic Fun Facts – Frontend Styles
 */
.fun-facts {
  display: grid;
  align-items: stretch;
}

.fun-fact {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Vertical divider between items */
.fun-facts.has-dividers .fun-fact:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background-color: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.fun-fact-number {
  line-height: 1.1;
  font-weight: 600;
}

.fun-fact-title {
  line-height: 1.4;
}

.fun-fact-subtitle {
  line-height: 1.4;
  font-style: italic;
  opacity: 0.85;
}

/* Hide divider on single-column (mobile) when only 1 col */
@media (max-width: 767px) {
  .fun-facts.has-dividers .fun-fact:not(:last-child)::after {
    display: none;
  }
}
.akadymic-toc-table {
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
}

.akadymic-toc-row {
  display: flex;
  align-items: stretch;
}

.akadymic-toc-label {
  background-color: #f5f3ef;
  color: #6b6b6b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 20px;
  width: 180px;
  min-width: 180px;
  display: flex;
  align-items: center;
}

.akadymic-toc-value {
  padding: 16px 20px;
  flex: 1;
  display: flex;
  align-items: center;
  color: #1d1d1d;
}

.akadymic-toc-value a {
  color: #0066cc;
  text-decoration: underline;
}

.akadymic-toc-row:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}

.akadymic-bt-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.akadymic-bt-table th,
.akadymic-bt-table td {
  text-align: left;
  vertical-align: middle;
}

.akadymic-bt-table thead th {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Optional: make first column a bit wider like the screenshot */
.akadymic-bt-table .akadymic-bt-col1 {
  width: 38%;
}

.akadymic-bt-table .akadymic-bt-col2 {
  width: 37%;
}

.akadymic-bt-table .akadymic-bt-col3 {
  width: 25%;
}

.akadymic-testimonials-widget {
  position: relative;
}

.akadymic-testimonial-item {
  background: #fff;
  padding: 40px;
  height: 100%;
  box-sizing: border-box;
}

.akadymic-testimonial-quote {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
}

.akadymic-testimonial-name {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.akadymic-testimonial-designation {
  font-size: 0.9em;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.akadymic-testimonial-image img {
  border-radius: 50%;
  object-fit: cover;
}

.akadymic-testimonial-rating .star {
  color: #f5a623;
}

.akadymic-testimonial-rating .star.empty {
  color: #ddd;
}

.akadymic-swiper-button-prev,
.akadymic-swiper-button-next {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #333;
}

.akadymic-swiper-button-prev:after,
.akadymic-swiper-button-next:after {
  font-size: 16px;
  font-weight: bold;
}

.swiper-pagination-bullet {
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.akadymic-rt-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0eee8;
  height: 100%;
}

.akadymic-rt-widget .akadymic-rt-swiper .swiper-wrapper {
  margin-bottom: 60px;
}
.akadymic-rt-widget .akadymic-rt-swiper .swiper-wrapper .swiper-slide {
  height: auto;
}

.akadymic-rt-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.akadymic-rt-avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  overflow: hidden;
}

.akadymic-rt-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.akadymic-rt-name {
  font-weight: 600;
  font-size: 1.05rem;
}

.akadymic-rt-badge {
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  background: #e8f5f3;
  color: #2a8a7a;
}

.akadymic-rt-stars {
  line-height: 1;
}

/* ===== META FLEX (same line) ===== */
.akadymic-rt-meta.is-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 14px;
}

.akadymic-rt-meta.is-flex .akadymic-rt-meta-item:not(:last-child)::after {
  content: "";
  /* optional separator if you want a dot/pipe */
}

.akadymic-rt-meta.is-stack {
  display: block;
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 14px;
}

.akadymic-rt-meta.is-stack .akadymic-rt-meta-item {
  display: block;
}

.akadymic-rt-quote {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #444;
  font-style: italic;
}

.akadymic-rt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gform_required_legend {
  display: none;
}

.gform_validation_errors {
  display: none;
}

.gform-theme--foundation .gfield input, .gform-theme--foundation .gfield select, .gform-theme--foundation .gfield textarea {
  box-shadow: none !important;
}

.akadymic-ba-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.akadymic-ba-card {
  background: #fff;
  border: 1px solid #e8e6e0;
  border-radius: 8px;
  overflow: hidden;
}

.akadymic-ba-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  list-style: none;
  cursor: pointer;
}

.akadymic-ba-summary::-webkit-details-marker {
  display: none;
}

.akadymic-ba-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.akadymic-ba-meta {
  font-size: 0.9rem;
  color: #666;
  white-space: nowrap;
}

.akadymic-ba-body {
  padding: 8px 24px 24px;
}

.akadymic-ba-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  margin-bottom: 28px;
}

.akadymic-ba-block-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3a7ca5;
  margin-bottom: 6px;
}

.akadymic-ba-block-content {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #333;
}

.akadymic-ba-btnrow {
  margin-top: 8px;
}

.akadymic-ba-btn {
  display: inline-block;
  padding: 12px 22px;
  background: #1a2332;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.akadymic-ba-btn:hover {
  background: #0f1620;
  color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
  .akadymic-ba-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .akadymic-ba-blocks {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=main.css.map */
