@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  /* Ana palet — mockup #004A99 ailesi */
  --ed-primary: #004A99;
  --ed-primary-deep: #003366;
  --ed-primary-hover: #1565C0;
  --ed-secondary: #1976D2;
  --ed-accent: #29B6F6;
  --ed-accent-soft: #7EC8F5;
  --ed-green: #2E9E44;
  --ed-green-light: #5CB85C;
  --ed-purple: #7B2D8E;
  --ed-purple-light: #9C27B0;
  --ed-orange: #EF6C00;
  --ed-pink: #C2185B;
  --ed-teal: #00838F;
  --ed-text: #1A2B3C;
  --ed-text-muted: #64748B;
  --ed-border: #E2E8F0;
  --ed-bg: #F4F8FC;
  --ed-white: #FFFFFF;
  --ed-navy-glass: rgba(0, 28, 64, 0.78);
  --ed-navy-solid: #002B5C;
  --ed-radius-xs: 10px;
  --ed-radius-sm: 12px;
  --ed-radius-md: 18px;
  --ed-radius-lg: 24px;
  --ed-radius-xl: 28px;
  --ed-radius-pill: 999px;
  --ed-shadow-soft: 0 8px 24px rgba(0, 40, 90, 0.07);
  --ed-shadow-md: 0 12px 36px rgba(0, 40, 90, 0.1);
  --ed-shadow-lg: 0 20px 60px rgba(0, 20, 50, 0.18);
  --ed-glass-light: rgba(255, 255, 255, 0.9);
  --ed-glass-dark: rgba(0, 28, 64, 0.82);
  --ed-glass-border: rgba(255, 255, 255, 0.2);
  --ed-blur: blur(14px) saturate(170%);
  --ed-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ed-duration: 300ms;
  --ed-font: "Manrope", "Plus Jakarta Sans", Inter, system-ui, sans-serif;
}

/* ═══════════════════════════════════════
   HEADER — üst bar + logo bütünlüğü
   ═══════════════════════════════════════ */
   .ui-no-scroll {
    overflow: hidden;
}

.ui-no-scroll-y {
    overflow-y: hidden;
}

.ui-no-scroll-x {
    overflow-x: hidden;
}

.ui-pos-relative {
    position: relative;
}

.ui-pos-inherit {
    position: inherit;
}

.ui-pos-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
}

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

.ui-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.ui-justify-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.ui-justify-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.ui-justify-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.ui-align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ui-align-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.ui-align-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.ui-align-between {
    -webkit-box-align: space-between;
    -ms-flex-align: space-between;
    align-items: space-between;
}

.ui-z-index {
    position: relative;
    z-index: 9;
}

.ui-hidden {
    display: none;
}

@media (max-width: 479px) {
    .ui-xs-hidden {
        display: none;
    }
}

@media (max-width: 767px) {
    .ui-sm-hidden {
        display: none;
    }
}

@media (max-width: 991px) {
    .ui-md-hidden {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .ui-flex-full-tablet {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.ui-pv-5px {
    padding-top: 5px;
    padding-bottom: 5px;
}

.ui-pv-10px {
    padding-top: 10px;
    padding-bottom: 10px;
}

.ui-pv-15px {
    padding-top: 15px;
    padding-bottom: 15px;
}

.ui-pv-20px {
    padding-top: 20px;
    padding-bottom: 20px;
}

.ui-pv-25px {
    padding-top: 25px;
    padding-bottom: 25px;
}

.ui-pv-30px {
    padding-top: 30px;
    padding-bottom: 30px;
}

.ui-pv-40px {
    padding-top: 40px;
    padding-bottom: 40px;
}

.ui-pv-50px {
    padding-top: 50px;
    padding-bottom: 50px;
}

.ui-pv-60px {
    padding-top: 60px;
    padding-bottom: 60px;
}

.ui-pv-70px {
    padding-top: 70px;
    padding-bottom: 70px;
}

.ui-pv-80px {
    padding-top: 80px;
    padding-bottom: 80px;
}

.ui-pv-90px {
    padding-top: 90px;
    padding-bottom: 90px;
}

.ui-pv-100px {
    padding-top: 100px;
    padding-bottom: 100px;
}

.ui-pv-0 {
    padding-top: 0;
    padding-bottom: 0;
}

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

.ui-pb-0 {
    padding-bottom: 0 !important;
}

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

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

.ui-pt-15px {
    padding-top: 15px;
}

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

.ui-pt-25px {
    padding-top: 25px;
}

.ui-pt-30px {
    padding-top: 30px;
}

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

.ui-pt-50px {
    padding-top: 50px;
}

.ui-pt-60px {
    padding-top: 60px;
}

.ui-pt-70px {
    padding-top: 70px;
}

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

.ui-pt-90px {
    padding-top: 90px;
}

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

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

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

.ui-pb-15px {
    padding-bottom: 15px;
}

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

.ui-pb-25px {
    padding-bottom: 25px;
}

.ui-pb-30px {
    padding-bottom: 30px;
}

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

.ui-pb-50px {
    padding-bottom: 50px;
}

.ui-pb-60px {
    padding-bottom: 60px;
}

.ui-pb-70px {
    padding-bottom: 70px;
}

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

.ui-pb-90px {
    padding-bottom: 90px;
}

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

.ui-mv-5px {
    margin-top: 5px;
    margin-bottom: 5px;
}

.ui-mv-10px {
    margin-top: 10px;
    margin-bottom: 10px;
}

.ui-mv-15px {

    margin-top: 15px;
    margin-bottom: 15px;
}

.ui-mv-20px {
    margin-top: 20px;
    margin-bottom: 20px;
}

.ui-mv-25px {
    margin-top: 25px;
    margin-bottom: 25px;
}

.ui-mv-30px {
    margin-top: 30px;
    margin-bottom: 30px;
}

.ui-mv-40px {
    margin-top: 40px;
    margin-bottom: 40px;
}

.ui-mv-50px {
    margin-top: 50px;
    margin-bottom: 50px;
}

.ui-mv-60px {
    margin-top: 60px;
    margin-bottom: 60px;
}

.ui-mv-70px {
    margin-top: 70px;
    margin-bottom: 70px;
}

.ui-mv-80px {
    margin-top: 80px;
    margin-bottom: 80px;
}

.ui-mv-90px {
    margin-top: 90px;
    margin-bottom: 90px;
}

.ui-mv-100px {
    margin-top: 100px;
    margin-bottom: 100px;
}

.ui-mv-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.ui-mt-0 {
    margin-top: 0 !important;
}

.ui-mb-0 {
    margin-bottom: 0 !important;
}

.ui-ml-0 {
    margin-left: 0 !important;
}

.ui-mr-0 {
    margin-right: 0 !important;
}

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

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

.ui-mt-15px {
    margin-top: 15px;
}

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

.ui-mt-25px {
    margin-top: 25px;
}

.ui-mt-30px {
    margin-top: 30px !important;
}

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

.ui-mt-50px {
    margin-top: 50px;
}

.ui-mt-60px {
    margin-top: 60px;
}

.ui-mt-70px {
    margin-top: 70px;
}

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

.ui-mt-90px {
    margin-top: 90px;
}

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

.ui-mb-5px {
    margin-bottom: 5px !important;
}

.ui-mb-10px {
    margin-bottom: 10px !important;
}

.ui-mb-15px {
    margin-bottom: 15px !important;
}

.ui-mb-20px {
    margin-bottom: 20px !important;
}

.ui-mb-25px {
    margin-bottom: 25px !important;
}

.ui-mb-30px {
    margin-bottom: 30px !important;
}

.ui-mb-40px {
    margin-bottom: 40px !important;
}

.ui-mb-50px {
    margin-bottom: 50px !important;
}

.ui-mb-60px {
    margin-bottom: 60px !important;
}

.ui-mb-70px {
    margin-bottom: 70px !important;
}

.ui-mb-80px {
    margin-bottom: 80px !important;
}

.ui-mb-90px {
    margin-bottom: 90px !important;
}

.ui-mb-100px {
    margin-bottom: 100px !important;
}

.header {
  border-top: 2px solid var(--ed-primary);
  font-family: var(--ed-font);
}

@media (min-width: 1200px) {
  /* Merkez şerit — üst bar ile logo aynı beyaz ton */
  .header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 164px;
    height: 70px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.55) 0%,
      #ffffff 55%,
      #ffffff 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  .header-top {
    position: relative;
    z-index: 2;
    background: linear-gradient(
      90deg,
      #dceaf5 0%,
      #e8f2fa 14%,
      #ffffff 50%,
      #e8f2fa 86%,
      #dceaf5 100%
    );
    border-bottom: none;
    padding: 0;
    height: 70px;
  }

  .header-top > .header-container {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    align-items: center;
    height: 70px;
    padding: 0 24px;
    max-width: 100%;
    position: relative;
    z-index: 2;
  }

  .header-top > .header-container::after {
    display: none;
  }

  .header-bottom {
    position: relative;
    z-index: 1;
    overflow: visible;
    background: var(--main-color-dark);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Ayırıcı çizgi logo altında kesilir */
  .header-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.12) calc(50% - 88px),
      transparent calc(50% - 88px),
      transparent calc(50% + 88px),
      rgba(255, 255, 255, 0.12) calc(50% + 88px),
      rgba(255, 255, 255, 0.12) 100%
    );
    pointer-events: none;
  }

  .header-bottom .header-row {
    overflow: visible;
    position: relative;
  }
}

/* Utility butonları — düz, ayraçlı */
.header-top .header-buttons.br-style-1 .btn.br-default {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  padding-right: 18px;
  margin-right: 0;
  transition: opacity var(--ed-duration) var(--ed-ease);
}

.header-top .header-buttons.br-style-1 .btn.br-default:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: rgba(0, 74, 153, 0.12);
}

.header-top .header-buttons.br-style-1 .btn.br-default:hover {
  background: transparent;
  transform: none;
  box-shadow: none;
  opacity: 0.82;
}

.header-top .header-buttons.br-style-1 .btn.br-default:hover .desc span {
  color: var(--ed-primary);
}

.header-top .header-buttons.br-style-1 .btn.br-default .icon {
  width: 38px;
  height: 38px;
  background: rgba(0, 74, 153, 0.08);
  border-radius: var(--ed-radius-xs);
  color: var(--ed-primary);
  box-shadow: none;
  margin-top: 0;
  font-size: 15px;
  transition: background var(--ed-duration) var(--ed-ease);
}

.header-top .header-buttons.br-style-1 .btn.br-default:hover .icon {
  background: rgba(0, 74, 153, 0.14);
  color: var(--ed-primary);
}

.header-top .header-buttons.br-style-1 .btn.br-default .icon svg {
  fill: var(--ed-primary);
}

.header-top .header-buttons.br-style-1 .btn.br-default .desc span {
  color: var(--ed-primary);
}

.header-top .header-buttons.br-style-1 .btn.br-default .desc .heading {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.03em;
}

.header-top .header-buttons.br-style-1 .btn.br-default .desc .text {
  font-weight: 500;
  opacity: 0.65;
  font-size: 10px;
}

/* Bizi Takip Edin */
.header-top__right {
  align-items: center;
  gap: 8px;
}

.header-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  height: 36px;
  padding: 0 12px 0 6px;
  border: 1px solid rgba(0, 80, 138, 0.1);
  border-radius: 999px;
  background: rgba(219, 226, 231, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  color: var(--ed-primary);
  cursor: pointer;
  transition:
    background var(--ed-duration) var(--ed-ease),
    border-color var(--ed-duration) var(--ed-ease),
    box-shadow var(--ed-duration) var(--ed-ease),
    transform var(--ed-duration) var(--ed-ease);
}

.header-search-btn:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 80, 138, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 4px 14px rgba(0, 74, 153, 0.12);
  transform: translateY(-1px);
}

.header-search-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ed-primary);
  color: #fff;
  font-size: 12px;
  flex-shrink: 0;
}

.header-search-btn__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
  text-align: left;
}

.header-search-btn__heading {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.68;
}

.header-search-btn__text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.header-lang {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 12px;
}

.header-lang__switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(219, 226, 231, 0.5);
  border: 1px solid rgba(0, 80, 138, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.header-lang__btn {
  min-width: 0;
  height: 30px;
  padding: 0 14px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #5e788f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--ed-duration) var(--ed-ease),
    color var(--ed-duration) var(--ed-ease),
    box-shadow var(--ed-duration) var(--ed-ease);
}

.header-lang__btn:hover {
  color: var(--ed-primary);
}

.header-lang__btn.is-active {
  background: var(--ed-primary);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 74, 153, 0.28);
}

.header-lang__btn.is-active:hover {
  color: #fff;
}

.header-lang--mobile {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 8px;
}

.header-lang--mobile .header-lang__switcher {
  background: rgba(0, 74, 153, 0.08);
  border-color: rgba(0, 80, 138, 0.12);
  box-shadow: none;
}

.header-lang--mobile .header-lang__btn {
  color: #5e788f;
}

.header-lang--mobile .header-lang__btn:hover {
  color: var(--ed-primary);
}

.header-lang--mobile .header-lang__btn.is-active {
  background: var(--ed-primary);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 74, 153, 0.28);
}

.header-buttons__mobile-end {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

/* Mobil üst bar dil kısayolu — yalnızca diğer dilin kodu */
.header-lang-mini {
  display: none;
  align-items: center;
  gap: 5px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  flex-shrink: 0;
}

.header-lang-mini__icon {
  display: inline-flex;
  font-size: 13px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.85);
}

.header-lang-mini__btn {
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--ed-duration) var(--ed-ease);
}

.header-lang-mini__btn:hover,
.header-lang-mini__btn:focus-visible {
  color: #fff;
  opacity: 0.75;
}

.header-lang-mini__btn + .header-lang-mini__btn::before {
  content: "/";
  margin-right: 5px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}

@media (max-width: 1199px) {
  .header-lang {
    margin-right: 8px;
  }

  .header-lang__btn {
    height: 28px;
    padding: 0 11px;
    font-size: 10px;
  }

  .header-search-btn {
    height: 34px;
    padding-right: 10px;
  }

  .header-search-btn__icon {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }

  .header-search-btn__heading {
    font-size: 8px;
  }

  .header-search-btn__text {
    font-size: 10px;
  }
}

@media (max-width: 991px) {
  .header-top .header-search-btn {
    display: none;
  }
}

@media (min-width: 1201px) {
  .header-lang--mobile,
  .header-lang-mini {
    display: none;
  }
}

@media (max-width: 1200px) {
  .header-top .header-lang:not(.header-lang--mobile) {
    display: none;
  }

  .header-lang-mini {
    display: inline-flex;
  }

  /* Ortadaki logo alanı rezerve edilir, yan gruplar asla altına girmez */
  .header-buttons._mobile {
    display: grid;
    grid-template-columns: auto minmax(125px, 1fr) auto;
    align-items: center;
    column-gap: 6px;
  }

  .header-buttons._mobile .btn-bar {
    justify-self: start;
  }

  .header-buttons__mobile-end {
    grid-column: 3;
    justify-self: end;
  }
}

@media (max-width: 359px) {
  .header-lang-mini {
    padding: 0 8px;
  }

  .header-lang-mini__icon {
    display: none;
  }
}

/* ═══════════════════════════════════════
   MOBILE NAV — modern drawer
   ═══════════════════════════════════════ */

.mobile-nav {
  width: min(452px, calc(100vw - 34px));
  background:
    radial-gradient(ellipse 42% 26% at 78% 10%, rgba(0, 74, 153, 0.06) 0%, transparent 72%),
    linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;
  box-shadow: 18px 24px 50px rgba(0, 20, 50, 0.22);
  overflow: hidden;
}

.mobile-nav__wrapper {
  height: calc(100% - 88px);
  padding: 28px 22px 28px;
  scrollbar-color: rgba(0, 74, 153, 0.18) transparent;
}

.mobile-nav__wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.mobile-nav__wrapper::-webkit-scrollbar {
  width: 5px;
}

.mobile-nav__wrapper::-webkit-scrollbar-thumb {
  background: rgba(0, 74, 153, 0.18);
  border-radius: 999px;
}

.mobile-nav__header {
  background: transparent;
  border-bottom: none;
}

.mobile-nav__header-body {
  height: auto;
  min-height: 72px;
  align-items: center;
  padding: 0;
  gap: 10px;
}

.mobile-nav__header-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.mobile-nav__header-logo a {
  color: #12284b;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.mobile-nav__header-subtitle {
  color: #64748b;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.mobile-nav__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-left: 0;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ed-primary);
  box-shadow: 0 10px 24px rgba(0, 40, 90, 0.1);
}

.mobile-nav__close .icon {
  font-size: 22px;
}

.mobile-nav__content {
  border-bottom: none;
  margin-top: 28px;
}

.mobile-nav__content > ul,
.mobile-nav__content.other > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav__content li.heading {
  position: relative;
  padding: 0 0 18px;
  margin: 0 0 14px;
  color: #6a8cb6;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.mobile-nav__content li.heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #7aa8d6 0%, #90c1ef 100%);
}

.mobile-nav__content li.heading::before {
  content: "";
  position: absolute;
  left: 34px;
  bottom: -2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8fc3ef;
  box-shadow: 0 0 0 2px rgba(143, 195, 239, 0.14);
}

.mobile-nav__content > ul > li:not(.heading) {
  margin-bottom: 12px;
}

.mobile-nav__content > ul > li:not(.heading) > a {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 0 26px 0 26px;
  border-radius: 18px;
  background: #fff;
  color: #172b4d;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow:
    0 8px 22px rgba(0, 40, 90, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    transform var(--ed-duration) var(--ed-ease),
    box-shadow var(--ed-duration) var(--ed-ease),
    color var(--ed-duration) var(--ed-ease);
}

.mobile-nav__content > ul > li:not(.heading) > a.link {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  padding-top: 0;
  padding-bottom: 0;
}

.mobile-nav__content > ul > li:not(.heading):not(.not) > a.link::before,
.mobile-nav__content > ul > li:not(.heading).not > a::before {
  content: "";
  width: 3px;
  height: 34px;
  margin-right: 20px;
  border-radius: 999px;
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(0, 74, 153, 0.08);
}

.mobile-nav__content > ul > li:not(.heading):not(.not).is-open > a,
.mobile-nav__content > ul > li:not(.heading):not(.not):hover > a {
  background: #fff;
  color: #172b4d;
  box-shadow:
    0 12px 28px rgba(0, 40, 90, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.mobile-nav__content > ul > li:not(.heading):not(.not).is-open > a.link::before,
.mobile-nav__content > ul > li:not(.heading):not(.not):hover > a.link::before {
  background: linear-gradient(180deg, var(--ed-primary) 0%, #3c6ec4 100%);
  box-shadow: none;
}

.mobile-nav__content > ul > li:not(.heading) > a .text {
  flex: 1;
}

.mobile-nav__content > ul > li:not(.heading) > a::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 18px;
  border-top: 1.8px solid #4d6485;
  border-right: 1.8px solid #4d6485;
  transform: rotate(45deg);
  transition: transform var(--ed-duration) var(--ed-ease), border-color var(--ed-duration) var(--ed-ease);
}

.mobile-nav__content > ul > li:not(.heading).is-open > a::after {
  transform: rotate(135deg);
  margin-top: -4px;
}

.mobile-nav__plus {
  display: none !important;
}

.mobile-nav__sub {
  display: none;
  margin: 8px 0 2px;
  padding: 4px 0 0;
  background: transparent;
}

.mobile-nav__sub > li {
  display: block;
  margin-bottom: 8px;
}

.mobile-nav__sub > li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.mobile-nav__sub > li > a {
  display: block;
  margin-left: 12px;
  padding: 10px 18px 10px 24px;
  border: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: #4a5f7c;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: 0 4px 14px rgba(0, 40, 90, 0.04);
  transition: background var(--ed-duration) var(--ed-ease), color var(--ed-duration) var(--ed-ease);
}

.mobile-nav__sub > li > a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(0, 74, 153, 0.24);
  opacity: 1;
}

.mobile-nav__sub > li > a:hover {
  color: var(--ed-primary);
  background: #fff;
}

.mobile-nav__content.other {
  padding-top: 2px;
  padding-bottom: 12px;
}

.mobile-nav__content > ul > li.not > a {
  min-height: 58px;
  padding-left: 20px;
  padding-right: 22px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.mobile-nav__content > ul > li.not > a:hover {
  color: var(--ed-primary);
}

.mobile-nav__footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 88px;
  padding: 0 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, #ffffff 100%);
  box-shadow: 0 -14px 30px rgba(0, 20, 50, 0.08);
}

.mobile-nav__footer a {
  flex: 1;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #152d57;
  font-size: 28px;
  opacity: 1;
  transition: transform var(--ed-duration) var(--ed-ease), color var(--ed-duration) var(--ed-ease);
}

.mobile-nav__footer a:hover {
  color: var(--ed-primary);
  transform: translateY(-2px);
}

@media (max-width: 479px) {
  .mobile-nav {
    width: calc(100vw - 16px);
    border-top-right-radius: 22px;
    border-bottom-right-radius: 22px;
  }

  .mobile-nav__wrapper {
    padding: 22px 16px 22px;
  }

  .mobile-nav__header-logo a {
    font-size: 22px;
  }

  .mobile-nav__header-subtitle {
    font-size: 13px;
  }

  .mobile-nav__close {
    width: 48px;
    height: 48px;
  }

  .mobile-nav__content > ul > li:not(.heading) > a,
  .mobile-nav__content > ul > li.not > a {
    min-height: 68px;
    font-size: 17px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .mobile-nav__content > ul > li:not(.heading):not(.not) > a.link::before,
  .mobile-nav__content > ul > li:not(.heading).not > a::before {
    margin-right: 14px;
    height: 28px;
  }

  .mobile-nav__footer {
    height: 78px;
    padding: 0 10px;
  }

  .mobile-nav__footer a {
    height: 78px;
    font-size: 24px;
  }
}

.header-follow-label {
  display: none;
  font-size: 11px;
  font-weight: 600;
  color: var(--ed-text-muted);
  letter-spacing: 0.04em;
  margin-right: 10px;
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .header-follow-label {
    display: inline-flex;
    align-items: center;
  }
}

/* Sosyal — renkli daireler */
.header-top .header-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  font-size: 13px;
  transition: transform var(--ed-duration) var(--ed-ease), box-shadow var(--ed-duration) var(--ed-ease);
}

.header-top .header-social a[class*="br-color-"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 1;
}

/* ═══════════════════════════════════════
   HEADER BOTTOM — navigasyon
   ═══════════════════════════════════════ */

@media (max-width: 1200px) {
  .header-bottom {
    background: var(--ed-navy-glass);
    backdrop-filter: var(--ed-blur);
    -webkit-backdrop-filter: var(--ed-blur);
    border-bottom: 1px solid var(--ed-glass-border);
    box-shadow: 0 4px 20px rgba(0, 20, 50, 0.2);
    position: relative;
    z-index: 2;
  }
}

/* Logo rozeti — üst bar ile tek parça */
@media (min-width: 992px) {
  .header-logo {
    top: 1px;
    z-index: 15;
  }

  .header-logo h1 {
    margin: 0;
    line-height: 0;
  }
}

.header-logo a {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 52%, #eef4fb 100%);
  border: 1px solid rgba(255, 255, 255, 0.98);
  border-top: none;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  width: 158px;
    padding: 14px 14px 20px;
    margin-top: -1px;
    box-shadow: 0 16px 40px rgba(0, 35, 80, 0.2), 0 6px 16px rgba(0, 50, 100, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

/* Üst bar alt kenarı ile birleşim çizgisi */
.header-logo a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 85% 50% at 50% 28%,
      rgba(41, 182, 246, 0.18) 0%,
      rgba(0, 74, 153, 0.05) 45%,
      transparent 72%
    );
  pointer-events: none;
}

.header-logo a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 74, 153, 0.08), transparent);
  pointer-events: none;
}

.header-logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 10px 8px;
  border: 1.5px solid rgba(100, 180, 230, 0.42);
  border-radius: 16px;
  background: radial-gradient(
    ellipse 90% 80% at 50% 35%,
    rgba(120, 200, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.65) 55%,
    rgba(248, 251, 255, 0.9) 100%
  );
  box-shadow: inset 0 0 18px rgba(41, 182, 246, 0.1);
  box-sizing: border-box;
}

.header-logo a:hover {
  box-shadow:
    0 20px 48px rgba(0, 35, 80, 0.24),
    0 8px 20px rgba(0, 50, 100, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}
@media (max-width: 1199px) { 
  .header-logo a { 
    width: 115px;
    padding: 7px 8px; 
  } 
}
/* Navigasyon */
.header-nav__item--home{
  padding: 0;
}
.header-nav__item--home > a {
  font-size: 18px;
  padding: 0;
}

.header-nav__item--home > a i {
  display: block;
  line-height: 1;
  padding: 0;
}

.mobile-nav__content > ul > li.mobile-nav__home > a::after {
  display: none;
}

.header-nav__item > a {
  font-family: var(--ed-font);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 992px) and (max-width: 1340px) {
  .header-nav__item > a {
    font-size: 13px;
  }
}

.header-nav__item > a::before {
  height: 3px;
  background: var(--ed-accent);
  border-radius: 2px;
  bottom: 14px;
}

.header-nav__item:has(.header-nav__dropdown) > a::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 5px;
  font-size: 9px;
  opacity: 0.65;
  vertical-align: middle;
}

.header-nav__item.is-visible > a,
.header-nav__item:not(.is-visible):hover > a {
  color: var(--ed-white);
}

.header-nav__dropdown {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 120;
  background: linear-gradient(180deg, #e6eef6 0%, #f2f7fb 52%, #e9f0f7 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top: 1px solid rgba(0, 74, 153, 0.08);
  box-shadow: 0 18px 40px rgba(0, 30, 70, 0.12);
  overflow: visible;
  pointer-events: none;
}

/* Menü ile panel arasında hover köprüsü */
.header-nav__dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 14px;
}

@media (min-width: 1201px) {
  .header-bottom.is-active {
    position: relative;
    z-index: 2;
  }

  .app-overlay.is-visible {
    z-index: 1000;
  }

  .header-nav__item.is-visible .header-nav__dropdown,
  .header-nav__item.is-visible .header-nav__dropdown-container {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header-nav__item.is-visible .header-nav__dropdown-container {
    transform: translateY(0);
  }
}

.header-nav__dropdown::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 38% 42% at 8% 18%, rgba(0, 74, 153, 0.06) 0%, transparent 72%),
    radial-gradient(ellipse 34% 36% at 92% 78%, rgba(0, 74, 153, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.header-nav__dropdown-container {
  position: relative;
  z-index: 1;
  will-change: transform, opacity;
}

.header-nav__dropdown-container:not(.ui-no-padding-v) {
  padding-top: clamp(36px, 4vw, 52px);
  padding-bottom: clamp(32px, 3.5vw, 48px);
}

.header-nav__dropdown-container:has(.boxes)::before,
.header-nav__dropdown-container:has(.boxes)::after {
  content: "";
  position: absolute;
  width: clamp(56px, 6vw, 84px);
  height: clamp(40px, 4.5vw, 56px);
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(0, 74, 153, 0.16) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.55;
  z-index: 0;
}

.header-nav__dropdown-container:has(.boxes)::before {
  top: clamp(16px, 2vw, 24px);
  left: clamp(12px, 2vw, 28px);
}

.header-nav__dropdown-container:has(.boxes)::after {
  right: clamp(12px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 24px);
}

.header-nav__dropdown-container .boxes {
  position: relative;
  z-index: 1;
}

.header-nav__dropdown-container .boxes > ul.row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.header-nav__dropdown-container .boxes > ul.row > li {
  flex: 0 0 calc((100% - 80px) / 6);
  max-width: calc((100% - 80px) / 6);
  width: calc((100% - 80px) / 6);
  padding: 0 !important;
  margin: 0 !important;
}

.header-nav__dropdown-container .boxes .card-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  height: 100%;
  min-height: 62px;
  padding: 25px 14px 25px 16px !important;
  border-radius: 10px;
  border: 1px solid rgba(0, 74, 153, 0.07);
  background: #fff !important;
  box-shadow:
    0 4px 14px rgba(0, 40, 90, 0.07),
    0 1px 3px rgba(0, 40, 90, 0.04);
  text-decoration: none;
  transition:
    transform var(--ed-duration) var(--ed-ease),
    box-shadow var(--ed-duration) var(--ed-ease),
    border-color var(--ed-duration) var(--ed-ease);
}

.header-nav__dropdown-container .boxes .card-box:hover {
  background: #fff !important;
  transform: translateY(-2px);
  border-color: rgba(0, 74, 153, 0.14);
  box-shadow:
    0 10px 24px rgba(0, 40, 90, 0.11),
    0 2px 6px rgba(0, 40, 90, 0.05);
}

.header-nav__dropdown-container .boxes .card-box .title {
  order: 1;
  position: relative;
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0 0 0 14px;
  max-width: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a3a5c !important;
  transition: color var(--ed-duration) var(--ed-ease);
}

.header-nav__dropdown-container .boxes .card-box .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 22px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--ed-primary) 0%, var(--ed-secondary) 100%);
}

.header-nav__dropdown-container .boxes .card-box .icon {
  order: 2;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 0;
  font-size: 12px !important;
  line-height: 1;
  color: var(--ed-primary) !important;
  transition: color var(--ed-duration) var(--ed-ease), transform var(--ed-duration) var(--ed-ease);
}

.header-nav__dropdown-container .boxes .card-box .icon svg {
  display: block;
  width: 9px;
  height: 9px;
  fill: currentColor;
}

.header-nav__dropdown-container .boxes .card-box:hover .title {
  color: var(--ed-primary) !important;
}

.header-nav__dropdown-container .boxes .card-box:hover .icon {
  color: var(--ed-secondary) !important;
  transform: translateX(2px);
}

.header-nav__dropdown-container .header-nav__tab {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.header-nav__dropdown-container .header-nav__tab > ul.row {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 0 auto;
  padding: 4px;
  list-style: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 8px 24px rgba(0, 40, 90, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.header-nav__dropdown-container .header-nav__tab > ul.row > li {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  padding: 0 !important;
}

.header-nav__dropdown-container .header-nav__tab ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  background: transparent !important;
  color: #3a4d63 !important;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: none;
  transition:
    background var(--ed-duration) var(--ed-ease),
    color var(--ed-duration) var(--ed-ease),
    box-shadow var(--ed-duration) var(--ed-ease);
}

.header-nav__dropdown-container .header-nav__tab ul li.is-current a,
.header-nav__dropdown-container .header-nav__tab ul li a:hover {
  background: linear-gradient(135deg, #173f74 0%, #244f88 100%) !important;
  color: #fff !important;
  box-shadow: inset 0 -2px 0 #d8aa2f;
}

.header-nav__dropdown-container .header-nav__tab-container {
  position: relative;
  z-index: 1;
  margin-top: 20px !important;
}

.header-nav__dropdown-container .header-nav__tab-content .headlinenewsV2-other {
  margin-top: 0;
}

.header-nav__dropdown-container .header-nav__tab-content .headlinenewsV2-other > ul.row {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
}

.header-nav__dropdown-container .header-nav__tab-content .headlinenewsV2-other > ul.row > li.news-card {
  flex: 0 0 calc((100% - 56px) / 5);
  max-width: calc((100% - 56px) / 5);
  width: calc((100% - 56px) / 5);
  padding: 0 !important;
}

.header-nav__dropdown-container .header-nav__tab-content .news-card a {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 252px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 10px 28px rgba(0, 40, 90, 0.09),
    0 2px 6px rgba(0, 40, 90, 0.04);
  transition:
    transform var(--ed-duration) var(--ed-ease),
    box-shadow var(--ed-duration) var(--ed-ease);
}

.header-nav__dropdown-container .header-nav__tab-content .news-card a:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 34px rgba(0, 40, 90, 0.14),
    0 3px 8px rgba(0, 40, 90, 0.05);
}

.header-nav__dropdown-container .header-nav__tab-content .news-cover {
  position: relative;
  height: 152px;
  flex: 0 0 152px;
  overflow: hidden;
}

.header-nav__dropdown-container .header-nav__tab-content .news-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ed-ease);
}

.header-nav__dropdown-container .header-nav__tab-content .news-card a:hover .news-cover img {
  transform: scale(1.04);
}

.header-nav__dropdown-container .header-nav__tab-content .news-body {
  position: static !important;
  inset: auto !important;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start !important;
  align-items: flex-start;
  min-height: 100px;
  padding: 14px 18px 18px !important;
  background: #fff;
  z-index: auto;
}

.header-nav__dropdown-container .header-nav__tab-content .news-body::after {
  display: none !important;
}

.header-nav__dropdown-container .header-nav__tab-content .news-body .date {
  display: inline-flex;
  align-items: center;
  position: absolute;
  left: 14px;
  top: 118px;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(13, 42, 77, 0.92);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
  box-shadow: 0 6px 16px rgba(0, 30, 70, 0.18);
}

.header-nav__dropdown-container .header-nav__tab-content .news-body .title {
  margin: 0;
  min-height: 72px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.38;
  max-height: none;
  overflow: visible;
  padding-right: 0 !important;
  color: #1c3550 !important;
}

.header-nav__dropdown-container .header-nav__tab-content .news-body .title::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 18px;
  border-radius: 2px;
  background: linear-gradient(90deg, #274a86 0%, rgba(39, 74, 134, 0.2) 100%);
}

@media (min-width: 1200px) {
  .header-bottom {
    overflow: visible;
  }

  .header-bottom .header-row {
    overflow: visible;
    position: relative;
  }
}

@media (max-width: 1399px) {
  .header-nav__dropdown-container .boxes > ul.row > li {
    flex-basis: calc((100% - 48px) / 4);
    max-width: calc((100% - 48px) / 4);
    width: calc((100% - 48px) / 4);
  }
}

@media (max-width: 1199px) {
  .header-nav__dropdown-container .boxes > ul.row > li {
    flex-basis: calc((100% - 32px) / 3);
    max-width: calc((100% - 32px) / 3);
    width: calc((100% - 32px) / 3);
  }
}

@media (max-width: 991px) {
  .header-nav__dropdown-container .boxes > ul.row > li {
    flex-basis: calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
    width: calc((100% - 12px) / 2);
  }

  .header-nav__dropdown-container .boxes .card-box {
    min-height: 56px;
    padding: 14px 12px !important;
  }

  .header-nav__dropdown-container .boxes .card-box .title {
    font-size: 12px;
    padding-left: 12px;
  }

  .header-nav__dropdown-container .boxes .card-box .title::before {
    height: 18px;
  }

  .header-nav__dropdown-container .header-nav__tab > ul.row {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 4px;
  }

  .header-nav__dropdown-container .header-nav__tab ul li a {
    min-width: 100px;
    padding: 0 14px;
  }

  .header-nav__dropdown-container .header-nav__tab-content .headlinenewsV2-other > ul.row {
    flex-wrap: wrap;
  }

  .header-nav__dropdown-container .header-nav__tab-content .headlinenewsV2-other > ul.row > li.news-card {
    flex: 0 0 calc((100% - 14px) / 2);
    max-width: calc((100% - 14px) / 2);
    width: calc((100% - 14px) / 2);
  }
}

/* ═══════════════════════════════════════
   HERO — sinematik overlay
   ═══════════════════════════════════════ */

.hero {
  font-family: var(--ed-font);
}

.hero .slide-material::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    95deg,
    rgba(0, 20, 50, 0.72) 0%,
    rgba(0, 40, 90, 0.38) 38%,
    rgba(0, 0, 0, 0.05) 58%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.hero .slide-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 15, 40, 0.55) 0%, transparent 50%);
}

/* Sol metin bloğu */
.hero .slide-content .eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}

.hero .slide-content .heading {
  font-family: var(--ed-font);
  font-size: clamp(2.1rem, 4.8vw, 3.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.06;
  color: var(--ed-white);
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.4);
  max-width: 11.5em;
  width: max-content;
}

.hero .slide-content .border {
  display: none;
}

.hero .slide-content .text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  margin-top: 18px;
}

.hero .slide-content .btn-wrapper {
  margin-top: 30px;
}

/* CTA — mockup: sol köşe az, sağ köşe tam yuvarlak */
.hero .slide-content .btn-wrapper .button-common {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 52px;
  min-width: auto;
  padding: 0 22px 0 24px;
  border-radius: 6px 28px 28px 6px;
  background: var(--ed-primary);
  color: var(--ed-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 74, 153, 0.38);
  transition: transform var(--ed-duration) var(--ed-ease), box-shadow var(--ed-duration) var(--ed-ease), background var(--ed-duration) var(--ed-ease);
}

.hero .slide-content .btn-wrapper .button-common:hover {
  background: var(--ed-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 74, 153, 0.45);
}

.hero .slide-content .btn-wrapper .button-common__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  flex-shrink: 0;
}

.hero .slide-content .btn-wrapper .button-common:hover .button-common__arrow {
  background: transparent;
}

.hero .slide-content .btn-wrapper .button-common__arrow i {
  font-size: 12px;
}

/* Giriş animasyonu */
.slide-content .eyebrow {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-40px);
  transition: 0.85s 0.1s;
}

.slide-list li.is-active .slide-content .eyebrow {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Slider okları */
.hero .slide-arrows a {
  width: 54px;
  height: 54px;
  background: rgba(0, 20, 50, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: background var(--ed-duration) var(--ed-ease), transform var(--ed-duration) var(--ed-ease), border-color var(--ed-duration) var(--ed-ease);
}

.hero .slide-arrows a:hover {
  background: rgba(0, 74, 153, 0.85);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

.hero .slide-arrows a.prev {
  left: 28px;
}

.hero .slide-arrows a.next {
  right: 28px;
}

/* Pagination — sol alt, mavi aktif çubuk */
.hero .slide-pagination {
  bottom: auto;
  text-align: left;
  padding-left: 28px;
  z-index: 6;
}

@media (min-width: 992px) {
  .hero .slide-pagination {
    bottom: 36px;
  }
}

.hero .slide-pagination li a {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  margin: 0 4px;
}

.hero .slide-pagination li.is-active a {
  width: 28px;
  background: var(--ed-accent);
  border-radius: var(--ed-radius-pill);
}

/* ═══════════════════════════════════════
   SAĞ PANEL — referans görsel (birebir)
   3 cam buton + ayrı cam liste kartı
   ═══════════════════════════════════════ */

.hero-tab {
  font-family: var(--ed-font);
  width: 450px;
}

.hero-tab .slideInRight {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  box-sizing: border-box;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* ── Üst: 3 bağımsız cam buton (neon iç glow) ── */

.hero-tab__nav {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.hero-tab__nav ul.row,
.hero-tab__nav ul {
  margin: 0;
  width: 100%;
  padding: 0;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 10px;
}

.hero-tab__nav ul.row > li,
.hero-tab__nav ul li {
  flex: 1 1 0;
  max-width: none;
  padding: 0;
  height: auto;
  min-width: 0;
}

.hero-tab__nav ul li .btn {
  height: 98px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  transition: transform var(--ed-duration) var(--ed-ease), box-shadow var(--ed-duration) var(--ed-ease);
}

.hero-tab__nav ul li:nth-child(1) .btn {
  background: rgba(0, 90, 180, 0.42);
  box-shadow:
    inset 0 0 22px rgba(0, 123, 255, 0.65),
    inset 0 0 44px rgba(0, 80, 200, 0.28),
    0 6px 18px rgba(0, 0, 0, 0.14);
}

.hero-tab__nav ul li:nth-child(2) .btn {
  background: rgba(30, 120, 55, 0.42);
  border-color: rgba(160, 230, 170, 0.4);
  box-shadow:
    inset 0 0 22px rgba(40, 167, 69, 0.62),
    inset 0 0 44px rgba(30, 130, 50, 0.28),
    0 6px 18px rgba(0, 0, 0, 0.14);
}

.hero-tab__nav ul li:nth-child(3) .btn {
  background: rgba(100, 40, 130, 0.42);
  border-color: rgba(200, 140, 220, 0.38);
  box-shadow:
    inset 0 0 22px rgba(156, 39, 176, 0.62),
    inset 0 0 44px rgba(100, 20, 140, 0.28),
    0 6px 18px rgba(0, 0, 0, 0.14);
}

.hero-tab__nav ul li .btn:hover {
  transform: translateY(-2px);
}

.hero-tab__nav ul li:nth-child(1) .btn:hover {
  box-shadow:
    inset 0 0 26px rgba(0, 123, 255, 0.75),
    inset 0 0 48px rgba(0, 80, 200, 0.32),
    0 10px 22px rgba(0, 0, 0, 0.18);
}

.hero-tab__nav ul li:nth-child(2) .btn:hover {
  box-shadow:
    inset 0 0 26px rgba(40, 167, 69, 0.75),
    inset 0 0 48px rgba(30, 130, 50, 0.32),
    0 10px 22px rgba(0, 0, 0, 0.18);
}

.hero-tab__nav ul li:nth-child(3) .btn:hover {
  box-shadow:
    inset 0 0 26px rgba(156, 39, 176, 0.75),
    inset 0 0 48px rgba(100, 20, 140, 0.32),
    0 10px 22px rgba(0, 0, 0, 0.18);
}

/* Aktif tab panele yapışmasın — main.min override */
.hero-tab__nav ul li.is-current .btn {
  height: 98px;
  border-radius: 18px;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  outline: none;
}

.hero-tab__nav ul li:nth-child(1).is-current .btn {
  box-shadow:
    inset 0 0 28px rgba(0, 123, 255, 0.8),
    inset 0 0 52px rgba(0, 80, 200, 0.35),
    0 0 0 1px rgba(120, 190, 255, 0.55);
}

.hero-tab__nav ul li:nth-child(3).is-current .btn {
  box-shadow:
    inset 0 0 28px rgba(156, 39, 176, 0.8),
    inset 0 0 52px rgba(100, 20, 140, 0.35),
    0 0 0 1px rgba(200, 140, 220, 0.55);
}

.hero-tab__nav ul li .item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 4px;
  text-align: center;
  color: #fff;
}

.hero-tab__nav ul li .item .icon {
  font-size: 26px;
  line-height: 1;
  margin-bottom: 10px;
}

.hero-tab__nav ul li .item .icon svg {
  fill: #fff;
  width: 26px;
  height: 26px;
}

.hero-tab__nav ul li .item .title {
  font-size: 0;
  margin: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-tab__nav ul li .item .title span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ── Alt: ayrı cam liste kartı ── */

.hero-tab__container {
  width: 100%;
  margin: 12px 0 0;
  height: auto;
  min-height: 400px;
  max-height: 420px;
  padding: 10px 0 14px;
  background: rgba(12, 32, 58, 0.38);
  backdrop-filter: blur(22px) saturate(175%);
  -webkit-backdrop-filter: blur(22px) saturate(175%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(0, 8, 25, 0.28);
  overflow: hidden;
}

.hero-tab__content {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  height: 400px;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
}

.hero-tab__content .list-shortcuts {
  padding: 6px 0 4px;
}

.hero-tab__content .list-shortcuts ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-tab__content .list-shortcuts ul li {
  position: relative;
  border-bottom: none;
}

/* main.min tam genişlik ayırıcısını ez — kenarlara değmez */
.hero-tab__content .list-shortcuts ul li::after {
  content: "";
  display: block;
  position: static;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: auto;
  height: 1px;
  margin: 0 22px;
  background: rgba(255, 255, 255, 0.11);
  background-image: none;
  pointer-events: none;
}

.hero-tab__content .list-shortcuts ul li:last-child::after {
  display: none;
}

.hero-tab__content .list-shortcuts ul li::before {
  display: none;
}

.hero-tab__content .list-shortcuts.ui-item-fixed ul li a::before {
  display: none;
}

/* Daire ikonlar — düz doygun renkler */
.hero-tab__content .list-shortcuts .icon svg {
  display: none;
}

.hero-tab__content .list-shortcuts .icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  max-width: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  position: relative;
  z-index: 1;
  box-shadow: none;
  transition: transform var(--ed-duration) var(--ed-ease);
}

.hero-tab__content .list-shortcuts .icon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 17px;
  color: #fff;
}

.hero-tab__content .list-shortcuts ul li:nth-child(1) .icon { background: #007bff; }
.hero-tab__content .list-shortcuts ul li:nth-child(1) .icon::before { content: "\f19c"; }

.hero-tab__content .list-shortcuts ul li:nth-child(2) .icon { background: #28a745; }
.hero-tab__content .list-shortcuts ul li:nth-child(2) .icon::before { content: "\f0a1"; }

.hero-tab__content .list-shortcuts ul li:nth-child(3) .icon { background: #17a2b8; }
.hero-tab__content .list-shortcuts ul li:nth-child(3) .icon::before { content: "\f15c"; }

.hero-tab__content .list-shortcuts ul li:nth-child(4) .icon { background: #fd7e14; }
.hero-tab__content .list-shortcuts ul li:nth-child(4) .icon::before { content: "\f484"; }

.hero-tab__content .list-shortcuts ul li:nth-child(5) .icon { background: #e83e8c; }
.hero-tab__content .list-shortcuts ul li:nth-child(5) .icon::before { content: "\f70b"; }

.hero-tab__content .list-shortcuts ul li:nth-child(n+6) .icon { background: #6f42c1; }
.hero-tab__content .list-shortcuts ul li:nth-child(n+6) .icon::before { content: "\f0c1"; }

.hero-tab__content .list-shortcuts ul li a:hover .icon {
  transform: scale(1.04);
}

.hero-tab__content .list-shortcuts ul li a {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 15px 36px 15px 22px;
  position: relative;
  z-index: 1;
  text-decoration: none;
}

.hero-tab__content .list-shortcuts .description {
  padding-left: 16px;
  flex: 1;
  min-width: 0;
  z-index: 1;
}

.hero-tab__content .list-shortcuts .description .title {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.25;
}

.hero-tab__content .list-shortcuts .description .text,
.hero-tab__content .list-shortcuts .description .text p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  margin: 4px 0 0;
}

.hero-tab__content .list-shortcuts ul li a::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  z-index: 1;
  transition: color var(--ed-duration) var(--ed-ease), transform var(--ed-duration) var(--ed-ease);
  pointer-events: none;
}

.hero-tab__content .list-shortcuts ul li a:hover::after {
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%) translateX(2px);
}

.hero-tab__content {
  scrollbar-width: thin;
  scrollbar-color: rgba(41, 182, 246, 0.45) transparent;
}

.hero-tab__content::-webkit-scrollbar {
  width: 3px;
}

.hero-tab__content::-webkit-scrollbar-thumb {
  background: rgba(41, 182, 246, 0.45);
  border-radius: 4px;
}

/* Etkinlik sekmesi */
.hero-tab__content .hero-tab__activities {
  padding: 12px 22px 16px;
}

.hero-tab__content .days-nav .item a {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
}

.hero-tab__content .days-nav .item.is-current a,
.hero-tab__content .days-nav .item a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-tab__content .activity-description {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0 12px 12px 0;
}

.hero-tab__content .activity-description .title,
.hero-tab__content .activity-description .more {
  color: #fff;
}

.hero-tab__content .activities > ul:empty::before {
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════
   AŞAĞI KAYDIRIN
   ═══════════════════════════════════════ */

.hero-scroll-hint {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--ed-duration) var(--ed-ease);
}

@media (min-width: 1200px) {
  .hero-scroll-hint {
    display: flex;
    bottom: 48px;
  }
}

.hero-scroll-hint:hover {
  color: var(--ed-white);
}

.hero-scroll-hint__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 44px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  font-size: 0;
  position: relative;
  animation: hero-scroll-bob 2.4s var(--ed-ease) infinite;
}

.hero-scroll-hint__icon::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.7);
  animation: hero-scroll-wheel 2.4s var(--ed-ease) infinite;
}

.hero-scroll-hint__icon i {
  display: none;
}

.hero-scroll-hint__text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@keyframes hero-scroll-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@keyframes hero-scroll-wheel {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════
   ALT BİLGİ ŞERİTLERİ — hizmetler barı
   ═══════════════════════════════════════ */

.hero-bottom-stack {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 14px 20px 0;
  box-sizing: border-box;
}

/* Beyaz hizmetler barı */
.hero-info-bar {
  position: relative;
  background: transparent;
  border-top: none;
  box-shadow: none;
  margin-bottom: 15px;
}

.hero-info-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--ed-white);
  border: 1px solid rgba(0, 74, 153, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 30, 70, 0.1);
  padding: 14px 22px;
}

.hero-info-bar__items {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.hero-info-bar__items::-webkit-scrollbar {
  display: none;
}

.hero-info-bar__items li {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 18px 0 0;
  margin-right: 18px;
  border-right: 1px solid var(--ed-border);
}

.hero-info-bar__items li:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.hero-info-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ed-text);
  transition: color var(--ed-duration) var(--ed-ease), opacity var(--ed-duration) var(--ed-ease);
}

.hero-info-bar__link:hover {
  color: var(--ed-primary);
  opacity: 0.92;
}

.hero-info-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--ed-radius-xs);
  background: transparent;
  border: 1.5px solid rgba(0, 74, 153, 0.22);
  color: var(--ed-primary);
  font-size: 14px;
  flex-shrink: 0;
  transition: background var(--ed-duration) var(--ed-ease), border-color var(--ed-duration) var(--ed-ease);
}

.hero-info-bar__link:hover .hero-info-bar__icon {
  background: rgba(0, 74, 153, 0.06);
  border-color: rgba(0, 74, 153, 0.35);
}

.hero-info-bar__label {
  font-size: 13px;
  font-weight: 700;
  color: inherit;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Mavi CTA */
.hero-info-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--ed-primary);
  border: none;
  color: var(--ed-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 74, 153, 0.28);
  transition: transform var(--ed-duration) var(--ed-ease), box-shadow var(--ed-duration) var(--ed-ease), background var(--ed-duration) var(--ed-ease);
}

.hero-info-bar__cta:hover {
  transform: translateY(-2px);
  background: var(--ed-primary-hover);
  box-shadow: 0 10px 28px rgba(0, 74, 153, 0.38);
  color: var(--ed-white);
}

.hero-info-bar__cta i {
  font-size: 9px;
}

/* Koyu mavi değerler şeridi */
.hero-values-bar {
  position: relative;
  background: var(--ed-primary);
  margin: 0 -20px;
}

.hero-values-bar__inner {
  padding: 22px 28px;
}

.hero-values-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-values-bar__grid li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hero-values-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.hero-values-bar__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-values-bar__text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--ed-white);
  letter-spacing: 0.01em;
}

.hero-values-bar__text span {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

/* Hero içerik — slider tam yükseklik (hero-home ile uyumlu) */
@media (min-width: 992px) {
  .hero .slide-container {
    padding-bottom: 80px;
  }
}

/* ═══════════════════════════════════════
   SECTION NEWS — mockup düzeni
   ═══════════════════════════════════════ */

.section-news {
  padding: 63px 0 40px;
  padding-bottom: 55px;
  background: var(--ed-bg);
  font-family: var(--ed-font);
}
.news-tab-p{
 position: absolute;
  height: 280px;
  background: var(--main-color-dark);
  top: 0;
  left: 0;
  width: 100%;
}
.section-news__container {
  padding-left: 20px;
  padding-right: 20px;
}

/* Üst: sol başkanlar (~28%) + sağ haber slider (~72%) */
.section-news__top {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 16px;
  min-height: 550px;
}

/* ── Sol: başkanlar ── */
.section-news__lead {
  position: relative;
  flex: 0 0 28%;
  max-width: 28%;
  z-index: 1;
  padding: 0;
}

.presidents-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 515px;
  background-color: #eef2f6;
  border: 1px solid rgba(0, 74, 153, 0.08);
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0, 30, 70, 0.06);
}

.presidents-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/slide/1.jpg");
  background-size: cover;
  background-position: center 32%;
  filter: grayscale(1) contrast(0.82);
  opacity: 0.28;
  pointer-events: none;
  border-radius: 18px;
}

.presidents-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(238, 242, 246, 0.72) 0%,
    rgba(238, 242, 246, 0.45) 38%,
    rgba(238, 242, 246, 0.62) 68%,
    rgba(238, 242, 246, 0.92) 88%,
    rgba(238, 242, 246, 0.98) 100%
  );
  pointer-events: none;
  border-radius: 18px;
}

.presidents-card__header {
  position: relative;
  z-index: 1;
  padding: 18px 16px 8px;
  background: transparent;
}

.presidents-card__accent {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--ed-green);
  margin-bottom: 10px;
}

.presidents-card__title {
  margin: 0 0 8px;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 800;
  line-height: 1.28;
  color: var(--ed-primary);
}

.presidents-card__desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--ed-text-muted);
}

.presidents-card__actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0;
  margin: 10px 12px 12px;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid rgba(0, 74, 153, 0.2);
  box-shadow: 0 2px 10px rgba(0, 40, 90, 0.07);
  background: #fff;
}

.presidents-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1 1 50%;
  min-width: 0;
  min-height: 38px;
  padding: 8px 8px;
  border: none;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ed-primary);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background var(--ed-duration) var(--ed-ease), color var(--ed-duration) var(--ed-ease);
}

.presidents-card__btn + .presidents-card__btn {
  border-left: 1px solid rgba(0, 74, 153, 0.14);
}

.presidents-card__btn i {
  font-size: 10px;
  flex-shrink: 0;
}

.presidents-card__btn:hover {
  background: #f4f8fc;
  color: var(--ed-primary-deep);
}

.presidents-card__btn--primary {
  background: var(--ed-primary);
  color: #fff;
}

.presidents-card__btn--primary:hover {
  background: var(--ed-primary-hover);
  color: #fff;
}

.presidents-card__visual {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: auto;
}

.presidents-card__photo-zone {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 210px;
  margin: 0 0 -40px;
  padding: 8px 8px 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.presidents-card__photo {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  object-position: bottom center;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.presidents-card__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  background: #051f3b;
  border-radius: 10px;
  padding: 46px 0 12px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(5, 31, 59, 0.35);
}

.presidents-card__person {
  flex: 1;
  min-width: 0;
  padding: 0 10px;
  text-align: left;
}

.presidents-card__divider {
  width: 1px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.22);
  margin: 4px 0;
}

.presidents-card__name {
  display: block;
  font-size: clamp(11px, 1.35vw, 13px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.presidents-card__person-accent {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 1px;
  background: var(--ed-green-light);
  margin: 7px 0;
}

.presidents-card__role {
  display: block;
  font-size: 10px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

/* ── Sağ: haber slider (Çekmeköy tarzı) ── */
.headline-news--feature {
  flex: 1;
  min-width: 0;
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.headline-news__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 22px;
  align-items: stretch;
  min-height: 550px;
}

.headline-news__slider-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.headline-news__slider-shell {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #d8dde3;
  box-shadow: 0 10px 30px rgba(0, 30, 70, 0.1);
  aspect-ratio: 4 / 3;
}

.headline-news--feature .owl-headlinenews-slide {
  position: relative;
  height: 100%;
}

.headline-news--feature .owl-headlinenews-slide .owl-stage-outer,
.headline-news--feature .owl-headlinenews-slide .owl-stage,
.headline-news--feature .owl-headlinenews-slide .owl-item,
.headline-news--feature .owl-headlinenews-slide .item,
.headline-news--feature .owl-headlinenews-slide .item > a {
  height: 100%;
}

.headline-news--feature .headline-news__photo:not([class*="ui-style-"]) {
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.headline-news--feature .headline-news__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.headline-news--feature .item > a {
  display: block;
  position: relative;
  min-height: 100%;
  height: 100%;
}

.headline-news--feature .item > a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58%;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.42) 38%,
    rgba(0, 0, 0, 0.08) 72%,
    transparent 100%
  );
  pointer-events: none;
}

.headline-news--feature .headline-news__body {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  width: 100%;
  max-width: none;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 24px 52px;
  color: #fff;
  z-index: 4;
  box-sizing: border-box;
  background: none;
  background-image: none;
  pointer-events: none;
}

.headline-news--feature .owl-item.active .headline-news__body {
  pointer-events: auto;
}

.headline-news--feature .owl-item:not(.active) .headline-news__body {
  opacity: 0;
  visibility: hidden;
}

.headline-news--feature .headline-news__badge,
.headline-news--feature .headline-news__body .text,
.headline-news--feature .headline-news__body .date {
  display: none !important;
}

.headline-news__badge {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: var(--ed-radius-pill);
  background: var(--ed-primary);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none;
  margin-bottom: 16px;
  order: 0;
}

.headline-news__badge i {
  font-size: 10px;
}

.headline-news--feature .headline-news__body .title {
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  font-weight: 800;
  line-height: 1.28;
  max-height: none;
  max-width: 82%;
  padding-right: 0;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.headline-news--feature .headline-news__body::after {
  display: none;
}

.headline-news--feature .headline-news__arrows {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  pointer-events: none;
  z-index: 8;
}

.headline-news--feature .headline-news__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  transition: background var(--ed-duration) var(--ed-ease), transform var(--ed-duration) var(--ed-ease);
}

.headline-news--feature .headline-news__arrow:hover {
  background: rgba(0, 0, 0, 0.62);
  transform: scale(1.04);
  color: #fff;
}

.headline-news--feature .headline-news__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  pointer-events: none;
}

.headline-news--feature .headline-news__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  pointer-events: auto;
  transition:
    width 0.3s var(--ed-ease),
    background 0.25s var(--ed-ease),
    opacity 0.25s var(--ed-ease);
}

.headline-news--feature .headline-news__dot.is-active {
  width: 28px;
  background: #fff;
}

.headline-news--feature .headline-news__dot:hover {
  background: rgba(255, 255, 255, 0.82);
}

.headline-news--feature .owl-theme .owl-nav,
.headline-news--feature .owl-theme .owl-dots {
  display: none !important;
}

.headline-news__categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 4px;
}

.headline-news__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  border: 1px solid rgba(0, 74, 153, 0.18);
  border-radius: 999px;
  background: #fff;
  color: #5e6b78;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  transition:
    color var(--ed-duration) var(--ed-ease),
    border-color var(--ed-duration) var(--ed-ease),
    box-shadow var(--ed-duration) var(--ed-ease);
}

.headline-news__cat:hover {
  color: var(--ed-primary);
  border-color: rgba(0, 74, 153, 0.34);
  box-shadow: 0 4px 14px rgba(0, 74, 153, 0.1);
}

.headline-news__list-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-top: 10px;
  position: relative;
}
@media (max-width: 1199.99px) {
  .section-news{
    padding-bottom: 0;
  }
  .headline-news__list-heading{
    color: #000 !important;
    margin-top: 30px !important;
    margin-bottom: 5px !important;
  }

}
@media (min-width: 992px) {
  .headline-news__list-head,
  .headline-news__list {
    position: relative;
    z-index: 1;
  }

  .headline-news__list-head {
    padding: 10px 8px 0;
  }

  .headline-news__list-heading,
  .headline-news__list-all {
    color: #fff;
  }

  .headline-news__list-all:hover {
    color: rgba(255, 255, 255, 0.86);
  }
}

.headline-news__list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 0 4px;
}

.headline-news__list-heading {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.headline-news__list-all {
  font-size: 13px;
  font-weight: 700;
  color: var(--ed-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--ed-duration) var(--ed-ease);
}

.headline-news__list-all:hover {
  color: var(--ed-primary-hover);
}

.headline-news__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.headline-news__list a {
  display: block;
  padding: 16px 18px;
  border: 1px solid rgba(0, 74, 153, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 30, 70, 0.05);
  text-decoration: none;
  transition:
    border-color var(--ed-duration) var(--ed-ease),
    box-shadow var(--ed-duration) var(--ed-ease),
    transform var(--ed-duration) var(--ed-ease);
}

.headline-news__list a:hover,
.headline-news__list a.is-active {
  border-color: rgba(0, 74, 153, 0.22);
  box-shadow: 0 8px 22px rgba(0, 30, 70, 0.1);
  transform: translateY(-1px);
}

.headline-news__list-date {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 500;
  color: #8a96a3;
}

.headline-news__list-item-title {
  display: block;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1f3348;
  transition: color var(--ed-duration) var(--ed-ease);
}

.headline-news__list a:hover .headline-news__list-item-title,
.headline-news__list a.is-active .headline-news__list-item-title {
  color: var(--ed-primary);
}

/* Alt panel — güncel haber kartları */
.section-news__panel {
  background:
    linear-gradient(180deg, rgba(244, 248, 252, 0.98) 0%, rgba(238, 244, 250, 0.98) 100%);
  border: 1px solid rgba(0, 74, 153, 0.08);
  border-radius: 18px;
  box-shadow: 0 10px 36px rgba(0, 30, 70, 0.06);
  padding: 22px 24px 20px;
  position: relative;
  overflow: hidden;
}

.section-news__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, rgba(0, 74, 153, 0.03) 12%, transparent 12.5%, transparent 50%, rgba(0, 74, 153, 0.03) 50%, rgba(0, 74, 153, 0.03) 62.5%, transparent 63%, transparent),
    linear-gradient(150deg, rgba(0, 74, 153, 0.03) 12%, transparent 12.5%, transparent 50%, rgba(0, 74, 153, 0.03) 50%, rgba(0, 74, 153, 0.03) 62.5%, transparent 63%, transparent);
  background-size: 72px 124px;
  opacity: 0.55;
  pointer-events: none;
}

.section-news__panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-news__title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ed-text);
}

.section-news__all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ed-primary);
  text-decoration: none;
  transition: color var(--ed-duration) var(--ed-ease);
}

.section-news__all:hover {
  color: var(--ed-primary-hover);
}

.section-news__all i {
  font-size: 10px;
}

.section-news__cards-wrap {
  position: relative;
  z-index: 1;
  padding: 4px 8px 0;
}

.section-news__cards-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 44px 8px;
  scrollbar-width: none;
}

.section-news__cards-track::-webkit-scrollbar {
  display: none;
}

.news-card {
  flex: 0 0 calc(20% - 15px);
  min-width: 210px;
  scroll-snap-align: start;
}

.news-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  background: var(--ed-white);
  border: 1px solid rgba(0, 74, 153, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 30, 70, 0.08);
  transition:
    transform var(--ed-duration) var(--ed-ease),
    box-shadow var(--ed-duration) var(--ed-ease);
}

.news-card a:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 30, 70, 0.12);
}

.news-card__photo {
  position: relative;
  height: 148px;
  overflow: hidden;
}

.news-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ed-duration) var(--ed-ease);
}

.news-card a:hover .news-card__photo img {
  transform: scale(1.05);
}

.news-card__photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 14px 14px 18px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 0%,
    rgba(0, 0, 0, 0.18) 42%,
    rgba(0, 0, 0, 0.62) 100%
  );
}

.news-card__photo-caption {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__body {
  position: relative;
  z-index: 1;
  padding: 12px 14px 16px;
  background: #fff;
}

.news-card__tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.news-card__tag--gundem {
  background: rgba(0, 74, 153, 0.1);
  color: var(--ed-primary);
}

.news-card__tag--duyuru {
  background: rgba(239, 108, 0, 0.12);
  color: #c05600;
}

.news-card__tag--proje {
  background: rgba(46, 158, 68, 0.14);
  color: #2e7d32;
}

.news-card__title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--ed-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}

.news-card__date {
  margin: 0;
  font-size: 10px;
  color: var(--ed-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-card__date i {
  font-size: 10px;
  opacity: 0.75;
}

.section-news__cards-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 74, 153, 0.1);
  background: var(--ed-white);
  color: var(--ed-primary);
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(0, 30, 70, 0.12);
  cursor: pointer;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity var(--ed-duration) var(--ed-ease),
    visibility var(--ed-duration) var(--ed-ease),
    transform var(--ed-duration) var(--ed-ease),
    box-shadow var(--ed-duration) var(--ed-ease);
}

.section-news__cards-prev {
  left: -6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.section-news__cards-prev.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.section-news__cards-next {
  right: -6px;
}

.section-news__cards-next.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.section-news__cards-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 30, 70, 0.16);
}

.section-news__cards-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding-bottom: 2px;
}

.section-news__cards-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 74, 153, 0.18);
  cursor: pointer;
  transition: background var(--ed-duration) var(--ed-ease), transform var(--ed-duration) var(--ed-ease);
}

.section-news__cards-dot.is-active {
  background: var(--ed-primary);
  transform: scale(1.15);
}

.section-news__cards-dot:hover {
  background: rgba(0, 74, 153, 0.42);
}

.section-news .btn {
  display: none !important;
}

/* section-stories arka plan uyumu */
.section-stories {
  background-color: var(--ed-bg);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 1199px) {
  .section-news__top {
    flex-direction: column;
    min-height: auto;
    gap: 16px;
  }

  .section-news__lead {
    flex: none;
    max-width: 100%;
    order: 2;
  }

  .presidents-card {
    min-height: auto;
  }

  .presidents-card__photo-zone {
    min-height: 210px;
    margin-bottom: -40px;
  }

  .presidents-card__photo {
    max-height: 240px;
  }

  .headline-news--feature {
    flex: none;
    width: 100%;
    order: 1;
  }

  .headline-news__layout {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
  }

  .headline-news__list-col {
    padding-top: 0;
  }

  .headline-news--feature .headline-news__body {
    padding: 0 18px 48px;
  }

  .news-card {
    flex: 0 0 calc(33.333% - 11px);
    min-width: 220px;
  }

  .hero-values-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .hero-bottom-stack {
    padding: 12px 12px 0;
  }

  .hero-values-bar {
    margin: 0 -12px;
  }

  .hero-info-bar__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 14px;
  }

  .hero-info-bar__items {
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 10px 0;
  }

  .hero-info-bar__items li {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
    width: calc(50% - 6px);
  }

  .hero-info-bar__cta {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .section-news {
    padding: 20px 0 28px;
  }

  .section-news__panel {
    padding: 16px;
    border-radius: 14px;
  }

  .section-news__panel-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .news-card {
    flex: 0 0 calc(85% - 8px);
    min-width: 260px;
  }

  .section-news__cards-track {
    padding-left: 36px;
    padding-right: 36px;
  }

  .section-news__cards-prev {
    left: -2px;
  }

  .section-news__cards-next {
    right: -2px;
  }

  .headline-news__slider-shell {
    aspect-ratio: 16 / 11;
  }

  .headline-news--feature .headline-news__body {
    padding: 0 14px 44px;
  }

  .headline-news--feature .headline-news__body .title {
    font-size: 1rem;
    max-width: 90%;
  }

  .headline-news--feature .headline-news__arrow {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .headline-news__list a {
    padding: 14px 16px;
  }

  .presidents-card__photo {
    max-height: 160px;
  }

  .presidents-card__footer {
    padding-top: 40px;
  }

  .presidents-card__person {
    padding: 0 8px;
  }

  .presidents-card__name {
    font-size: 9px;
  }

  .hero-info-bar__items li:nth-child(n+5) {
    display: none;
  }

  .hero-values-bar__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-values-bar__inner {
    padding: 16px;
  }

  .hero .slide-content .text {
    font-size: 14px;
  }

  .hero .slide-content .heading {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-hint__icon,
  .hero-scroll-hint__icon::before {
    animation: none;
  }

  .hero .slide-content .btn-wrapper .button-common:hover,
  .hero .slide-arrows a:hover,
  .hero-tab__nav ul li:not(.is-current) .btn:hover,
  .hero-info-bar__cta:hover {
    transform: none;
  }
}

/* ═══════════════════════════════════════
   TURİZM REHBERİ — glass kart mockup
   ═══════════════════════════════════════ */

.section-explore--guide {
  position: relative;
  margin-top: 0;
  padding: clamp(52px, 8vh, 92px) 0 clamp(44px, 6vh, 68px);
  overflow: hidden;
  background: #0c1218;
}

.section-explore--guide .section-explore__bg {
  position: absolute;
  inset: 0;
  background: url("../img/slide/3.jpg") center center / cover no-repeat;
  z-index: 0;
  transform: scale(1.02);
}

.section-explore--guide .section-explore__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(120, 78, 24, 0.18) 0%,
    rgba(0, 0, 0, 0.08) 28%,
    rgba(0, 0, 0, 0.42) 62%,
    rgba(0, 0, 0, 0.78) 100%
  );
  pointer-events: none;
}

.section-explore--guide .section-explore__content {
  position: relative;
  z-index: 2;
}

.section-explore--guide .section-explore__header {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-explore--guide .section-explore__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.section-explore--guide .section-explore__eyebrow-line {
  width: clamp(56px, 8vw, 88px);
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37 50%, transparent);
  opacity: 0.95;
}

.section-explore--guide .section-explore__eyebrow-text {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #d4af37;
}

.section-explore--guide .section-explore__title {
  margin: 0 0 14px;
  font-size: clamp(2.35rem, 5.8vw, 3.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
}

.section-explore--guide .section-explore__desc {
  margin: 0 auto;
  max-width: 620px;
  font-size: clamp(0.95rem, 1.55vw, 1.1rem);
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.section-explore--guide .section-explore__divider {
  display: block;
  width: 56px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 2px;
  background: #d4af37;
}

.section-explore--guide .guide-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(34px, 5vh, 52px);
}

.section-explore--guide .guide-card {
  position: relative;
  display: block;
  min-height: 330px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: #fff;
  transition:
    transform var(--ed-duration) var(--ed-ease),
    border-color var(--ed-duration) var(--ed-ease),
    box-shadow var(--ed-duration) var(--ed-ease);
}

.section-explore--guide .guide-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-explore--guide .guide-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: brightness(0.72) saturate(0.92) contrast(1.04);
  transition:
    transform 0.5s var(--ed-ease),
    filter 0.5s var(--ed-ease);
}

.section-explore--guide .guide-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.84) 0%,
    rgba(0, 0, 0, 0.72) 26%,
    rgba(0, 0, 0, 0.48) 54%,
    rgba(0, 0, 0, 0.22) 80%,
    rgba(0, 0, 0, 0.06) 100%
  );
  transition: background 0.35s var(--ed-ease);
}

.section-explore--guide .guide-card__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 330px;
  padding: 30px 24px 22px;
}

.section-explore--guide .guide-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.38);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.section-explore--guide .guide-card:hover .guide-card__bg img {
  transform: scale(1.07);
  filter: brightness(0.78) saturate(0.95) contrast(1.04);
}

.section-explore--guide .guide-card:hover .guide-card__shade {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.66) 26%,
    rgba(0, 0, 0, 0.42) 54%,
    rgba(0, 0, 0, 0.18) 80%,
    rgba(0, 0, 0, 0.04) 100%
  );
}

.section-explore--guide .guide-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0 auto 16px;
  color: #d4af37;
  font-size: 20px;
  line-height: 1;
}

.section-explore--guide .guide-card__title {
  position: relative;
  width: 100%;
  margin: 0 0 20px;
  padding: 0 8px 14px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.section-explore--guide .guide-card__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 34px;
  height: 2px;
  border-radius: 1px;
  background: #d4af37;
}

.section-explore--guide .guide-card__list {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0 6px;
  flex: 1;
  text-align: left;
}

.section-explore--guide .guide-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 5px 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: color var(--ed-duration) var(--ed-ease), opacity var(--ed-duration) var(--ed-ease);
}

.section-explore--guide .guide-card__list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 6px;
  border: 1.5px solid #d4af37;
  border-radius: 50%;
  background: transparent;
  transition: background var(--ed-duration) var(--ed-ease), border-color var(--ed-duration) var(--ed-ease), box-shadow var(--ed-duration) var(--ed-ease);
}

.section-explore--guide .guide-card__list li:hover,
.section-explore--guide .guide-card__list li:focus-visible {
  color: #fff;
  opacity: 1;
  outline: none;
}

.section-explore--guide .guide-card__list li:hover::before,
.section-explore--guide .guide-card__list li:focus-visible::before {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}

.section-explore--guide .guide-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.section-explore--guide .guide-card__more {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #d4af37;
}

.section-explore--guide .guide-card__footer i {
  color: #d4af37;
  font-size: 12px;
  transition: transform var(--ed-duration) var(--ed-ease);
}

.section-explore--guide .guide-card:hover .guide-card__footer i {
  transform: translateX(3px);
}

.section-explore--guide .section-explore__scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 30px auto 0;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48);
  color: #d4af37;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition:
    background var(--ed-duration) var(--ed-ease),
    border-color var(--ed-duration) var(--ed-ease),
    transform var(--ed-duration) var(--ed-ease);
}

.section-explore--guide .section-explore__scroll-hint:hover {
  background: rgba(0, 0, 0, 0.62);
  border-color: rgba(212, 175, 55, 0.65);
  transform: translateY(2px);
}

@media (max-width: 1199px) {
  .section-explore--guide .guide-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .section-explore--guide .guide-card,
  .section-explore--guide .guide-card__inner {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .section-explore--guide {
    padding: 40px 0 36px;
  }

  .section-explore--guide .section-explore__title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .section-explore--guide .guide-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .section-explore--guide .guide-card,
  .section-explore--guide .guide-card__inner {
    min-height: 0;
  }

  .section-explore--guide .guide-card__inner {
    padding: 24px 20px 20px;
  }

  .section-explore--guide .guide-card__list li {
    font-size: 12px;
  }

  .section-explore--guide .section-explore__eyebrow-line {
    width: 48px;
  }
}


/* ═══════════════════════════════════════
   HIZLI ERİŞİM — section-shortcuts._online
   ═══════════════════════════════════════ */

.section-shortcuts._online {
  position: relative;
  padding: clamp(24px, 3vw, 36px);
  background: #f4f8fc;
  overflow: hidden;
  --shortcut-accent-1: var(--ed-primary);
  --shortcut-accent-2: #d97706;
  --shortcut-accent-3: #7c3aed;
  --shortcut-accent-4: #16a34a;
  --shortcut-accent-5: #0d9488;
}

.section-shortcuts._online > .container-fluid {
  max-width: none !important;
  width: 100%;
  padding-left: clamp(12px, 2vw, 32px);
  padding-right: clamp(12px, 2vw, 32px);
}

.section-shortcuts._online .shortcuts-online__inner {
  position: relative;
  z-index: 1;
  max-width: none;
  width: 100%;
  margin: 0;
}

.section-shortcuts._online::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -40px;
  width: 420px;
  height: 320px;
  background-image: radial-gradient(circle, rgba(0, 74, 153, 0.09) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0.7;
}

.section-shortcuts._online::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(0, 74, 153, 0.06);
  box-shadow:
    0 0 0 40px rgba(0, 74, 153, 0.03),
    0 0 0 80px rgba(0, 74, 153, 0.02),
    0 0 0 120px rgba(0, 74, 153, 0.01);
  pointer-events: none;
}

.section-shortcuts._online .section-shortcuts__header {
  max-width: 720px;
  margin: 0 0 clamp(20px, 2.5vw, 28px);
  text-align: left;
}

.section-shortcuts._online .section-shortcuts__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 74, 153, 0.08);
  color: var(--ed-primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-shortcuts._online .section-shortcuts__badge i {
  font-size: 11px;
  color: var(--ed-secondary);
}

.section-shortcuts._online .section-shortcuts__title {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #0a2540;
}

.section-shortcuts._online .section-shortcuts__title::after {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  margin-top: 12px;
  border-radius: 2px;
  background: var(--ed-primary);
}

.section-shortcuts._online .section-shortcuts__desc {
  margin: 14px 0 0;
  max-width: 560px;
  font-size: clamp(0.9rem, 1.15vw, 0.98rem);
  line-height: 1.6;
  color: #6b7c8f;
}

.section-shortcuts._online .shortcuts-online__panel {
  background: #fff;
  border-radius: 20px;
  padding: clamp(18px, 2.5vw, 28px) clamp(14px, 2vw, 24px) clamp(16px, 2vw, 22px);
  box-shadow:
    0 16px 48px rgba(0, 40, 90, 0.07),
    0 2px 8px rgba(0, 40, 90, 0.04);
  border: 1px solid rgba(0, 74, 153, 0.06);
}

.section-shortcuts._online .shortcuts-online__slider {
  position: relative;
  margin-top: 0;
  padding: 4px 52px 0;
}

.section-shortcuts._online .shortcuts {
  position: relative;
  margin-top: 0 !important;
}

.section-shortcuts._online .shortcuts .owl-nav {
  display: none !important;
}

.section-shortcuts._online .shortcuts-online__arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(-50%);
  pointer-events: none;
}

.section-shortcuts._online .shortcuts-online__arrow {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(0, 74, 153, 0.1);
  border-radius: 50%;
  background: #fff;
  color: var(--ed-primary);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 40, 90, 0.08);
  transition:
    background var(--ed-duration) var(--ed-ease),
    color var(--ed-duration) var(--ed-ease),
    border-color var(--ed-duration) var(--ed-ease),
    transform var(--ed-duration) var(--ed-ease),
    box-shadow var(--ed-duration) var(--ed-ease);
}

.section-shortcuts._online .shortcuts-online__arrow:hover {
  background: var(--ed-primary);
  color: #fff;
  border-color: var(--ed-primary);
  box-shadow: 0 8px 24px rgba(0, 74, 153, 0.22);
}

.section-shortcuts._online .shortcuts-online__arrow--prev:hover {
  transform: translateX(-2px);
}

.section-shortcuts._online .shortcuts-online__arrow--next:hover {
  transform: translateX(2px);
}

.section-shortcuts._online .shortcuts-online__arrow:active {
  transform: scale(0.96);
}

.section-shortcuts._online .shortcuts-online__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-bottom: 2px;
}

.section-shortcuts._online .shortcuts-online__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 74, 153, 0.18);
  cursor: pointer;
  transition:
    background 0.25s var(--ed-ease),
    transform 0.25s var(--ed-ease);
}

.section-shortcuts._online .shortcuts-online__dot.is-active {
  background: var(--ed-primary);
  transform: scale(1.15);
}

.section-shortcuts._online .shortcuts .item {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
  height: 100%;
}

.section-shortcuts._online .owl-item {
  display: flex;
}

.section-shortcuts._online .owl-shortcuts .owl-stage-outer {
  padding: 6px 2px 10px;
}

.section-shortcuts._online .shortcut-card {
  width: 100%;
  display: flex;
}

.section-shortcuts._online .shortcut-card a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  min-height: 148px;
  height: 100%;
  padding: 18px 18px 16px 22px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 74, 153, 0.1);
  background: linear-gradient(135deg, #ffffff 0%, #f8fbfe 100%);
  box-shadow: 0 2px 12px rgba(0, 40, 90, 0.05);
  transition:
    transform 0.3s var(--ed-ease),
    box-shadow 0.3s var(--ed-ease),
    border-color 0.3s var(--ed-ease),
    background 0.3s var(--ed-ease);
}

.section-shortcuts._online .shortcut-card a::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--ed-primary);
  box-shadow: none;
  z-index: 1;
}

.section-shortcuts._online .shortcut-card a:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 74, 153, 0.2);
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 40, 90, 0.1);
}

.section-shortcuts._online .shortcut-card__icon-wrap,
.section-shortcuts._online .shortcut-card__icon {
  display: none !important;
}

/* Kenar rengi — 5'li döngü (20 karta kadar otomatik). PHP: data-accent="1"…"5" ile ezilebilir */
.section-shortcuts._online .shortcut-card a::before {
  background: var(--shortcut-accent-1);
}

.section-shortcuts._online :is(
  .owl-shortcuts > .item:nth-child(5n + 1),
  .owl-shortcuts .owl-item:nth-child(5n + 1) .shortcut-card,
  .owl-shortcuts .owl-item:nth-child(5n + 1) .item
) a::before,
.section-shortcuts._online .shortcut-card[data-accent="1"] a::before {
  background: var(--shortcut-accent-1);
}

.section-shortcuts._online :is(
  .owl-shortcuts > .item:nth-child(5n + 2),
  .owl-shortcuts .owl-item:nth-child(5n + 2) .shortcut-card,
  .owl-shortcuts .owl-item:nth-child(5n + 2) .item
) a::before,
.section-shortcuts._online .shortcut-card[data-accent="2"] a::before {
  background: var(--shortcut-accent-2);
}

.section-shortcuts._online :is(
  .owl-shortcuts > .item:nth-child(5n + 3),
  .owl-shortcuts .owl-item:nth-child(5n + 3) .shortcut-card,
  .owl-shortcuts .owl-item:nth-child(5n + 3) .item
) a::before,
.section-shortcuts._online .shortcut-card[data-accent="3"] a::before {
  background: var(--shortcut-accent-3);
}

.section-shortcuts._online :is(
  .owl-shortcuts > .item:nth-child(5n + 4),
  .owl-shortcuts .owl-item:nth-child(5n + 4) .shortcut-card,
  .owl-shortcuts .owl-item:nth-child(5n + 4) .item
) a::before,
.section-shortcuts._online .shortcut-card[data-accent="4"] a::before {
  background: var(--shortcut-accent-4);
}

.section-shortcuts._online :is(
  .owl-shortcuts > .item:nth-child(5n),
  .owl-shortcuts .owl-item:nth-child(5n) .shortcut-card,
  .owl-shortcuts .owl-item:nth-child(5n) .item
) a::before,
.section-shortcuts._online .shortcut-card[data-accent="5"] a::before {
  background: var(--shortcut-accent-5);
}

.section-shortcuts._online .shortcut-card .icon {
  display: none !important;
}

.section-shortcuts._online .shortcut-card .title {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 0 8px;
  padding: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #0f2d4a;
  max-height: none;
  -webkit-line-clamp: unset;
  transition: color 0.25s var(--ed-ease);
}

.section-shortcuts._online .shortcut-card a:hover .title {
  color: var(--ed-primary);
}

.section-shortcuts._online .shortcut-card .title::after {
  display: none;
}

.section-shortcuts._online .shortcut-card .text {
  position: relative;
  z-index: 2;
  flex: 1;
  display: block;
  margin: 0 0 12px;
  padding: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #6b7c8f;
}

.section-shortcuts._online .shortcut-card .more {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: none;
  color: var(--ed-primary);
  border: none;
  border-radius: 0;
  transition: gap 0.25s var(--ed-ease), color 0.25s var(--ed-ease);
}

.section-shortcuts._online .shortcut-card .more::after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  transition: transform 0.25s var(--ed-ease);
}

.section-shortcuts._online .shortcut-card a:hover .more {
  color: var(--ed-primary-deep);
  gap: 9px;
}

.section-shortcuts._online .shortcut-card a:hover .more::after {
  transform: translateX(2px);
}

@media (min-width: 1200px) {
  .section-shortcuts._online .shortcut-card a {
    min-height: 156px;
  }

  .section-shortcuts._online .shortcut-card .title {
    font-size: 14px;
  }

  .section-shortcuts._online .shortcut-card .text {
    font-size: 12.5px;
  }
}

@media (max-width: 991px) {
  .section-shortcuts._online .shortcuts-online__slider {
    padding: 4px 46px 0;
  }

  .section-shortcuts._online .shortcuts-online__arrow {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .section-shortcuts._online {
    padding-top: 32px;
    padding-bottom: 28px;
  }

  .section-shortcuts._online .section-shortcuts__header {
    margin-bottom: 16px;
  }

  .section-shortcuts._online .shortcuts-online__panel {
    border-radius: 16px;
    padding: 14px 10px 14px;
  }

  .section-shortcuts._online .shortcut-card a {
    min-height: 140px;
  }

  .section-shortcuts._online .shortcut-card .title {
    font-size: 13px;
  }

  .section-shortcuts._online .shortcut-card .text {
    font-size: 12px;
  }

  .section-shortcuts._online .shortcuts-online__slider {
    padding: 4px 38px 0;
  }

  .section-shortcuts._online .shortcuts-online__arrow {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
}

/* ═══════════════════════════════════════
   MEDYA MERKEZİ — section-media-hub
   ═══════════════════════════════════════ */

.section-media-hub {
  position: relative;
  padding: 0 0 clamp(44px, 5vw, 64px);
  padding-top: 40px;
  background: #f4f8fc;
  overflow: hidden;
}

.section-media-hub > .container-fluid {
  max-width: none !important;
  width: 100%;
  padding-left: clamp(12px, 2vw, 32px);
  padding-right: clamp(12px, 2vw, 32px);
}

.section-media-hub::before {
  content: "";
  position: absolute;
  left: -60px;
  bottom: 0;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(0, 74, 153, 0.05);
  box-shadow:
    0 0 0 36px rgba(0, 74, 153, 0.02),
    0 0 0 72px rgba(0, 74, 153, 0.01);
  pointer-events: none;
}

.section-media-hub__inner {
  position: relative;
  z-index: 1;
}

.section-media-hub__header {
  width: 100%;
  max-width: 720px;
  margin: 0 auto clamp(22px, 2.8vw, 30px);
  text-align: center;
}

.section-media-hub__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 74, 153, 0.08);
  color: var(--ed-primary);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-media-hub__badge i {
  font-size: 11px;
  color: var(--ed-secondary);
}

.section-media-hub__title {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #0a2540;
}

.section-media-hub__title::after {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 2px;
  background: var(--ed-primary);
}

.section-media-hub__desc {
  margin: 14px auto 0;
  max-width: 560px;
  font-size: clamp(0.9rem, 1.1vw, 0.98rem);
  line-height: 1.6;
  color: #6b7c8f;
}

.section-media-hub__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: clamp(14px, 1.8vw, 20px);
  align-items: stretch;
}

.media-hub__panel {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 74, 153, 0.07);
  box-shadow: 0 14px 40px rgba(0, 40, 90, 0.06);
  padding: 12px 14px 10px;
  overflow: hidden;
}

.media-hub__panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 74, 153, 0.08);
}

.media-hub__panel-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.media-hub__panel-icon--announce {
  background: rgba(219, 39, 119, 0.1);
  color: #db2777;
}

.media-hub__panel-icon--photo {
  background: rgba(0, 74, 153, 0.1);
  color: var(--ed-primary);
}

.media-hub__panel-icon--video {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.media-hub__panel-head > div {
  flex: 1;
  min-width: 0;
}

.media-hub__panel-title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  color: #0a2540;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.media-hub__panel-sub {
  margin: 2px 0 0;
  font-size: 10.5px;
  color: #8a98a8;
  line-height: 1.2;
}

.media-hub__panel-all {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ed-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s var(--ed-ease);
}

.media-hub__panel-all:hover {
  color: var(--ed-primary-deep);
}

.media-hub__panel-all i {
  font-size: 10px;
  transition: transform 0.25s var(--ed-ease);
}

.media-hub__panel-all:hover i {
  transform: translateX(3px);
}

.media-hub__announce-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-content: space-between;
}

.media-hub__announce-list li {
  min-width: 0;
  flex: 1;
  display: flex;
}

.media-hub__announce-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 5px 6px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  transition:
    background 0.25s var(--ed-ease),
    border-color 0.25s var(--ed-ease);
}

.media-hub__announce-list a:hover {
  background: rgba(0, 74, 153, 0.04);
  border-color: rgba(0, 74, 153, 0.08);
  transform: none;
}

.media-hub__announce-date {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 38px;
  padding: 4px 3px;
  border-radius: 8px;
  background: rgba(0, 74, 153, 0.07);
  text-align: center;
}

.media-hub__announce-date .day {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ed-primary);
}

.media-hub__announce-date .month {
  margin-top: 2px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a98a8;
}

.media-hub__announce-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.media-hub__announce-body strong {
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.3;
  color: #0a2540;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s var(--ed-ease);
}

.media-hub__announce-list a:hover .media-hub__announce-body strong {
  color: var(--ed-primary);
}

.media-hub__announce-body span {
  display: none;
}

.media-hub__announce-arrow {
  flex: 0 0 auto;
  font-size: 10px;
  color: rgba(0, 74, 153, 0.3);
}

.media-hub__announce-list a:hover .media-hub__announce-arrow {
  color: var(--ed-primary);
  transform: translateX(2px);
}

.media-hub__pager {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.media-hub__pager-stage {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.media-hub__pager-page {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  height: 100%;
  min-height: 0;
  animation: mediaHubPagerIn 0.35s var(--ed-ease);
}

.media-hub__pager-page.is-active {
  display: grid;
}

.media-hub__photo-slide,
.media-hub__video-slide {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  min-height: 0;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

@keyframes mediaHubPagerIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.media-hub__photo-slide .media-hub__photo-frame {
  position: relative;
  display: block;
  flex: 1;
  min-height: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 74, 153, 0.08);
  box-shadow: 0 4px 16px rgba(0, 40, 90, 0.06);
}

.media-hub__photo-slide img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ed-ease);
}

.media-hub__photo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 20, 50, 0.05) 0%, rgba(0, 20, 50, 0.45) 100%);
  color: #fff;
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.3s var(--ed-ease);
}

.media-hub__photo-slide:hover img {
  transform: scale(1.04);
}

.media-hub__photo-slide:hover .media-hub__photo-overlay {
  opacity: 1;
}

.media-hub__photo-caption {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  color: #0a2540;
  padding: 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.25s var(--ed-ease);
}

.media-hub__video-slide {
  height: 100%;
  min-height: 0;
  border-radius: 12px;
  padding: 6px;
  border: 1px solid rgba(0, 74, 153, 0.08);
  background: linear-gradient(180deg, #fff 0%, rgba(244, 248, 252, 0.7) 100%);
  transition:
    border-color 0.3s var(--ed-ease),
    box-shadow 0.3s var(--ed-ease);
}

.media-hub__video-slide:hover {
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: 0 8px 20px rgba(0, 40, 90, 0.08);
}

.media-hub__video-thumb {
  position: relative;
  display: block;
  flex: 1;
  min-height: 0;
  border-radius: 8px;
  overflow: hidden;
}

.media-hub__video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ed-ease);
}

.media-hub__video-slide:hover .media-hub__video-thumb img {
  transform: scale(1.05);
}

.media-hub__video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 20, 50, 0.28);
  color: #fff;
  font-size: 14px;
  transition: background 0.3s var(--ed-ease);
}

.media-hub__video-play i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #7c3aed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s var(--ed-ease);
}

.media-hub__video-slide:hover .media-hub__video-play {
  background: rgba(0, 20, 50, 0.38);
}

.media-hub__video-slide:hover .media-hub__video-play i {
  transform: scale(1.08);
}

.media-hub__video-title {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  color: #0a2540;
  padding: 2px 2px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.25s var(--ed-ease);
}

.media-hub__pager-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 74, 153, 0.08);
}

.media-hub__pager-nav.is-hidden {
  display: none;
}

.media-hub__pager-arrow {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid rgba(0, 74, 153, 0.12);
  border-radius: 50%;
  background: #fff;
  color: var(--ed-primary);
  font-size: 11px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s var(--ed-ease),
    color 0.25s var(--ed-ease),
    border-color 0.25s var(--ed-ease);
}

.media-hub__pager-arrow:hover {
  background: var(--ed-primary);
  color: #fff;
  border-color: var(--ed-primary);
}

.media-hub__pager-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.media-hub__pager-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 74, 153, 0.2);
  cursor: pointer;
  transition:
    background 0.25s var(--ed-ease),
    transform 0.25s var(--ed-ease);
}

.media-hub__pager-dot.is-active {
  background: var(--ed-primary);
  transform: scale(1.15);
}

.media-hub__photo-slide:hover .media-hub__photo-caption {
  color: var(--ed-primary);
}

.media-hub__video-slide:hover .media-hub__video-title {
  color: var(--ed-primary);
}

.media-hub__pager-counter {
  min-width: 36px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #6b7c8f;
  letter-spacing: 0.04em;
}

@media (max-width: 1199px) {
  .section-media-hub__grid {
    grid-template-columns: 1fr 1fr;
  }

  .media-hub__panel--announcements {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .section-media-hub {
    padding-bottom: 32px;
  }

  .section-media-hub__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .media-hub__panel {
    min-height: 300px;
    border-radius: 16px;
  }

  .media-hub__pager-page.is-active {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ═══════════════════════════════════════
   LOGOLAR — section-logos._partners
   ═══════════════════════════════════════ */

.section-logos._partners {
  position: relative;
  padding: clamp(44px, 5vw, 64px) 0 clamp(36px, 4vw, 52px);
  background: linear-gradient(180deg, #e9eef3 0%, #f3f6f9 48%, #e9eef3 100%);
  overflow: hidden;
  --logos-card-w: 150px;
  --logos-card-h: 150px;
}

.section-logos._partners > .container-fluid {
  max-width: none !important;
  width: 100%;
  padding-left: clamp(12px, 2vw, 32px);
  padding-right: clamp(12px, 2vw, 32px);
}

.section-logos._partners::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(160px, 18vw, 240px);
  height: clamp(120px, 14vw, 180px);
  background-image: radial-gradient(circle, rgba(0, 74, 153, 0.14) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.5;
  pointer-events: none;
}

.section-logos._partners::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(160px, 18vw, 240px);
  height: clamp(120px, 14vw, 180px);
  background-image: radial-gradient(circle, rgba(0, 74, 153, 0.14) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.5;
  pointer-events: none;
}

.logos-partners__inner {
  position: relative;
  z-index: 1;
}

.logos-partners__inner::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 18%;
  width: 64%;
  height: 72%;
  background:
    radial-gradient(ellipse 42% 38% at 18% 42%, rgba(0, 74, 153, 0.06) 0%, transparent 72%),
    radial-gradient(ellipse 36% 34% at 78% 58%, rgba(0, 74, 153, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.logos-partners__panel {
  position: relative;
  z-index: 1;
}

.logos-partners__slider {
  position: relative;
  padding: 0 clamp(40px, 4.5vw, 56px);
}

.section-logos._partners .logos .owl-nav {
  display: none !important;
}

.section-logos._partners .owl-logos .owl-stage-outer {
  padding: 8px 2px 25px;
}

.section-logos._partners .owl-logos .owl-stage {
  display: flex;
  align-items: stretch;
}

.section-logos._partners .logos .item {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--logos-card-h);
}

.section-logos._partners .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--logos-card-h);
}

.section-logos._partners .logos-card {
  width: var(--logos-card-w);
  height: var(--logos-card-h);
  flex: 0 0 var(--logos-card-w);
  display: flex;
}

.section-logos._partners .logos-card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--logos-card-w);
  height: var(--logos-card-h);
  min-width: var(--logos-card-w);
  min-height: var(--logos-card-h);
  max-width: var(--logos-card-w);
  max-height: var(--logos-card-h);
  padding: 18px;
  box-sizing: border-box;
  border: none;
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 10px 28px rgba(0, 40, 90, 0.08),
    0 2px 6px rgba(0, 40, 90, 0.04);
  overflow: hidden;
  transition:
    transform 0.35s var(--ed-ease),
    box-shadow 0.35s var(--ed-ease);
}

.section-logos._partners .logos-card a:hover {
  border: none;
  transform: translateY(-4px);
  box-shadow:
    0 16px 36px rgba(0, 40, 90, 0.12),
    0 4px 10px rgba(0, 40, 90, 0.06);
}

.section-logos._partners .logos-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100% !important;
  flex: 1 1 auto;
  min-height: 0;
  padding: 0 !important;
  border: none !important;
}

.section-logos._partners .logos-photo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  transition: transform 0.35s var(--ed-ease);
}

.section-logos._partners .logos-card a:hover .logos-photo {
  border-bottom: none;
}

.section-logos._partners .logos-card a:hover .logos-photo img {
  opacity: 1;
  transform: scale(1.03);
}

.section-logos._partners .logos-footer {
  display: none;
}

.logos-partners__arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(-50%);
  pointer-events: none;
}

.logos-partners__arrow {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(0, 74, 153, 0.1);
  border-radius: 50%;
  background: #fff;
  color: var(--ed-primary);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 40, 90, 0.1);
  transition:
    background var(--ed-duration) var(--ed-ease),
    color var(--ed-duration) var(--ed-ease),
    border-color var(--ed-duration) var(--ed-ease),
    transform var(--ed-duration) var(--ed-ease),
    box-shadow var(--ed-duration) var(--ed-ease);
}

.logos-partners__arrow:hover {
  background: var(--ed-primary);
  color: #fff;
  border-color: var(--ed-primary);
  box-shadow: 0 8px 24px rgba(0, 74, 153, 0.22);
}

.logos-partners__arrow:active {
  transform: scale(0.96);
}

.logos-partners__dots-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.logos-partners__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 40, 90, 0.08);
}

.logos-partners__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 74, 153, 0.18);
  cursor: pointer;
  transition:
    background 0.25s var(--ed-ease),
    transform 0.25s var(--ed-ease);
}

.logos-partners__dot.is-active {
  background: var(--ed-primary);
  transform: scale(1.15);
}

@media (max-width: 767px) {
  .section-logos._partners {
    padding: 36px 0 32px;
    --logos-card-w: 120px;
    --logos-card-h: 120px;
  }

  .logos-partners__slider {
    padding: 0 34px;
  }

  .logos-partners__arrow {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .section-logos._partners .logos-card a {
    padding: 14px;
  }
}

/* ═══════════════════════════════════════
   FOOTER — footer._modern
   ═══════════════════════════════════════ */

.footer._modern {
  --footer-glow: #2fa3ff;
  --footer-glow-soft: rgba(47, 163, 255, 0.35);
  position: relative;
}

.footer._modern .footer-top {
  position: relative;
  min-height: 0;
  padding: clamp(48px, 6vw, 72px) 0 clamp(36px, 4vw, 48px);
  background:
    radial-gradient(ellipse 55% 42% at 12% 88%, rgba(47, 163, 255, 0.08) 0%, transparent 72%),
    radial-gradient(ellipse 48% 38% at 88% 22%, rgba(47, 163, 255, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, #001428 0%, #002447 48%, #001b33 100%);
  overflow: hidden;
  z-index: 1;
}

.footer._modern .footer-top::before {
  display: none;
}

.footer._modern > .container-fluid,
.footer._modern .footer-bottom .container-fluid {
  max-width: none !important;
  width: 100%;
  padding-left: clamp(16px, 2.5vw, 40px);
  padding-right: clamp(16px, 2.5vw, 40px);
}

.footer._modern .footer-siluet {
  display: block;
  opacity: 0.14;
  filter: none;
  z-index: 0;
  height: 240px;
  background-position: center bottom;
  background-size: auto 100%;
}

.footer-modern__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(268px, 296px);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}

.footer-modern__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.footer._modern .footer-card {
  min-width: 0;
}

.footer._modern .footer-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  height: auto;
  margin-bottom: 10px;
  font-size: inherit;
}

.footer._modern .footer-heading__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(77, 181, 255, 0.55);
  background: rgba(0, 40, 80, 0.35);
  color: #5ec2ff;
  font-size: 14px;
  box-shadow:
    0 0 18px rgba(47, 163, 255, 0.32),
    inset 0 0 14px rgba(47, 163, 255, 0.1);
}

.footer._modern .footer-heading__text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}

.footer._modern .footer-heading__line {
  display: block;
  width: 46px;
  height: 3px;
  margin: 0 0 16px 52px;
  border-radius: 2px;
  background: linear-gradient(90deg, #2fa3ff 0%, #67c8ff 100%);
  box-shadow: 0 0 12px rgba(47, 163, 255, 0.55);
}

.footer._modern .footer-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer._modern .footer-card ul li a {
  display: block;
  position: relative;
  padding: 4px 0 4px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.45;
  transition: color 0.25s var(--ed-ease);
}

.footer._modern .footer-card ul li a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 50%;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: #45b5ff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-56%);
}

.footer._modern .footer-card ul li a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-modern__contact {
  position: relative;
  z-index: 2;
}

.footer-contact-card {
  padding: 26px 22px 22px;
  border-radius: 16px;
  border: 1px solid rgba(62, 170, 255, 0.55);
  background: rgba(0, 24, 48, 0.42);
  box-shadow:
    0 0 0 1px rgba(62, 170, 255, 0.12),
    0 0 36px rgba(47, 163, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-contact-card__logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.footer-contact-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-contact-card__divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-contact-card__divider--thin {
  margin-top: 2px;
  margin-bottom: 16px;
}

.footer-contact-card__divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(77, 181, 255, 0.45) 50%, transparent 100%);
}

.footer-contact-card__divider-gem {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  transform: rotate(45deg);
  background: #45b5ff;
  box-shadow: 0 0 10px rgba(69, 181, 255, 0.85);
}

.footer-contact-card__divider-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.footer-contact-card__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 4px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.25s var(--ed-ease);
}

.footer-contact-card__phone:hover {
  color: #fff;
  opacity: 0.92;
}

.footer-contact-card__phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(77, 181, 255, 0.5);
  background: rgba(0, 40, 80, 0.35);
  color: #5ec2ff;
  font-size: 15px;
  box-shadow: 0 0 16px rgba(47, 163, 255, 0.32);
}

.footer-contact-card__phone-num {
  font-size: clamp(1.65rem, 2.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
}

.footer-contact-card__address,
.footer-contact-card__email {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.55;
  text-decoration: none;
  transition: color 0.25s var(--ed-ease);
}

.footer-contact-card__email:hover {
  color: #fff;
}

.footer-contact-card__meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #45b5ff;
  font-size: 13px;
}

.footer-contact-card__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-card__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(77, 181, 255, 0.35);
  background: rgba(0, 40, 80, 0.28);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  text-decoration: none;
  transition:
    background 0.25s var(--ed-ease),
    border-color 0.25s var(--ed-ease),
    color 0.25s var(--ed-ease),
    box-shadow 0.25s var(--ed-ease);
}

.footer-contact-card__social a:hover {
  color: #fff;
  border-color: rgba(77, 181, 255, 0.65);
  background: rgba(47, 163, 255, 0.22);
  box-shadow: 0 0 14px rgba(47, 163, 255, 0.28);
}

.footer-contact-card__social a svg{
  fill: #fff;
}

.footer._modern .footer-bottom {
  position: relative;
  z-index: 2;
  padding: 16px 0 18px;
  background: rgba(0, 14, 30, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom__left,
.footer-bottom__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom__shield {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid rgba(77, 181, 255, 0.4);
  background: rgba(0, 40, 80, 0.35);
  color: #5ec2ff;
  font-size: 14px;
  box-shadow: 0 0 14px rgba(47, 163, 255, 0.22);
}

.footer._modern .footer-bottom .text a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.4;
}

.footer._modern .footer-bottom .text a strong {
  color: #fff;
  font-weight: 700;
}

.footer._modern .footer-bottom .design a {
  color: rgba(255, 255, 255, 0.62);
}

.footer-modern__top {
  --scroll-progress: 0%;
  position: fixed;
  right: clamp(2px, 2.5vw, 9px);
  bottom: clamp(81px, 3vw, 32px);
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 8px;
  border: 1px solid rgba(105, 193, 255, 0.2);
  border-radius: 999px;
  background: rgba(10, 34, 68, 0.88);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 32px rgba(0, 15, 35, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
  transition:
    opacity 0.35s var(--ed-ease),
    visibility 0.35s var(--ed-ease),
    transform 0.35s var(--ed-ease),
    box-shadow 0.25s var(--ed-ease),
    border-color 0.25s var(--ed-ease),
    background 0.25s var(--ed-ease);
}

.footer-modern__top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.footer-modern__top:hover {
  transform: translateY(-3px) scale(1);
  border-color: rgba(105, 193, 255, 0.34);
  background: rgba(11, 40, 80, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 34px rgba(0, 18, 40, 0.28);
}

.footer-modern__top-track {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    90deg,
    rgba(61, 180, 255, 0.12) 0%,
    rgba(61, 180, 255, 0.12) var(--scroll-progress),
    rgba(255, 255, 255, 0.06) var(--scroll-progress),
    rgba(255, 255, 255, 0.06) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.footer-modern__top-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(180deg, #3db4ff 0%, #1f8fe8 100%);
  color: #fff;
  box-shadow:
    0 0 0 4px rgba(47, 163, 255, 0.16),
    0 8px 20px rgba(31, 143, 232, 0.3);
}

.footer-modern__top-text {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}


@media (max-width: 1199px) {
  .footer-modern__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-modern__contact {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .footer-modern__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }
}

@media (max-width: 767px) {

  .footer-modern__nav {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer._modern .footer-heading__line {
    margin-left: 0;
  }

  .footer-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-bottom__right {
    width: 100%;
    justify-content: center;
  }

  .footer-contact-card__phone {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-contact-card__phone-num {
    font-size: 1.55rem;
  }
}

@media (max-width: 479px) {
  .footer._modern .footer-card {
    flex: none;
    max-width: none;
  }
}
.breadcrumb.ui-bg {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.breadcrumb.ui-bg ul {
  z-index: 4;
  position: relative;
  background-color: #fff;
}

@media (min-width: 480px) {
  .breadcrumb.ui-bg ul {
      padding: 13px 30px;
  }
}

@media (max-width: 479px) {
  .breadcrumb.ui-bg ul {
      padding: 13px 20px;
  }
}

.breadcrumb.ui-bg ul:not(.ui-radius-full) {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.breadcrumb.ui-bg ul.ui-radius-full {
  border-radius: 15px;
}

@media (min-width: 768px) {
  .breadcrumb.ui-pos-bottom {
      position: absolute;
      right: 10px;
      bottom: 0;
      left: 10px;
  }
}

.breadcrumb:not([class*="ui-color-"]) ul li a {
  color: #7a93a9;
}

.breadcrumb:not([class*="ui-color-"]) ul li a::after {
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  opacity: .3;
}

.breadcrumb:not([class*="ui-color-"]) ul li a[href]:not(.not):hover {
  color: var(--main-color-dark);
}

.breadcrumb.ui-color-1 ul li a {
  color: #81afb8;
}

.breadcrumb.ui-color-1 ul li a::after {
  border-top: 1px solid var(--color-three);
  border-right: 1px solid var(--color-three);
}

.breadcrumb ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media (max-width: 991px) {
  .breadcrumb ul {
      overflow-y: auto;
  }
}

.breadcrumb ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.breadcrumb ul li a {
  font-size: 12px;
  text-transform: capitalize;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.breadcrumb ul li a::after {
  content: "";
  width: 6px;
  height: 6px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 10px;
  margin-right: 13px;
}

.breadcrumb ul li a .icon {
  font-size: 14px;
}

.breadcrumb ul li:last-child a:after {
  display: none;
}
.page-content__breadcrumb {
  border-radius: 15px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.page-content__breadcrumb .breadcrumb {
  width: 100%;
}

@media (max-width: 767px) {
  .page-content__breadcrumb-header>.row .col-auto {
      display: none;
  }
}

.page-content__breadcrumb:not(.ui-no-bg) {
  padding: 18px 23px;
  margin-bottom: 20px;
}

.page-content__breadcrumb:not(.ui-no-bg):not([class*="ui-bg-"]) {
  background-color: rgba(219, 226, 231, 0.3);
}

.page-content__breadcrumb:not(.ui-no-bg).ui-bg-light {
  background-color: rgba(255, 255, 255, 0.5);
}

.page-content__breadcrumb.ui-no-bg {
  padding-left: 25px;
  padding-right: 25px;
  margin-bottom: 10px;
}

.page-content__breadcrumb-right {
  width: 100%;
}

.page-content__breadcrumb-right .btn-pdf {
  background-color: #1c6e7f;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 15px;
  height: 55px;
  padding-left: 15px;
  padding-right: 15px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.3px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.page-content__breadcrumb-right .btn-pdf:hover {
  background-color: #035566;
}

.page-content__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #7a93a9;
}

@media (max-width: 991px) {
  .page-content__back {
      display: none;
  }
}

.page-content__back.ui-pos-bottom-right {
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: 4;
  padding-right: 15px;
  padding-bottom: 12px;
}

.page-content__back:hover {
  color: #5e788f;
}

.page-content__back .icon {
  color: var(--color-three);
  font-size: 10px;
  margin-right: 7px;
  margin-top: -1px;
}

.page-content__back .text {
  font-size: 12px;
  font-weight: 600;
}
.ui-d-flex {
  display: -ms-flexbox !important;
  display: -webkit-box !important;
  display: flex !important;
}

.sidebar-item {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  padding-left: 25px;
  padding-right: 25px;
}

.sidebar-item .list-shortcuts {
  padding-bottom: 20px;
}

.sidebar-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: var(--main-color);
  font-family: inherit;
  width: 100%;
}

.sidebar-header {
  color: var(--color-three);
  font-family: inherit;
}

.sidebar-header:not(.ui-style-bg) {
  border-bottom: 1px solid rgba(94, 120, 143, 0.08);
}

.sidebar-header.ui-style-bg {
  background-color: rgba(255, 255, 255, 0.5);
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 15px;
}

.sidebar-header:not([class*="ui-size-"]) {
  height: 70px;
}

.sidebar-header:not([class*="ui-size-"]) .heading {
  font-size: 18px;
}

.sidebar-header.ui-size-small {
  height: 50px;
}

.sidebar-header.ui-size-small .heading {
  font-size: 14px;
}

.sidebar-header .heading {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.sidebar-header .icon {
  font-size: 12px;
  opacity: .5;
}

.sidebar-nav {
  padding-bottom: 15px;
}

.sidebar-nav:not(.ui-filter) ul li:hover a {
  color: var(--color-three);
}

.sidebar-nav:not(.ui-filter) ul li.is-current a {
  font-weight: 800;
  color: #455f76;
}

.sidebar-nav:not(.ui-filter) ul li a {
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 14px;
}

.sidebar-nav.ui-filter {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  margin-top: 5px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.sidebar-nav.ui-filter ul {
  padding-left: 20px;
  padding-right: 20px;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-color: var(--color-three) rgba(254, 126, 0, 0.1);
  scrollbar-width: thin;
}

.sidebar-nav.ui-filter ul::-webkit-scrollbar-track {
  background-color: rgba(254, 126, 0, 0.1);
}

.sidebar-nav.ui-filter ul::-webkit-scrollbar {
  width: 5px;
}

.sidebar-nav.ui-filter ul::-webkit-scrollbar-thumb {
  background-color: var(--color-three);
}

.sidebar-nav.ui-filter ul li.is-current a,
.sidebar-nav.ui-filter ul li:not(.is-current):hover a {
  color: #455f76;
}

.sidebar-nav.ui-filter ul li.is-current a::before,
.sidebar-nav.ui-filter ul li:not(.is-current):hover a::before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.sidebar-nav.ui-filter ul li a {
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 13px;
  position: relative;
  z-index: 1;
}

.sidebar-nav.ui-filter ul li a::after {
  content: attr(data-count);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  font-size: 11px;
  opacity: .4;
}

.sidebar-nav.ui-filter ul li a::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 1px;
  right: -5px;
  bottom: 1px;
  left: -5px;
  background-color: rgba(219, 226, 231, 0.5);
  border-radius: 11px;
  -webkit-transform: scale(0.85);
  -ms-transform: scale(0.85);
  transform: scale(0.85);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

@media (min-width: 768px) and (max-width: 991px) {
  .sidebar-nav.ui-list-flex-wrap ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .sidebar-nav.ui-list-flex-wrap ul li:not(:last-child) {
      margin-right: 20px;
  }
}

.sidebar-nav ul li:not(:last-child) {
  border-bottom: 1px solid rgba(94, 120, 143, 0.08);
}

.sidebar-nav ul li a {
  color: #7a93a9;
  font-weight: 500;
  line-height: 1.4;
  padding-left: 5px;
  display: block;
  position: relative;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.sidebar-list ul li {
  border-bottom: 1px solid rgba(94, 120, 143, 0.1);
  padding-top: 18px;
  padding-bottom: 18px;
}

.sidebar-list ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sidebar-list ul li a .icon:not([class*="ui-"]) {
  color: rgba(122, 147, 169, 0.5);
  font-size: 36px;
  width: 55px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sidebar-list ul li a .icon.ui-figure {
  width: 55px;
  height: 55px;
}

.sidebar-list ul li a .icon.ui-figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.sidebar-list ul li a .desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 15px;
  line-height: 1.3;
}

.sidebar-list ul li a .desc .title {
  color: #5e788f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 20px;
}

.sidebar-list ul li a .desc .text {
  font-size: 12px;
  color: #7a93a9;
  margin-top: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 33px;
}
.inner-page__header {
  position: relative;
  margin-top: 105px;
}

@media (max-width: 767px) {
  .inner-page__photo {
      display: none;
  }
}

@media (min-width: 992px) {
  .inner-page__photo:not([class*="ui-height-"]) {
      height: 480px;
  }

}

@media (max-width: 991px) {
  .inner-page__header {
      margin-top: 25px;
  }

  .inner-page__header .ui-bg {
      background: transparent;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .inner-page__photo:not([class*="ui-height-"]) {
      height: 230px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .inner-page__photo:not([class*="ui-height-"]) {
      height: 230px;
  }
}

.inner-page__photo.ui-height-1 {
  height: 475px;
}

.inner-page__photo.ui-height-full {
  height: calc(100vh - calc(70px + 80px));
}

.inner-page__photo.ui-pos-absolute {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
}

@media (min-width: 992px) {
  .inner-page__photo.ui-pos-absolute {
      top: calc(70px + 65px);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .inner-page__photo.ui-pos-absolute {
      top: 60px;
  }
}

.inner-page__photo.ui-pos-absolute::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#ecf0f2));
  background-image: -o-linear-gradient(transparent, #ecf0f2);
  background-image: linear-gradient(transparent, #ecf0f2);
}

.inner-page__photo.ui-style-bg-gradient img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: .7;
}

@media (min-width: 992px) {
  .inner-page__photo.ui-style-bg-gradient img {
      -webkit-transform: translateX(13vw);
      -ms-transform: translateX(13vw);
      transform: translateX(13vw);
  }
}

.inner-page__photo img,
.inner-page__photo video,
.inner-page__photo iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.inner-page__heading {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.inner-page__heading.ui-pos-relative {
  position: relative;
}

@media (min-width: 768px) {
  .inner-page__heading.ui-pos-relative:not(.ui-no-heading-content) .container {
      padding-top: 20px;
      padding-bottom: 90px;
  }
}
@media (min-width: 768px) {
  .inner-page__heading.ui-pos-relative.ui-no-heading-content .container {
      padding-top: 130px;
  }
}

@media (max-width: 767px) {
  .inner-page__heading.ui-pos-relative.ui-no-heading-content .container {
      padding-top: 60px;
  }
}

.inner-page__heading:not(.ui-pos-relative) .container:not(.ui-not) {
  height: calc((480px / 2));
  padding-top: 35px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .inner-page__heading:not(.ui-pos-relative) .container:not(.ui-not) {
      height: calc((230px / 2));
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .inner-page__heading:not(.ui-pos-relative) .container:not(.ui-not) {
      height: calc((230px / 2));
  }
}

.inner-page__heading:not(.ui-pos-relative) .container.ui-not {
  height: 100%;
}

.inner-page__heading.ui-style-bg-gradient {
  background-image: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(70%, #02424f));
  background-image: -o-linear-gradient(right, transparent, #02424f 70%);
  background-image: linear-gradient(to left, transparent, #02424f 70%);
}

.inner-page__heading.ui-style-bg-gradient-1 {
  background-image: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(70%, rgba(2, 66, 79, 0.75)));
  background-image: -o-linear-gradient(right, transparent, rgba(2, 66, 79, 0.75) 70%);
  background-image: linear-gradient(to left, transparent, rgba(2, 66, 79, 0.75) 70%);
}

.inner-page__heading .container {
  position: relative;
}

.inner-page__heading-content {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.inner-page__heading-content .title {
  color: #035e71;
  font-weight: 800;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .inner-page__heading-content .title {
      font-size: 54px;
      letter-spacing: -2.5px;
  }
}

@media (max-width: 479px) {
  .inner-page__heading-content .title {
      font-size: 36px;
      letter-spacing: -1.5px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .inner-page__heading-content .title {
      font-size: 42px;
      letter-spacing: -2px;
  }
}

.inner-page__heading-content .text {
  color: #4f8e9c;
  line-height: 1.6;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .inner-page__heading-content .text {
      margin-bottom: 20px;
  }
}

@media (min-width: 480px) {
  .inner-page__heading-content .text {
      font-size: 14px;
  }
}

@media (max-width: 479px) {
  .inner-page__heading-content .text {
      font-size: 13px;
  }
}

.inner-page__wrapper {
  padding-top: 70px !important;
}

.inner-page__wrapper.ui-mb-0 {
  margin-bottom: 0;
}

.inner-page__wrapper.ui-mt-0 {
  margin-top: 0;
}

.inner-page__wrapper.ui-mv-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.inner-page__wrapper.ui-page-header-photo .container {
  margin-top: calc(-1 * (480px / 2));
}


/* @media (max-width: 479px) {
  .inner-page__wrapper.ui-no-page-header .container {
      margin-top: 40px;
  }
} */

.inner-page__wrapper .container {
  position: relative;
  z-index: 3;
}
.no-gutters {
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 1200px) {
  .inner-page__row:not(.no-gutters)>div {
      padding-left: 10px;
      padding-right: 10px;
  }
}

@media (max-width: 1199px) {
  .inner-page__row:not(.no-gutters)>div {
      padding-left: 10px;
      padding-right: 10px;
  }
}

@media (min-width: 1200px) {
  .inner-page__row:not(.no-gutters).ui-gutter-15>div {
      padding-left: 15px;
      padding-right: 15px;
  }
}

@media (max-width: 1199px) {
  .inner-page__row:not(.no-gutters).ui-gutter-15>div {
      padding-left: 10px;
      padding-right: 10px;
  }
}

@media (min-width: 768px) {
  .inner-page__row.ui-dir-reverse {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  }
}

@media (max-width: 767px) {
  .inner-page__row {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .inner-page__row.ui-page-tenders {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
  }
}

@media (min-width: 992px) {
  .inner-page__article:not(.ui-no-width) {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 77%;
      flex: 0 0 77%;
      max-width: 77%;
  }
}

@media (max-width: 767px) {
  .inner-page__article:not(.ui-no-width) {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .inner-page__article:not(.ui-no-width):not(.ui-no-width-tablet) {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 62%;
      flex: 0 0 62%;
      max-width: 62%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .inner-page__article:not(.ui-no-width) {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 67%;
      flex: 0 0 67%;
      max-width: 67%;
  }
}

@media (max-width: 767px) {
  .inner-page__sidebar {
      margin-top: 20px;
  }
}

@media (min-width: 992px) {
  .inner-page__sidebar:not(.ui-no-width) {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 77%);
      flex: 0 0 calc(100% - 77%);
      max-width: calc(100% - 77%);
  }
}

@media (max-width: 767px) {
  .inner-page__sidebar:not(.ui-no-width) {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .inner-page__sidebar:not(.ui-no-width):not(.ui-no-width-tablet) {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 62%);
      flex: 0 0 calc(100% - 62%);
      max-width: calc(100% - 62%);
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .inner-page__sidebar:not(.ui-no-width) {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 67%);
      flex: 0 0 calc(100% - 67%);
      max-width: calc(100% - 67%);
  }
}

.inner-page__sidebar:not(.ui-no-mb)>div:not(:last-child) {
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .inner-page__content:not(.ui-no-height) {
      min-height: 700px;
  }
}

.inner-page__content:not(.ui-no-bg) {
  background-color: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 50px rgba(94, 120, 143, 0.1);
  box-shadow: 0 0 50px rgba(94, 120, 143, 0.1);
}

@media (min-width: 480px) {
  .inner-page__content:not(.ui-no-bg) {
      padding: 45px;
  }
}

@media (max-width: 479px) {
  .inner-page__content:not(.ui-no-bg) {
      padding: 15px 20px;
  }
}

.inner-page__content.ui-page-services {
  margin-top: 30px;
}

@media (min-width: 1200px) {
  .inner-page__content.ui-page-services {
      padding-left: 55px;
      padding-right: 55px;
  }
}

@media (min-width: 768px) {
  .inner-page__content.ui-page-unit-detail {
      height: calc(100% - 450px);
  }
}

.page-content__photo_news {
  float: none !important;
  width: 100% !important;
}

.page-content__photo_news img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
}

.page-content__breadcrumb {
  border-radius: 15px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.page-content__breadcrumb .breadcrumb {
  width: 100%;
}

@media (max-width: 767px) {
  .page-content__breadcrumb-header>.row .col-auto {
      display: none;
  }
}

.page-content__breadcrumb:not(.ui-no-bg) {
  padding: 18px 23px;
  margin-bottom: 20px;
}

.page-content__breadcrumb:not(.ui-no-bg):not([class*="ui-bg-"]) {
  background-color: rgba(219, 226, 231, 0.3);
}

.page-content__breadcrumb:not(.ui-no-bg).ui-bg-light {
  background-color: rgba(255, 255, 255, 0.5);
}

.page-content__breadcrumb.ui-no-bg {
  padding-left: 25px;
  padding-right: 25px;
  margin-bottom: 10px;
}

.page-content__breadcrumb-right {
  width: 100%;
}

.page-content__breadcrumb-right .btn-pdf {
  background-color: #1c6e7f;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 15px;
  height: 55px;
  padding-left: 15px;
  padding-right: 15px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.3px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.page-content__breadcrumb-right .btn-pdf:hover {
  background-color: #035566;
}

.page-content__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #7a93a9;
}

@media (max-width: 991px) {
  .page-content__back {
      display: none;
  }
}

.page-content__back.ui-pos-bottom-right {
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: 4;
  padding-right: 15px;
  padding-bottom: 12px;
}

.page-content__back:hover {
  color: #5e788f;
}

.page-content__back .icon {
  color: var(--color-three);
  font-size: 10px;
  margin-right: 7px;
  margin-top: -1px;
}

.page-content__back .text {
  font-size: 12px;
  font-weight: 600;
}

.page-content__filter {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
  margin-left: -5px;
  margin-right: -5px;
}

@media (max-width: 991px) {
  .page-content__filter {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
  }
}

.page-content__filter>.item {
  padding-left: 5px;
  padding-right: 5px;
}

@media (max-width: 991px) {
  .page-content__filter>.item:not(:first-child) {
      margin-bottom: 10px;
  }
}

@media (min-width: 992px) {
  .page-content__filter>.item.ui-item-search {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
      flex: 0 0 75%;
      max-width: 75%;
  }
}

.page-content__filter>.item.ui-item-categories {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.page-content__filter-search form {
  position: relative;
  width: 100%;
}

.page-content__filter-search form input {
  background: none;
  outline: 0;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  border: 0 none;
  height: 60px;
  font-family: inherit;
  color: #7a93a9;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.3px;
  width: 100%;
  padding-left: 25px;
  padding-right: 75px;
}

.page-content__filter-search form input::-webkit-input-placeholder {
  /* Edge */
  color: #7a93a9;
}

.page-content__filter-search form input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #7a93a9;
}

.page-content__filter-search form input::-moz-placeholder {
  color: #7a93a9;
}

.page-content__filter-search form input::-ms-input-placeholder {
  color: #7a93a9;
}

.page-content__filter-search form input::placeholder {
  color: #7a93a9;
}

.page-content__filter-search form input:focus {
  background-color: #fff;
  color: #455f76;
}

.page-content__filter-search form .icon {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: .4;
  font-size: 18px;
}

.page-content__filter-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.page-content__filter-nav .item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}

.page-content__filter-nav .btn {
  background-color: #fff;
  height: 60px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 15px;
  color: var(--color-three);
  font-family: inherit;
}

.page-content__filter-nav .btn .title {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.3px;
}

.page-content__filter-nav .btn .icon {
  font-size: 12px;
  opacity: .5;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.page-content__filter-nav .btn.is-active .icon {
  -webkit-transform: scale(1.3) rotate(90deg);
  -ms-transform: scale(1.3) rotate(90deg);
  transform: scale(1.3) rotate(90deg);
}

.page-content__filter-nav .dropdown {
  position: absolute;
  margin-top: 3px;
  left: 0;
  right: 0;
  background-color: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 0 10px 30px rgba(94, 120, 143, 0.3);
  box-shadow: 0 10px 30px rgba(94, 120, 143, 0.3);
  -webkit-transform-origin: center top;
  -ms-transform-origin: center top;
  transform-origin: center top;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  padding-top: 13px;
  padding-bottom: 13px;
}

.page-content__filter-nav .dropdown:not(.is-visible) {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

.page-content__filter-nav .dropdown ul {
  max-height: 303px;
  overflow-y: auto;
  scrollbar-color: var(--color-three) rgba(254, 126, 0, 0.1);
  scrollbar-width: thin;
}

.page-content__filter-nav .dropdown ul::-webkit-scrollbar-track {
  background-color: rgba(254, 126, 0, 0.1);
}

.page-content__filter-nav .dropdown ul::-webkit-scrollbar {
  width: 5px;
}

.page-content__filter-nav .dropdown ul::-webkit-scrollbar-thumb {
  background-color: var(--color-three);
}

.page-content__filter-nav .dropdown ul li {
  padding-left: 20px;
  padding-right: 20px;
}

.page-content__filter-nav .dropdown ul li:not(:last-child) a {
  border-bottom: 1px solid rgba(94, 120, 143, 0.1);
}

.page-content__filter-nav .dropdown ul li.is-current a::after,
.page-content__filter-nav .dropdown ul li:hover a::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.page-content__filter-nav .dropdown ul li a {
  display: block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 7px;
  color: #5e788f;
  font-weight: 800;
  font-size: 13px;
  position: relative;
  z-index: 1;
}

.page-content__filter-nav .dropdown ul li a::after {
  content: "";
  position: absolute;
  top: 1px;
  right: -7px;
  bottom: 1px;
  left: -7px;
  background-color: rgba(219, 226, 231, 0.3);
  border-radius: 8px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.85);
  -ms-transform: scale(0.85);
  transform: scale(0.85);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.page-content__social.ui-style-fixed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 768px) {
  .page-content__social.ui-style-fixed {
      position: absolute;
      right: 30px;
      top: -30px;
  }
}

@media (max-width: 767px) {
  .page-content__social.ui-style-fixed {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
  }
}

.page-content__social a:not(.heading) {
  color: #7a93a9;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #dbe2e7;
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
  width: 35px;
  height: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 13px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.page-content__social a:not(.heading):hover {
  background-color: #fff;
}

.page-content__social a:not(.heading):not(:last-child) {
  margin-right: 3px;
}

.page-content__social a.heading {
  font-family: "Bebas Neue", cursive;
  font-size: 14px;
  color: rgba(122, 147, 169, 0.5);
  margin-right: 10px;
  position: relative;
  top: 5px;
}

.page-content__tags {
  margin-top: 20px;
}

.page-content__tags ul {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.page-content__tags ul li:not(:last-child) {
  margin-right: 7px;
}

@media (max-width: 767px) {
  .page-content__tags ul li {
      margin-bottom: 10px;
  }
}

.page-content__tags ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px 10px;
  background-color: rgba(219, 226, 231, 0.2);
  border-radius: 8px;
  color: #5e788f;
  font-size: 12px;
  font-weight: 800;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.page-content__tags ul li a:hover {
  background-color: rgba(219, 226, 231, 0.7);
}

.page-content__single {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .page-content__single {
      margin-top: 90px;
  }
}

@media (max-width: 479px) {
  .page-content__single {
      margin-top: 50px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .page-content__single {
      margin-top: 75px;
  }
}

@media (min-width: 1200px) {
  .page-content__single .container {
      max-width: 1350px;
  }
}

@media (min-width: 768px) {
  .page-content__single-cover {
      height: 500px;
  }
}

.page-content__single-cover a {
  display: block;
  position: relative;
  z-index: 1;
  height: 100%;
  overflow: hidden;
}

@media (min-width: 992px) {
  .page-content__single-cover a {
      border-top-left-radius: 15px;
      border-bottom-left-radius: 15px;
  }
}

@media (max-width: 991px) {
  .page-content__single-cover a {
      border-top-right-radius: 15px;
      border-top-left-radius: 15px;
  }
}

.page-content__single-cover a::before {
  content: "";
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#022f39));
  background-image: -o-linear-gradient(transparent, #022f39);
  background-image: linear-gradient(transparent, #022f39);
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  opacity: .7;
}

.page-content__single-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-content__single-description {
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 1200px) {
  .page-content__single-description {
      padding: 30px 60px 0 60px;
  }
}

@media (min-width: 992px) {
  .page-content__single-description {
      border-top-right-radius: 15px;
      border-bottom-right-radius: 15px;
  }
}

@media (max-width: 479px) {
  .page-content__single-description {
      padding: 20px;
  }
}

@media (max-width: 991px) {
  .page-content__single-description {
      border-bottom-right-radius: 15px;
      border-bottom-left-radius: 15px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .page-content__single-description {
      padding: 40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .page-content__single-description {
      padding: 40px 60px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-content__single-description {
      padding: 30px;
  }
}

@media (min-width: 1200px) {
  .page-content__single-description .actions {
      padding-left: 60px;
      padding-right: 60px;
  }
}

@media (min-width: 992px) {
  .page-content__single-description .actions {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      padding-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .page-content__single-description .actions {
      margin-top: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-content__single-description .actions {
      padding-left: 30px;
      padding-right: 30px;
  }
}

.page-content__single-description .actions .btn {
  border-radius: 15px;
}

.page-content__single-description .actions ul li:not(:last-child) {
  margin-bottom: 10px;
}

.page-content__infos {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .page-content__infos:not([class*="ui-list-"]) ul li:first-child {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
      margin-bottom: 10px;
  }
}

@media (min-width: 768px) {
  .page-content__infos:not([class*="ui-list-"]) ul li:not(:first-child) {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333%;
      flex: 0 0 33.33333%;
      max-width: 33.33333%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-content__infos:not([class*="ui-list-"]) ul li:not(:first-child) .item .icon {
      display: none;
  }
}

@media (max-width: 767px) {
  .page-content__infos:not([class*="ui-list-"]) ul li {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
  }

  .page-content__infos:not([class*="ui-list-"]) ul li:not(:last-child) {
      margin-bottom: 10px;
  }
}

.page-content__infos.ui-list-camii ul li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.page-content__infos.ui-list-camii ul li:not(:last-child) {
  margin-bottom: 10px;
}

.page-content__infos ul li {
  padding-left: 5px;
  padding-right: 5px;
}

@media (min-width: 768px) {
  .page-content__infos ul li:first-child {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
  }

  .page-content__infos ul li:first-child .item:first-child {
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      max-width: 100%;
  }

  .page-content__infos ul li:first-child .item:nth-child(2) {
      margin-left: 10px;
  }
}

@media (max-width: 767px) {
  .page-content__infos ul li:first-child .item:not(:last-child) {
      margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .page-content__infos ul li:first-child .item .button {
      width: 100%;
  }
}

.page-content__infos .item:not(.ui-no-bg) {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border-radius: 15px;
  padding: 7px;
}

.page-content__infos .item>.icon {
  width: 50px;
  height: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 11px;
  background-color: rgba(254, 126, 0, 0.1);
  color: var(--color-three);
  font-size: 20px;
}

.page-content__infos .item .desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 15px;
  line-height: 1.2;
}

.page-content__infos .item .desc .heading {
  font-size: 12px;
  font-weight: 900;
  color: #7a93a9;
}

.page-content__infos .item .desc .text {
  color: #7a93a9;
  font-weight: 300;
  font-size: 14px;
}

@media (max-width: 767px) {
  .page-content__nav {
      width: 100%;
  }
}

@media (max-width: 767px) {
  .page-content__nav ul {
      overflow-x: auto;
  }
}

.page-content__nav ul li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.page-content__nav ul li.is-current {
  margin-right: 10px;
  margin-left: 10px;
}

.page-content__nav ul li.is-current a {
  color: var(--color-three);
}

.page-content__nav ul li:not(.is-current) a {
  color: #7a93a9;
}

.page-content__nav ul li:not(.is-current) a::after {
  opacity: 0;
  visibility: hidden;
}

.page-content__nav ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 23px;
  padding-bottom: 23px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 1;
}

.page-content__nav ul li a::before {
  content: "";
  margin-left: 15px;
  margin-right: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 6px;
  height: 6px;
  background-color: currentColor;
  border-radius: 99px;
  opacity: .4;
  margin-top: -1px;
}

.page-content__nav ul li a::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 16px;
  left: 0;
  right: -13px;
  bottom: 16px;
  background-color: #fff;
  border-radius: 11px;
}

.page-content__header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(94, 120, 143, 0.1);
  padding-bottom: 12px;
}

@media (max-width: 991px) {
  .page-content__header {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
  }
}

.page-content__header .title {
  line-height: 1.3;
}

@media (min-width: 480px) {
  .page-content__header .title {
      letter-spacing: -1px;
  }
}

@media (max-width: 479px) {
  .page-content__header .title {
      letter-spacing: -0.65px;
  }
}

.page-content__header .title:not([class*="ui-color-"]) {
  color: var(--main-color);
}

.page-content__header .title:not([class*="ui-style-"]) {
  font-weight: 700;
}

@media (min-width: 480px) {
  .page-content__header .title:not([class*="ui-style-"]) {
      font-size: 24px;
  }
}

@media (max-width: 479px) {
  .page-content__header .title:not([class*="ui-style-"]) {
      font-size: 20px;
  }
}

.page-content__header .title.ui-color-1 {
  color: #035e71;
}

.page-content__header .title.ui-style-1 {
  font-weight: 800;
}

@media (min-width: 480px) {
  .page-content__header .title.ui-style-1 {
      font-size: 28px;
  }
}

@media (max-width: 479px) {
  .page-content__header .title.ui-style-1 {
      font-size: 24px;
  }
}

.page-content__header-right {
  margin-left: 30px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

@media (max-width: 991px) {
  .page-content__header-right {
      margin-top: 10px;
      margin-left: 0;
  }
}

.page-content__header-right .date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #7a93a9;
  font-size: 12px;
  font-weight: 600;
}

.page-content__header-right .date .icon {
  font-size: 13px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: rgba(94, 120, 143, 0.3);
  width: 30px;
  height: 30px;
  align-items: center;
  font-size: 14px;
}

.page-content__heading:not([class*="ui-style-"]) {
  font-weight: 900;
  color: #5e788f;
  font-size: 17px;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}

.page-content__heading:not([class*="ui-style-"]).ui-color-1 {
  color: #035e71;
}

.page-content__heading:not([class*="ui-style-"]).ui-color-2 {
  color: var(--main-color-dark);
}

.page-content__heading.ui-style-1 {
  background-color: rgba(3, 94, 113, 0.07);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-content__heading.ui-style-1:not([class*="ui-padding-"]) {
  padding: 20px 25px;
  border-radius: 15px;
}

.page-content__heading.ui-style-1:not([class*="ui-padding-"]) .title {
  font-size: 14px;
}

.page-content__heading.ui-style-1.ui-padding-1 {
  padding: 8px 20px;
  border-radius: 11px;
}

.page-content__heading.ui-style-1.ui-padding-1 .title {
  font-size: 12px;
}

.page-content__heading.ui-style-1 .title {
  color: #035e71;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: -0.3px;
}

.page-content__heading.ui-style-1 .icon {
  font-size: 13px;
  opacity: .3;
}

.page-content__photo {
  max-height: 450px;
  margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .page-content__photo {
      margin-left: 0;
      width: 100%;
      float: none;
  }
}

@media (max-width: 767px) {
  .page-content__photo {
      height: auto !important;
      margin-right: 0;
      float: none;
      width: 100%;
      margin-bottom: 30px;
  }
}

.page-content__photo.ui-small,
.page-content__photo.ui-large {
  width: 100%;
  float: inherit;
  margin-right: 0;
}

.page-content__photo.ui-small {
  height: 175px;
  margin-bottom: 0;
}

.page-content__photo.ui-large {
  height: 450px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .page-content__photo.ui-large {
      height: 250px;
  }
}

.page-content__photo.ui-auto {
  height: auto;
}


.page-content__photo .tag {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  background-color: #035e71;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 8px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.page-content__photo .tag:hover {
  background-color: #024b5a;
}

.page-content__spot {
  margin-bottom: 20px;
  font-size: 18px;
  color: #455f76;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.page-content__description {
  color: #5e788f !important;
  font-size: 16px !important;
  font-weight: 300;
  line-height: 1.8 !important;
  font-family: "Cerebri Sans", sans-serif !important;
  background-color: transparent !important;
}

@media (max-width: 991px) {
  .page-content__description {
      overflow-y: auto;
  }
}

.page-content__description.ui-txt-center {
  text-align: center;
}

.page-content__description a {
  color: #55acef;
  font-weight: 600;
}

.page-content__description a:hover {
  text-decoration: underline;
}

.page-content__description h3 {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -1px;
}

.page-content__description h5 {
  font-weight: 700;
  font-size: 14px;
}

.page-content__description>p {
  margin-bottom: 30px;
}

.page-content__description a {
  color: #55acef;
  font-weight: 600;
}

.page-content__description a:hover {
  text-decoration: underline;
}

.page-content__description strong {
  font-weight: 800;
}

.page-content__description img {
  max-width: 100%;
  border-radius: 20px;
}

.page-content__description ul,
.page-content__description ol {
  padding-left: 20px;
}

.page-content__description ul li {
  list-style: disc;
}

.page-content__description ol li {
  list-style: decimal;
}

.page-content__description table {
  width: 100% !important;
  border: 1px solid rgba(94, 120, 143, 0.1) !important;
}

.page-content__description table thead {
  background-color: rgba(219, 226, 231, 0.5);
}

.page-content__description table thead tr th {
  font-weight: 800;
}

.page-content__description table tbody tr {
  border-bottom: 1px solid rgba(94, 120, 143, 0.1) !important;
}

.page-content__description table tbody tr td,
.page-content__description table tbody tr th {
  padding: 10px 20px !important;
  border-right: 1px solid rgba(94, 120, 143, 0.1) !important;
  line-height: 1.5;
}

.page-content__description table tbody tr td:last-child,
.page-content__description table tbody tr th:last-child {
  border-right: 0 none !important;
}

.page-content__update {
  margin-top: 30px;
  color: rgba(122, 147, 169, 0.6);
  font-size: 12px;
  text-align: right;
}

.page-content__update strong {
  font-weight: 900;
}

.page-content__gallery {
  display: inline-block;
  width: 100%;
  margin-top: 10px;
}

@media (max-width: 479px) {
  .page-content__gallery ul li {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
  }
}

@media (max-width: 1199px) {

  .page-content__gallery .gallery-photo,
  .page-content__gallery .gallery-btn {
      height: 100px;
  }
}

@media (max-width: 1199px) {
  .page-content__gallery .gallery-btn .number {
      font-size: 42px;
  }
}

@media (max-width: 1199px) {
  .page-content__gallery .gallery-btn .text {
      font-size: 12px;
  }
}

.page-content__other {
  margin-top: 20px;
  display: inline-block;
  width: 100%;
}

.page-content__other .list-activity {
  margin-top: 10px;
}

.page-content__subs {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .inner-page__content:not(.ui-no-height) {
    min-height: 700px;
  }
}
.oops {
  text-align: center;
  margin-top: 10vw;
  color: #035e71;
}

.oops .title {
  line-height: 0.8;
  font-weight: 900;
  font-size: 18vw;
}

.oops .text {
  text-transform: uppercase;
  font-weight: 100;
  font-size: 3vw;
  letter-spacing: 4px;
  line-height: 1.2;
}

.oops .buttons-container {
  margin-top: 50px;
}

.oops .buttons-container .btn:not(:last-child) {
  margin-right: 20px;
}
.buttons-container .btn {
  position: relative;
  z-index: 1;
}
.button-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff;
  font-family: inherit;
  border-radius: 11px;
  -webkit-box-shadow: 0px 6px 15px 2px rgba(94, 120, 143, 0.1);
  box-shadow: 0px 6px 15px 2px rgba(94, 120, 143, 0.1);
  padding-right: 5px;
}
.buttons-container.ui-center {
  text-align: center;
  width: 100%;
}

.buttons-container .btn {
  position: relative;
  z-index: 1;
}

.buttons-container .btn-group {
  background-color: rgba(122, 147, 169, 0.15);
  margin-left: -10px;
  padding-left: 25px;
  padding-right: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top-right-radius: 11px;
  border-bottom-right-radius: 11px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.3px;
  color: #7a93a9;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.buttons-container .btn-group:not([class*="ui-size-small-"]) {
  height: 45px;
  font-size: 13px;
}

.buttons-container .btn-group.ui-size-small-1 {
  height: 40px;
  font-size: 12px;
}

.buttons-container .btn-group:hover {
  background-color: rgba(122, 147, 169, 0.25);
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: inherit;
  text-align: center;
  letter-spacing: .3px;
  line-height: 1.2;
  outline: 0;
  text-transform: uppercase;
  border-radius: 11px;
  color: #fff;
  position: relative;
  font-weight: 900;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  background: var(--main-color);
}

.button:not([class*="ui-size-"]) {
  padding-left: 25px;
  padding-right: 25px;
  font-size: 14px;
  height: 55px;
}

.button:not([class*="ui-size-"]) .icon {
  font-size: 24px;
}

.button:not([class*="ui-size-"]) .icon:not([class*="ui-margin-"]) {
  margin-left: 17px;
}

.button:not([class*="ui-size-"]) .icon.ui-margin-right {
  margin-right: 17px;
}

.button.ui-size-small {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 13px;
  height: 50px;
}

.button.ui-size-small .icon {
  margin-left: 13px;
  font-size: 20px;
}

.button.ui-size-small-1 {
  padding-left: 15px;
  padding-right: 15px;
  font-size: 12px;
  height: 35px;
}

.button .icon {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.button.ui-min-width {
  min-width: 180px;
}

.button.ui-full-width {
  width: 100%;
}

.button:hover .icon:not([class*="ui-no-hover-"]) {
  -webkit-transform: scale(1.1) translateX(3px);
  -ms-transform: scale(1.1) translateX(3px);
  transform: scale(1.1) translateX(3px);
}

.button:hover .icon.ui-no-hover-translate {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.button:not([class*="ui-color-"]):hover {
  background: var(--main-color);
}

.button.ui-color-dark {
  background: #000;
}

.button.ui-color-wp {
  background: #25d366;
}

.button.ui-color-wp .icon {
  color: #25d366;
}

.button.ui-color-1 {
  background: var(--color-three);
}

.button.ui-color-2 {
  background-color: #dbe2e7;
  color: #5e788f;
}

.button.ui-color-2:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px rgba(94, 120, 143, 0.1);
  box-shadow: 0 0 20px rgba(94, 120, 143, 0.1);
}

.button-border {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: inherit;
  text-align: center;
  letter-spacing: .3px;
  line-height: 1.2;
  outline: 0;
  text-transform: uppercase;
  border-radius: 11px;
  color: #fff;
  position: relative;
  font-weight: 900;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  border: 1px solid #fff;
}

.button-border:not([class*="ui-size-"]) {
  padding-left: 25px;
  padding-right: 25px;
  font-size: 14px;
  height: 55px;
}

.button-border:not([class*="ui-size-"]) .icon {
  font-size: 24px;
}

.button-border:not([class*="ui-size-"]) .icon:not([class*="ui-margin-"]) {
  margin-left: 17px;
}

.button-border:not([class*="ui-size-"]) .icon.ui-margin-right {
  margin-right: 17px;
}

.button-border.ui-size-small {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 13px;
  height: 50px;
}

.button-border.ui-size-small .icon {
  margin-left: 13px;
  font-size: 20px;
}

.button-border.ui-size-small-1 {
  padding-left: 15px;
  padding-right: 15px;
  font-size: 12px;
  height: 35px;
}

.button-border .icon {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.button-border.ui-min-width {
  min-width: 180px;
}

.button-border.ui-full-width {
  width: 100%;
}

.button-border:hover .icon:not([class*="ui-no-hover-"]) {
  -webkit-transform: scale(1.1) translateX(3px);
  -ms-transform: scale(1.1) translateX(3px);
  transform: scale(1.1) translateX(3px);
}

.button-border:hover .icon.ui-no-hover-translate {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.button-border.ui-border-dark {
  color: #5e788f;
  border-width: 2px;
  border-style: solid;
  border-color: rgba(94, 120, 143, 0.1);
}

.button-border.ui-border-dark:hover {
  border-color: rgba(94, 120, 143, 0.2);
}

.button-border.ui-border-dark .icon {
  color: #5e788f;
}

.button-border.ui-color-2 {
  color: var(--color-three);
  border: 2px solid var(--color-three);
}

.button-border.ui-color-2 .icon {
  color: var(--color-three);
}

.button-line {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  font-weight: 900;
  position: relative;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.button-line:hover .icon {
  -webkit-transform: scale(1.1) translateX(3px);
  -ms-transform: scale(1.1) translateX(3px);
  transform: scale(1.1) translateX(3px);
}

.button-line .icon {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.button-line:not([class*="ui-size-"]) {
  letter-spacing: .3px;
  font-size: 16px;
}

.button-line:not([class*="ui-size-"]) .icon {
  margin-left: 15px;
  font-size: 20px;
}

.button-line.ui-size-small {
  font-size: 14px;
}

.button-line.ui-size-small .icon {
  font-size: 18px;
  margin-left: 10px;
}

.button-line:not([class*="ui-color-"]) {
  color: #fff;
}

.button-line:not([class*="ui-color-"]) .icon {
  color: #fff;
}

.button-line.ui-color-dark {
  color: #5e788f;
}

.button-line.ui-color-dark .icon {
  color: #5e788f;
}

.button-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff;
  font-family: inherit;
  border-radius: 11px;
  -webkit-box-shadow: 0px 6px 15px 2px rgba(94, 120, 143, 0.1);
  box-shadow: 0px 6px 15px 2px rgba(94, 120, 143, 0.1);
  padding-right: 5px;
}

.button-icon:not([class*="ui-size-"]) {
  height: 55px;
  letter-spacing: .3px;
  padding-left: 25px;
}

.button-icon:not([class*="ui-size-"]) .button-icon__text {
  font-size: 14px;
  line-height: 1.4;
}

.button-icon:not([class*="ui-size-"]) .icon {
  width: 44px;
  height: 44px;
  font-size: 22px;
  margin-left: 25px;
}

.button-icon.ui-size-small {
  height: 45px;
  letter-spacing: .1px;
}
.button-icon .color-dark-blue{
  background-color: var(--main-color) !important;
  -webkit-box-shadow: 0 5px 15px 0 rgba(254,126,0,.2) !important;
  box-shadow: 0 5px 15px 0 rgba(254,126,0,.2) !important;
}
.button-icon:hover .color-dark-blue{
  background-color: var(--main-color-dark) !important;
}
@media (min-width: 480px) {
  .button-icon.ui-size-small {
      padding-left: 20px;
  }
}

@media (max-width: 479px) {
  .button-icon.ui-size-small {
      padding-left: 15px;
  }
}

.button-icon.ui-size-small .button-icon__text {
  font-size: 13px;
  line-height: 1.4;
}

.button-icon.ui-size-small .icon {
  width: 35px;
  height: 35px;
  font-size: 20px;
}

@media (min-width: 480px) {
  .button-icon.ui-size-small .icon {
      margin-left: 20px;
  }
}

@media (max-width: 479px) {
  .button-icon.ui-size-small .icon {
      margin-left: 10px;
  }
}

.button-icon.ui-size-small-1 {
  height: 40px;
  letter-spacing: .1px;
  padding-left: 20px;
}

.button-icon.ui-size-small-1 .button-icon__text {
  font-size: 12px;
}

.button-icon.ui-size-small-1 .icon {
  width: 30px;
  height: 30px;
  font-size: 16px;
  margin-left: 17px;
}

.button-icon:not([class*="ui-color-"]) .button-icon__text {
  color: #455f76;
}

.button-icon:not([class*="ui-color-"]) .icon {
  background-color: var(--color-three);
  -webkit-box-shadow: 0 5px 15px 0 rgba(254, 126, 0, 0.2);
  box-shadow: 0 5px 15px 0 rgba(254, 126, 0, 0.2);
}

.button-icon.ui-color-1 .button-icon__text {
  color: var(--color-three);
}

.button-icon.ui-color-1 .icon {
  background-color: var(--color-three);
  -webkit-box-shadow: 0 5px 15px 0 rgba(254, 126, 0, 0.2);
  box-shadow: 0 5px 15px 0 rgba(254, 126, 0, 0.2);
}

.button-icon__text {
  font-weight: 900;
  text-transform: uppercase;
  text-align: left;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.button-icon .icon {
  border-radius: 11px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.button-icon .icon.is-live {
  -webkit-animation: backgroundToggle ease-in-out .5s infinite alternate;
  animation: backgroundToggle ease-in-out .5s infinite alternate;
}

.button-icon:hover .icon {
  background: var(--main-color);
  -webkit-box-shadow: 0 5px 15px 0 rgba(3, 94, 113, 0.35);
  box-shadow: 0 5px 15px 0 rgba(3, 94, 113, 0.35);
}
.gallery.ui-gap-1 ul li {
  margin-bottom: 20px;
}


.gallery-card a {
  display: block;
  position: relative;
}

.gallery-card a:hover .gallery-photo img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.gallery-photo {
  overflow: hidden;
  height: 149px;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 10px rgba(94, 120, 143, 0.2);
  box-shadow: 0 5px 10px rgba(94, 120, 143, 0.2);
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 1s -webkit-transform cubic-bezier(0, 0, 0.2, 1);
  transition: 1s -webkit-transform cubic-bezier(0, 0, 0.2, 1);
  -o-transition: 1s transform cubic-bezier(0, 0, 0.2, 1);
  transition: 1s transform cubic-bezier(0, 0, 0.2, 1);
  transition: 1s transform cubic-bezier(0, 0, 0.2, 1), 1s -webkit-transform cubic-bezier(0, 0, 0.2, 1);
}

.gallery-btn {
  background-color: #7a93a9;
  width: 100%;
  height: 140px;
  border-radius: 15px;
  color: #fff;
  line-height: 1;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  display: none;
}

.gallery-btn:hover {
  background-color: #5e788f;
}

.gallery-btn .number {
  font-size: 60px;
  font-weight: 900;
}

.gallery-btn .text {
  font-size: 13px;
  text-transform: uppercase;
  margin-top: 5px;
  opacity: .7;
}

.gallery.ui-gap-1 ul.js-more-list li:not(.ui-not) {
  display: none;
}

.gallery.ui-gap-1 ul.js-more-list li.is-visible:not(.ui-not),
.gallery.ui-gap-1 ul.js-more-list.is-expanded li:not(.ui-not) {
  display: block;
}

.gallery.ui-gap-1 ul.js-more-list .gallery-btn.is-visible {
  display: block;
}

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

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

.not-content {
  width: 100%;
  text-align: center;
  color: #7a93a9;
  font-weight: 600;
  padding: 40px 20px;
}

/* Foto / video galeri - ipekyolu.bel.tr */
.ui-gutter-15 {
  margin-left: -15px;
  margin-right: -15px;
}

.ui-gutter-15 > .col,
.ui-gutter-15 > [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

.list-multimedia.ui-gap-1 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-multimedia.ui-gap-1 ul li {
  margin-bottom: 30px;
}

.list-multimedia__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(94, 120, 143, 0.12);
  box-shadow: 0 5px 15px rgba(94, 120, 143, 0.12);
}

.list-multimedia__item:hover .list-multimedia__photo img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.list-multimedia__item:hover .list-multimedia__description .title {
  color: var(--color-three);
}

.list-multimedia__left {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45%;
  flex: 0 0 45%;
  max-width: 45%;
  z-index: 1;
}

.list-multimedia__left::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#02424f));
  background-image: -o-linear-gradient(transparent, #02424f);
  background-image: linear-gradient(transparent, #02424f);
  height: 100%;
  border-bottom-left-radius: 15px;
}

.list-multimedia__photo {
  height: 150px;
  overflow: hidden;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.list-multimedia__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 1s -webkit-transform cubic-bezier(0, 0, 0.2, 1);
  transition: 1s -webkit-transform cubic-bezier(0, 0, 0.2, 1);
  -o-transition: 1s transform cubic-bezier(0, 0, 0.2, 1);
  transition: 1s transform cubic-bezier(0, 0, 0.2, 1);
  transition: 1s transform cubic-bezier(0, 0, 0.2, 1), 1s -webkit-transform cubic-bezier(0, 0, 0.2, 1);
}

.list-multimedia__total {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 2;
  background-color: var(--color-three);
  border-radius: 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  line-height: 1;
  padding: 5px 7px;
}

.list-multimedia__total .icon {
  font-size: 12px;
  margin-right: 5px;
}

.list-multimedia__total .text {
  font-weight: 900;
  font-size: 12px;
  letter-spacing: -0.5px;
}

.list-multimedia__description {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 45%);
  flex: 0 0 calc(100% - 45%);
  max-width: calc(100% - 45%);
  background-color: #fff;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  padding-left: 23px;
  padding-right: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.list-multimedia__description .title {
  color: #455f76;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.list-multimedia__description .date {
  color: rgba(122, 147, 169, 0.5);
  font-size: 12px;
  margin-top: 6px;
}

.list-multimedia__description .date .icon {
  font-size: 12px;
  margin-right: 5px;
}

.card-v1 a {
  display: block;
  position: relative;
  border-radius: 11px;
  padding: 11px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px rgba(94, 120, 143, 0.15);
  box-shadow: 0 0 20px rgba(94, 120, 143, 0.15);
}

@media (max-width: 479px) {
  .card-v1 a {
    padding: 6px;
  }
}

.card-v1 a:hover .card-v1-body::before {
  opacity: 0;
  visibility: hidden;
}

.card-v1 a:hover .card-v1-body::after {
  opacity: .85;
  visibility: visible;
}

.card-v1 a:hover .card-v1-body > .icon {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.card-v1-item {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.card-v1-cover {
  height: 215px;
  overflow: hidden;
}

@media (max-width: 479px) {
  .card-v1-cover {
    height: 150px;
  }
}

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

.card-v1-body {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
}

@media (max-width: 479px) {
  .card-v1-body {
    padding: 15px 15px 10px 15px;
  }
}

.card-v1-body::before,
.card-v1-body::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  will-change: opacity;
}

.card-v1-body::before {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#023844));
  background-image: -o-linear-gradient(transparent, #023844);
  background-image: linear-gradient(transparent, #023844);
  opacity: .8;
}

.card-v1-body::after {
  background-color: rgba(254, 126, 0, 0.7);
  opacity: 0;
  visibility: hidden;
}

.card-v1-body .date {
  font-size: 12px;
  margin-top: 7px;
}

.card-v1-body .date .icon {
  font-size: 12px;
}

.card-v1-body > .icon {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  right: 15px;
  bottom: 15px;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 99px;
  border: 1px solid #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

@media (max-width: 479px) {
  .card-v1-body > .icon {
    display: none;
  }
}

.card-v1-footer {
  height: 55px;
  padding: 0 6px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.card-v1-footer .icon {
  font-size: 36px;
  width: 25px;
  opacity: .3;
  margin-right: 13px;
  color: #7a93a9;
}

.card-v1-footer .title {
  color: var(--main-color);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.th-pagination {
  margin-top: 30px;
}

.th-pagination ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.th-pagination ul li:not(:last-child) {
  margin-right: 10px;
}

.th-pagination ul li a {
  width: 45px;
  height: 45px;
  border-radius: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #7a93a9;
  font-weight: 900;
  font-size: 16px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.th-pagination ul li a.active,
.th-pagination ul li a:hover {
  background-color: #035e71;
  color: #fff;
}

@media (max-width: 575px) {
  .list-multimedia__left,
  .list-multimedia__description {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .list-multimedia__photo {
    border-radius: 15px 15px 0 0;
  }

  .list-multimedia__left::after {
    border-bottom-left-radius: 0;
  }

  .list-multimedia__description {
    border-radius: 0 0 15px 15px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}