#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background: radial-gradient(60.73% 60.73% at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.44) 100%), #e30613;
}
#preloader img {
  max-width: 80%;
  filter: brightness(0) invert(1);
}
@media (width >= 48rem) {
  #preloader img {
    max-width: 50%;
  }
}

.pre-hidden {
  display: none !important;
}

@keyframes bounceOutRight {
  0% {
    transform: translateX(0px);
    opacity: 1;
  }
  20% {
    transform: translateX(-20px);
  }
  80% {
    transform: translateX(100vw);
    opacity: 0.7;
  }
  100% {
    transform: translateX(120vw);
    opacity: 0;
  }
}
@keyframes bounceInLeft {
  0% {
    transform: translateX(-100vw);
    opacity: 0;
  }
  60% {
    transform: translateX(20px);
    opacity: 0.7;
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes preloaderFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.preloader-fade-out {
  animation: preloaderFadeOut 1s forwards;
}

.motto-animate-out {
  animation: bounceOutRight 1s forwards;
}

.motto-animate-in {
  animation: bounceInLeft 1s forwards;
}

:root {
  --primary-color: #e30613;
  --secondary-color: #0d3e78;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-border: #dde1e6;
  --font-bigcity: "urw-form", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

body {
  position: relative;
  margin: 0;
  font-family: var(--font-bigcity);
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.sidebar-open, body.search-open {
  overflow: hidden;
}

.main-content {
  flex: 1;
  padding: 80px 0;
}
@media (width >= 80rem) {
  .main-content {
    padding: 120px 0;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("/images/pattern.png");
  background-attachment: fixed;
  background-size: 25%;
  background-repeat: repeat;
  background-position: center;
  opacity: 0.45;
  z-index: -1;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
.u-h1 {
  margin: 0;
  font-family: var(--font-bigcity);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
}
@media (width >= 48rem) {
  h1,
  .u-h1 {
    font-size: 44px;
  }
}
@media (width >= 80rem) {
  h1,
  .u-h1 {
    font-size: 56px;
  }
}

h2,
.u-h2 {
  margin: 0;
  font-family: var(--font-bigcity);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.25;
}
@media (width >= 48rem) {
  h2,
  .u-h2 {
    font-size: 32px;
  }
}
@media (width >= 80rem) {
  h2,
  .u-h2 {
    font-size: 36px;
  }
}

h3,
.u-h3 {
  margin: 0;
  font-family: var(--font-bigcity);
  font-size: 18px;
  line-height: 1.3;
}
@media (width >= 48rem) {
  h3,
  .u-h3 {
    font-size: 20px;
  }
}
@media (width >= 80rem) {
  h3,
  .u-h3 {
    font-size: 24px;
  }
}

p,
.u-body {
  font-family: var(--font-bigcity);
  font-size: 14px;
  line-height: 1.5;
}
@media (width >= 48rem) {
  p,
  .u-body {
    font-size: 15.5px;
  }
}
@media (width >= 80rem) {
  p,
  .u-body {
    font-size: 17px;
  }
}

.meta,
.u-meta {
  font-family: var(--font-bigcity);
  font-weight: 500;
  font-size: 12.5px;
  line-height: 1.5;
}
@media (width >= 48rem) {
  .meta,
  .u-meta {
    font-size: 13px;
  }
}
@media (width >= 80rem) {
  .meta,
  .u-meta {
    font-size: 14px;
  }
}

button,
.btn,
.u-button {
  font-family: var(--font-bigcity);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.1;
  border: none;
  cursor: pointer;
}
@media (width >= 48rem) {
  button,
  .btn,
  .u-button {
    font-size: 15px;
  }
}
@media (width >= 80rem) {
  button,
  .btn,
  .u-button {
    font-size: 16px;
  }
}

footer,
footer p,
.u-footer {
  font-family: var(--font-bigcity);
  font-size: 11.5px;
  line-height: 1.1;
  text-transform: capitalize;
}
@media (width >= 48rem) {
  footer,
  footer p,
  .u-footer {
    font-size: 12px;
  }
}
@media (width >= 80rem) {
  footer,
  footer p,
  .u-footer {
    font-size: 13px;
  }
}

.container {
  padding: 0 16px;
  margin: 0 auto;
}
@media (width >= 48rem) {
  .container {
    padding: 0 64px;
  }
}
@media (width >= 80rem) {
  .container {
    padding: 0 120px;
  }
}

input::placeholder {
  font-family: var(--font-bigcity);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.3s ease;
  background-color: white;
}
@media (width >= 80rem) {
  .site-header {
    position: absolute;
    background-color: transparent;
  }
}
.site-header.home-header {
  position: absolute;
  background-color: transparent;
}
.site-header.home-header .hamburger-line {
  background-color: var(--color-white) !important;
}
.site-header.home-header .mobile-search-toggle img {
  filter: brightness(0) invert(1);
}

.top-bar {
  background-color: transparent;
  color: white;
  transition: background-color 0.3s ease;
}
@media (width >= 48rem) {
  .top-bar {
    align-items: center;
    display: flex;
  }
}
@media (width >= 80rem) {
  .top-bar {
    background-color: transparent;
  }
}
.top-bar .top-nav-items {
  justify-content: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
.top-bar .top-nav-items .item-left span {
  font-family: Poppins;
  font-weight: 300;
}
.top-bar .top-nav-items .item-left,
.top-bar .top-nav-items .item-right {
  display: none;
}
.top-bar .top-nav-items .item-right a {
  width: 24px;
  height: 24px;
}
@media (width >= 48rem) {
  .top-bar .top-nav-items {
    justify-content: space-between;
  }
  .top-bar .top-nav-items .item-left,
  .top-bar .top-nav-items .item-right {
    display: flex;
  }
}
.top-bar .top-nav-items .item-center {
  padding: 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-bar .top-nav-items .item-center img {
  height: 24px;
}
@media (width >= 48rem) {
  .top-bar .top-nav-items .item-center img {
    height: 30px;
  }
}
.top-bar .top-nav-items .item-right {
  gap: 15px;
}
.top-bar .top-nav-items .item-right img {
  max-width: 24px;
  width: 100%;
}
.top-bar .top-nav-items .item-left,
.top-bar .top-nav-items .item-right {
  flex: 1;
  align-items: center;
}
.top-bar .top-nav-items .item-left {
  justify-content: flex-start;
}
.top-bar .top-nav-items .item-right {
  justify-content: flex-end;
}

.motto-icon {
  width: 24px;
  height: 24px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

header {
  background-color: transparent;
  transition: background-color 0.3s ease;
}
header .header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 81px;
}
header .header-top .mobile_ataturk-image-container {
  height: inherit;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
header .header-top .mobile_ataturk-image-container img {
  height: 60%;
  width: auto;
  display: block;
}
@media (width >= 80rem) {
  header .header-top .mobile_ataturk-image-container {
    display: none;
  }
}
header .header-top .logo-container {
  height: inherit;
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
header .header-top .logo-container a {
  height: 65%;
  display: flex;
  align-items: center;
}
@media (width >= 80rem) {
  header .header-top .logo-container {
    flex: 0;
    justify-content: flex-start;
  }
}
@media (width >= 48rem) and (width < 80rem) {
  header .header-top .logo-container {
    display: none;
  }
}
header .header-top .tablet_logo-container {
  display: none;
}
@media (width >= 48rem) and (width < 80rem) {
  header .header-top .tablet_logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    height: inherit;
  }
  header .header-top .tablet_logo-container a {
    height: 60%;
    width: auto;
    display: flex;
    align-items: center;
  }
}
header .header-top .header-president-wrap {
  display: block;
  height: 65%;
  max-height: 50px;
  position: relative;
  flex: 0 0 auto;
  order: -1;
}
@media (width >= 48rem) and (width < 80rem) {
  header .header-top .header-president-wrap {
    height: 60%;
  }
}
@media (width >= 80rem) {
  header .header-top .header-president-wrap {
    margin-left: 0;
  }
}
header .header-top .header-president-image {
  display: block;
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: center bottom;
}
header .header-top .header-president-ribbon {
  position: absolute;
  right: -10px;
  bottom: -10px;
  z-index: 1;
  width: 60%;
  min-width: 18px;
  max-width: 50px;
  height: auto;
  filter: drop-shadow(0 0 1px #fff) drop-shadow(0 0 4px rgba(255, 255, 255, 0.85));
  pointer-events: none;
}
header .header-top .mobile_search-container {
  flex: 1;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
@media (width >= 80rem) {
  header .header-top .mobile_search-container {
    display: none;
  }
}
header .header-top .mobile-search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 1001;
}
@media (width >= 80rem) {
  header .header-top .mobile-search-toggle {
    display: none;
  }
}
header .header-top .mobile-search-toggle img {
  display: block;
  width: 18px;
  height: 18px;
  transition: filter 0.2s ease;
}
header .header-top .header-searchbox {
  box-sizing: border-box;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 632px;
  max-width: 632px;
  height: 32px;
  padding: 8px 21px;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.23);
  border-radius: 8px;
  flex: 1 1 632px;
}
@media (width >= 80rem) {
  header .header-top .header-searchbox {
    display: flex;
    margin: 0 32px;
  }
}
header .header-top .header-searchbox input {
  min-width: 0;
  width: 100%;
  height: 14px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--color-black);
  font-family: var(--font-bigcity);
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}
header .header-top .header-searchbox input::placeholder {
  color: rgba(0, 0, 0, 0.3);
  opacity: 1;
}
header .header-top .header-searchbox input::-webkit-search-decoration, header .header-top .header-searchbox input::-webkit-search-cancel-button {
  display: none;
}
header .header-top .header-searchbox button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  padding: 0;
  color: var(--color-black);
  background: transparent;
  border: 0;
  cursor: pointer;
}
header .header-top .header-searchbox button img {
  display: block;
  width: 16px;
  height: 16px;
}
header .header-top .mobile-search-overlay {
  box-sizing: border-box;
  position: fixed;
  top: var(--header-height, 81px);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height, 81px));
  padding: 24px;
  background-color: rgba(0, 0, 0, 0.48);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
@media (width >= 80rem) {
  header .header-top .mobile-search-overlay {
    display: none !important;
  }
}
header .header-top .mobile-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
header .header-top .mobile-search-overlay .mobile-search-form {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  height: 44px;
  padding: 10px 16px;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.23);
  border-radius: 8px;
}
header .header-top .mobile-search-overlay .mobile-search-form input {
  min-width: 0;
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--color-black);
  font-family: var(--font-bigcity);
  font-size: 14px;
  line-height: 18px;
}
header .header-top .mobile-search-overlay .mobile-search-form input::placeholder {
  color: rgba(0, 0, 0, 0.3);
  opacity: 1;
}
header .header-top .mobile-search-overlay .mobile-search-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
header .header-top .mobile-search-overlay .mobile-search-form button img {
  display: block;
  width: 18px;
  height: 18px;
}
header .header-top .hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
@media (width >= 80rem) {
  header .header-top .hamburger-btn {
    display: none;
  }
}
header .header-top .hamburger-btn .hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-black);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
header .header-top .hamburger-btn.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
header .header-top .hamburger-btn.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
header .header-top .hamburger-btn.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
header .header-top .mobile-sidebar {
  position: fixed;
  top: var(--header-height, 81px);
  right: -100%;
  width: 100%;
  height: calc(100vh - var(--header-height, 81px));
  background-color: var(--color-white);
  z-index: 998;
  transition: right 0.3s ease;
  overflow-y: auto;
}
@media (width >= 80rem) {
  header .header-top .mobile-sidebar {
    display: none !important;
  }
}
header .header-top .mobile-sidebar.is-open {
  right: 0;
}
header .header-top .mobile-sidebar .sidebar-content {
  padding: 20px 0;
  min-height: 100%;
}
header .header-top .mobile-sidebar .sidebar-content .mobile-nav .mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
header .header-top .mobile-sidebar .sidebar-content .mobile-nav .mobile-nav-item {
  border-bottom: 1px solid #eee;
  padding: 8px 0;
}
header .header-top .mobile-sidebar .sidebar-content .mobile-nav .mobile-nav-item .mobile-link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 12px 0;
  color: var(--color-black);
  font-family: var(--font-bigcity);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 24px;
}
header .header-top .mobile-sidebar .sidebar-content .mobile-nav .accordion-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 12px 0;
  color: var(--color-black);
  font-family: var(--font-bigcity);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 24px;
}
header .header-top .mobile-sidebar .sidebar-content .mobile-nav .accordion-toggle::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid var(--color-black);
  transition: transform 0.25s ease, border-top-color 0.2s ease;
}
header .header-top .mobile-sidebar .sidebar-content .mobile-nav .accordion-panel {
  transition: max-height 0.25s ease;
}
header .header-top .mobile-sidebar .sidebar-content .mobile-nav .accordion-links {
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0 0 0 8px;
}
header .header-top .mobile-sidebar .sidebar-content .mobile-nav .accordion-links li {
  margin: 6px 0;
}
header .header-top .mobile-sidebar .sidebar-content .mobile-nav .accordion-links a {
  color: #333;
  font-family: var(--font-bigcity);
  font-size: 16px;
  font-style: italic;
}
header .header-top .mobile-sidebar .sidebar-content .mobile-nav .mobile-nav-item.is-open .accordion-toggle::after {
  transform: translateY(-50%) rotate(180deg);
  border-top-color: var(--primary-color);
}
header .header-top .sidebar-overlay {
  position: fixed;
  top: var(--header-height, 81px);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height, 81px));
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (width >= 80rem) {
  header .header-top .sidebar-overlay {
    display: none !important;
  }
}
header .header-top .sidebar-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
header .header-top .info-container {
  display: none;
}
@media (width >= 80rem) {
  header .header-top .info-container {
    display: flex;
    justify-content: flex-end;
  }
  header .header-top .info-container .info-item {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 15px;
  }
  header .header-top .info-container .info-item .cozum-icon {
    height: 60px;
  }
  header .header-top .info-container .info-item .ataturk-icon {
    height: 60px;
  }
}
header .header-bottom {
  display: none;
  position: relative;
  border-top: 1px solid var(--color-border);
}
@media (width >= 80rem) {
  header .header-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}
header .header-bottom .nav-bar {
  width: 100%;
}
header .header-bottom .nav-bar > .nav-items,
header .header-bottom .nav-bar .nav-items {
  display: flex;
}
header .header-bottom .nav-bar > .nav-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
header .header-bottom .nav-bar .dropdown-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
header .header-bottom .nav-bar .nav-items {
  justify-content: space-between;
}
header .header-bottom .nav-bar .nav-items .nav-item {
  position: static;
}
header .header-bottom .nav-bar .nav-items .nav-item .nav-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 11%;
  text-transform: capitalize;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  cursor: pointer;
}
header .header-bottom .nav-bar .nav-items .nav-item .nav-link svg {
  transition: transform 0.3s ease;
  stroke: var(--color-black);
}
header .header-bottom .nav-bar .nav-items .nav-item .nav-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: var(--primary-color);
  color: var(--color-white);
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}
header .header-bottom .nav-bar .nav-items .nav-item .nav-button:hover {
  background-color: rgb(204.3, 5.4, 17.1);
  color: var(--color-white);
  color: var(--color-white);
}
header .header-bottom .nav-bar .nav-items .nav-item.drop.is-open .nav-link {
  color: red;
}
header .header-bottom .nav-bar .nav-items .nav-item.drop.is-open .nav-link svg {
  transform: rotate(-90deg);
}
header .header-bottom .nav-bar .nav-items .nav-item.drop .dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  transform: translate(-50%, 10px);
  width: 90vw;
  max-width: 90vw;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  border-radius: 16px;
  overflow: hidden;
  padding: 8px 16px;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
header .header-bottom .nav-bar .nav-items .nav-item.drop .dropdown-menu::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--color-white);
  border-left: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
  top: -10px;
  left: var(--dropdown-pointer-position, 50%);
  transform: translateX(-50%) rotate(45deg);
  box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.05);
}
header .header-bottom .nav-bar .nav-items .nav-item.drop .dropdown-menu .dropdown-column {
  display: flex;
  flex-direction: column;
  padding: 10px;
  align-items: flex-start;
  justify-content: flex-start;
}
header .header-bottom .nav-bar .nav-items .nav-item.drop .dropdown-menu .dropdown-column > ul {
  display: flex;
  flex-direction: column;
  height: 100%;
}
header .header-bottom .nav-bar .nav-items .nav-item.drop .dropdown-menu .dropdown-column > ul > li {
  width: 100%;
}
header .header-bottom .nav-bar .nav-items .nav-item.drop .dropdown-menu .dropdown-column .dropdown-image {
  max-height: 400px;
  max-width: 100%;
  border-radius: 8px;
  object-fit: cover;
  align-self: center;
  margin: auto 0;
}
header .header-bottom .nav-bar .nav-items .nav-item.drop .dropdown-menu .dropdown-column .column-title {
  font-family: var(--font-bigcity);
  color: var(--primary-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  font-variant: all-small-caps;
  margin-bottom: 12px;
}
header .header-bottom .nav-bar .nav-items .nav-item.drop .dropdown-menu .dropdown-column li {
  margin: 6px 0;
}
header .header-bottom .nav-bar .nav-items .nav-item.drop .dropdown-menu .dropdown-column li .baskan-imza {
  margin-top: 12px;
  height: auto;
  align-self: center;
}
header .header-bottom .nav-bar .nav-items .nav-item.drop .dropdown-menu .dropdown-column .dropdown-link {
  color: var(--color-black);
  font-family: var(--font-bigcity);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  font-variant: all-small-caps;
  display: inline-block;
  transition: transform 0.2s ease, font-weight 0.2s ease, padding 0.2s ease;
}
header .header-bottom .nav-bar .nav-items .nav-item.drop .dropdown-menu .dropdown-column .dropdown-link:hover {
  font-weight: 600;
  padding-left: 8px;
}
header .header-bottom .nav-bar .nav-items .nav-item.drop.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
header .logo {
  max-height: 50px;
}

main {
  flex: 1;
}

.dropdown-motto {
  width: 150px;
}

body:not(.page-home) .site-header {
  position: fixed;
  background-color: white;
}
body:not(.page-home) .top-bar {
  background-color: var(--primary-color);
}
body:not(.page-home) header {
  background-color: white;
}
body:not(.page-home) header .logo-white,
body:not(.page-home) header .cozum-icon-white {
  display: none;
}
@media (width >= 80rem) {
  body:not(.page-home) header .header-bottom {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
body:not(.page-home) .main-content {
  margin-top: var(--header-height, 120px);
  padding: 80px 0;
}
@media (width >= 80rem) {
  body:not(.page-home) .main-content {
    padding: 120px 0;
  }
}
body:not(.page-home) .main-content .sidebar {
  display: none;
  position: sticky;
}
@media (width >= 80rem) {
  body:not(.page-home) .main-content .sidebar {
    display: inline;
    flex-direction: column;
    top: calc(var(--header-height, 120px) + 20px);
    align-self: flex-start;
  }
}
body:not(.page-home) .main-content .sidebar .sidebar-div {
  background-color: var(--color-white);
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 250px;
}
@media (width >= 80rem) {
  body:not(.page-home) .main-content .sidebar .sidebar-div {
    padding: 24px;
  }
}
body:not(.page-home) .main-content .sidebar .sidebar-div:not(:last-child) {
  margin-bottom: 12px;
}
@media (width >= 80rem) {
  body:not(.page-home) .main-content .sidebar .sidebar-div:not(:last-child) {
    margin-bottom: 24px;
  }
}
body:not(.page-home) .main-content .sidebar .sidebar-div h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}
@media (width >= 80rem) {
  body:not(.page-home) .main-content .sidebar .sidebar-div h3 {
    font-size: 20px;
  }
}
body:not(.page-home) .main-content .sidebar .sidebar-div h3::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 4px;
}
body:not(.page-home) .main-content .sidebar .sidebar-div .sidebar-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
body:not(.page-home) .main-content .sidebar .sidebar-div .sidebar-nav-list .sidebar-nav-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}
body:not(.page-home) .main-content .sidebar .sidebar-div .sidebar-nav-list .sidebar-nav-item .sidebar-link {
  color: var(--color-black);
  font-family: var(--font-bigcity);
  font-size: 14px;
}
body:not(.page-home) .main-content .sidebar .sidebar-div .sidebar-nav-list .sidebar-nav-item .sidebar-link.active {
  font-weight: 600;
  color: var(--primary-color);
}
body:not(.page-home) .main-content .sidebar .sidebar-div .quick-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body:not(.page-home) .main-content .sidebar .sidebar-div .quick-links-list .quick-link-item .quick-link {
  display: flex;
  align-items: center;
  gap: 8px;
}
body:not(.page-home) .main-content .sidebar .sidebar-div .quick-links-list .quick-link-item .quick-link .quick-link-icon-wrapper {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}
body:not(.page-home) .main-content .sidebar .sidebar-div .quick-links-list .quick-link-item .quick-link .quick-link-text {
  display: flex;
  flex-direction: column;
}
body:not(.page-home) .main-content .sidebar .sidebar-div .quick-links-list .quick-link-item .quick-link .quick-link-text .quick-link-title {
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  text-transform: capitalize;
}
body:not(.page-home) .main-content .sidebar .sidebar-div .quick-links-list .quick-link-item .quick-link .quick-link-text .quick-link-subtitle {
  font-style: Italic;
  font-size: 12px;
  line-height: 20px;
  text-transform: capitalize;
}
body:not(.page-home) .main-content .container {
  display: flex;
  gap: 12px;
}
@media (width >= 80rem) {
  body:not(.page-home) .main-content .container {
    gap: 24px;
  }
}
body:not(.page-home) .main-content .container.container-block {
  display: block;
}

footer {
  position: relative;
  background-color: var(--primary-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backface-visibility: hidden;
  padding: 24px;
  color: var(--color-white);
  box-shadow: 0px -9px 10.2px 0px rgba(0, 0, 0, 0.25);
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  overflow: hidden;
}
@media (width >= 80rem) {
  footer {
    padding: 80px 80px 20px 80px;
  }
}
footer .footer-bg {
  position: absolute;
  inset: 0;
  background-image: url("/images/footer_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}
footer .footer-content {
  position: relative;
  z-index: 1;
  width: 100%;
  gap: 24px;
  display: flex;
  flex-direction: column;
}
@media (width >= 80rem) {
  footer .footer-content {
    flex-direction: row;
    align-items: flex-start;
  }
}
footer .footer-content .footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (width >= 48rem) {
  footer .footer-content .footer-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
footer .footer-content .footer-container .footer-links-title {
  font-weight: 700;
  font-style: Bold;
  font-size: 15px;
  line-height: 160%;
  vertical-align: middle;
  text-transform: uppercase;
  margin-bottom: 12px;
}
footer .footer-content .footer-container .footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (width >= 48rem) {
  footer .footer-content .footer-container .footer-links-list {
    align-items: flex-start;
  }
}
footer .footer-content .footer-container .footer-links-list li a {
  color: var(--color-white);
  font-style: Normal;
  font-size: 14px;
  line-height: 160%;
}
footer .footer-content .footer-links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (width >= 48rem) {
  footer .footer-content .footer-links-wrapper {
    flex-direction: row;
    gap: 48px;
  }
}
@media (width >= 80rem) {
  footer .footer-content .footer-links-wrapper {
    flex: 1 1 0;
  }
}
footer .footer-content .footer-links-wrapper .footer-links-container {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (width >= 48rem) {
  footer .footer-content .footer-links-wrapper .footer-links-container {
    align-items: flex-start;
  }
}
footer .footer-content .footer-container.info-container {
  width: 100%;
}
@media (width >= 80rem) {
  footer .footer-content .footer-container.info-container {
    flex: 1 1 0;
    flex-direction: column !important;
  }
}
footer .footer-content .footer-container.info-container p {
  margin: 0;
  margin: 8px 0;
}
footer .footer-content .footer-container.info-container .social-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .footer-content .footer-container.info-container .social-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}
footer .footer-content .footer-container.info-container .social-links a {
  margin: 0 8px;
}
footer .footer-content .footer-container.info-container .social-links a img {
  width: 24px;
  height: 24px;
}
footer .footer-content .footer-container.info-container .contact-info {
  text-align: center;
  width: 100%;
}
footer .footer-content .footer-container.info-container .contact-info a {
  text-decoration: underline;
}
@media (width >= 48rem) {
  footer .footer-content .footer-container.info-container .contact-info {
    text-align: left;
  }
}
footer .footer-text {
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 13px;
  line-height: 27.3px;
  text-align: center;
  vertical-align: middle;
  border-top: 1px solid rgba(255, 255, 255, 0.4196078431);
  padding-top: 12px;
}

.library-status.disabled {
  display: none !important;
}

@media (width >= 80rem) {
  body.page-home:not(.scrolled) .header-searchbox {
    display: none;
  }
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 1vw, 45px);
  bottom: clamp(16px, 1vw, 45px);
  z-index: 99;
  display: block;
  width: clamp(45px, 3vw, 92px);
  min-width: 45px;
  max-width: 92px;
  height: auto;
}

.page-home .section-header {
  margin-bottom: 40px;
}
@media (width >= 48rem) {
  .page-home .section-header {
    display: flex;
    flex-direction: row;
  }
}
.page-home .section-header .section-title {
  font-weight: 500;
  font-size: 30px;
  line-height: 125%;
  text-align: center;
  margin: 0;
}
@media (width >= 48rem) {
  .page-home .section-header .section-title {
    font-size: 32px;
    text-align: left;
  }
}
.page-home .section-header .section-divider {
  width: 100%;
  height: 5px;
  background-color: var(--primary-color);
  margin-top: 8px;
}
@media (width >= 48rem) {
  .page-home .section-header .section-divider {
    width: 300px;
  }
}
.page-home .section-header .section-subtitle {
  font-size: 18px;
  line-height: 130%;
  text-align: center;
}
@media (width >= 48rem) {
  .page-home .section-header .section-subtitle {
    text-align: left;
  }
}
@media (width >= 48rem) {
  .page-home .section-header .section-info {
    width: fit-content;
  }
}
.page-home .section-header .navigation-container {
  display: none;
  justify-content: flex-end;
  align-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-left: auto;
}
@media (width >= 48rem) {
  .page-home .section-header .navigation-container {
    display: flex;
  }
}
.page-home .section-header .navigation-container .swiper-button-prev-news,
.page-home .section-header .navigation-container .swiper-button-next-news {
  flex-shrink: 0;
  background-color: var(--primary-color);
  width: 30px;
  height: 30px;
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease;
}
.page-home .section-header .navigation-container .swiper-button-prev-news:hover,
.page-home .section-header .navigation-container .swiper-button-next-news:hover {
  color: var(--color-black);
}
.page-home .section-header .navigation-container .swiper-button-prev-news:active,
.page-home .section-header .navigation-container .swiper-button-next-news:active {
  transform: scale(0.95);
}
.page-home .section-header .navigation-container .swiper-button-prev-news.swiper-button-disabled,
.page-home .section-header .navigation-container .swiper-button-next-news.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.page-home .section-header .navigation-container .swiper-button-prev-news.swiper-button-disabled:hover,
.page-home .section-header .navigation-container .swiper-button-next-news.swiper-button-disabled:hover {
  transform: none;
}
.page-home .section-header .navigation-container .swiper-button-prev-news svg,
.page-home .section-header .navigation-container .swiper-button-next-news svg {
  width: 30px;
  height: 30px;
}
.page-home .logo-scroll {
  display: none;
}
.page-home.scrolled .site-header {
  position: fixed;
  background-color: white;
}
.page-home.scrolled .top-bar {
  background-color: var(--primary-color);
}
.page-home.scrolled header {
  background-color: white;
}
.page-home.scrolled header .logo-white,
.page-home.scrolled header .cozum-icon-white {
  display: none;
}
.page-home.scrolled header .logo-scroll {
  display: block;
}
@media (width >= 80rem) {
  .page-home.scrolled header .header-bottom {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.page-home.scrolled header .hamburger-line {
  background-color: var(--color-black) !important;
}
.page-home.scrolled header .mobile-search-toggle img {
  filter: none;
}
.page-home .hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 30px 0;
}
@media (min-width: 64rem) {
  .page-home .hero-section {
    height: 100svh;
  }
}
.page-home .hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.page-home .hero-overlay {
  background-color: rgba(11, 11, 11, 0.77);
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.page-home .hero-overlay-content {
  position: relative;
  z-index: 2;
  height: 100%;
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "president" "content";
  align-items: end;
  justify-items: center;
  gap: 18px;
  padding-top: var(--header-height, 120px);
  padding-bottom: 24px;
  box-sizing: border-box;
}
@media (min-width: 48rem) {
  .page-home .hero-overlay-content {
    gap: 22px;
    padding-bottom: 32px;
  }
}
@media (min-width: 64rem) {
  .page-home .hero-overlay-content {
    grid-template-columns: minmax(320px, 1fr) max-content;
    grid-template-areas: "content president";
    align-items: center;
    gap: clamp(32px, 6vw, 96px);
    padding-top: 0;
    padding-bottom: 48px;
  }
}
.page-home .hero-overlay-content > .container {
  grid-area: content;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 64rem) {
  .page-home .hero-overlay-content > .container {
    align-items: center;
    justify-content: flex-start;
  }
}
.page-home .presidents-container {
  grid-area: president;
  z-index: 2;
  display: flex;
  width: max-content;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  box-sizing: border-box;
  justify-self: center;
}
@media (min-width: 64rem) {
  .page-home .presidents-container {
    margin-inline-end: 64px;
    justify-content: flex-end;
    justify-self: end;
  }
}
@media (width >= 80rem) {
  .page-home .presidents-container {
    margin-inline-end: 120px;
  }
}
.page-home .president {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-home .president-image {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center bottom;
  height: auto;
  width: min(78vw, 320px);
  max-height: 38svh;
}
@media (min-width: 48rem) {
  .page-home .president-image {
    width: min(46vw, 460px);
    max-height: 44svh;
  }
}
@media (min-width: 75rem) {
  .page-home .president-image {
    max-height: none;
  }
}
.page-home .president-card {
  display: none;
}
@media (min-width: 75rem) {
  .page-home .president-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    width: 100%;
    text-align: center;
    color: #fff;
  }
}
.page-home .president-name {
  font-style: normal;
  font-weight: 600;
  font-size: 2em;
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
  color: #ffffff;
}
.page-home .president-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}
.page-home .president-years {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}
.page-home .president-card--active {
  gap: 8px;
}
.page-home .president-card--active .president-name {
  margin: 0;
  width: min(28rem, 92%);
  justify-content: center;
  padding: 10px 32px;
  background: #e30613;
  color: #fff;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
}
.page-home .president-card--active .president-role {
  width: min(28rem, 92%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.92);
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
}
.page-home .president-card--active .president-role span {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.2;
  color: #e30613;
}
.page-home .president-card--active .president-role-logo {
  width: 24px;
}
.page-home .president-card--memorial {
  gap: 8px;
}
.page-home .president-card--memorial .president-name {
  margin: 0;
  width: min(28rem, 92%);
  justify-content: center;
  padding: 10px 32px;
  background: rgba(53, 53, 53, 0.82);
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
}
.page-home .president-memorial-meta {
  width: min(28rem, 92%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.92);
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
}
.page-home .president-memorial-meta .president-subtitle,
.page-home .president-memorial-meta .president-years {
  margin: 0;
  color: #222;
  line-height: 1.25;
}
.page-home .president-memorial-meta .president-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.015em;
}
.page-home .president-memorial-meta .president-years {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.page-home .president-role {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 4px;
}
.page-home .president-role span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
}
.page-home .president-role-logo {
  width: 20px;
  height: auto;
}
.page-home .hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  gap: 16px;
  padding-bottom: 24px;
  padding-top: 0;
}
@media (min-width: 48rem) {
  .page-home .hero-content {
    gap: 20px;
    padding-bottom: 32px;
  }
}
@media (min-width: 75rem) {
  .page-home .hero-content {
    gap: 24px;
    padding-bottom: 0;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0;
  }
}
.page-home .motto-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.page-home .motto-div .motto-img {
  filter: brightness(0) invert(1);
  width: 100%;
  max-width: 18rem;
}
@media (min-width: 48rem) {
  .page-home .motto-div .motto-img {
    max-width: 24rem;
  }
}
@media (min-width: 75rem) {
  .page-home .motto-div .motto-img {
    max-width: 28rem;
  }
}
.page-home .motto-div .motto {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  max-width: 26rem;
  margin: 0;
}
@media (min-width: 75rem) {
  .page-home .motto-div .motto {
    font-size: 1.25rem;
    text-align: left;
    max-width: 34rem;
  }
}
.page-home .cta-group {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  max-width: 345px;
}
@media (min-width: 48rem) {
  .page-home .cta-group {
    max-width: 790px;
    gap: 10px;
  }
}
@media (min-width: 75rem) {
  .page-home .cta-group {
    max-width: 562px;
    gap: 24px;
  }
}
.page-home .cta-button {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  color: #fff;
  font-weight: 400;
  font-variant: all-small-caps;
  height: 47px;
  border-radius: 10px;
  font-size: 0.8125rem;
}
@media (min-width: 75rem) {
  .page-home .cta-button {
    height: 53px;
    font-size: 1.25rem;
  }
}
.page-home .cta-button.red-button {
  padding: 12px 24px;
  background: #e30613;
  border-radius: 10px;
}
.page-home .cta-button.red-button:hover {
  background: rgb(187.2506437768, 4.9493562232, 15.6729613734);
}
.page-home .cta-button.red-button svg {
  flex-shrink: 0;
}
@media (min-width: 75rem) {
  .page-home .cta-button.red-button svg {
    width: 14px;
    height: 24px;
  }
}
.page-home .cta-button.normal-button {
  padding: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.page-home .cta-button.normal-button:hover {
  background: rgba(255, 255, 255, 0.22);
}
.page-home .library-status-div {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 345px;
  padding: 18px 24px;
  background: rgba(46, 46, 46, 0.33);
  border: 1px solid #f9f9f9;
  border-radius: 24px;
}
@media (min-width: 48rem) {
  .page-home .library-status-div {
    max-width: 560px;
    padding: 22px 32px;
    gap: 40px;
  }
}
@media (min-width: 75rem) {
  .page-home .library-status-div {
    max-width: 700px;
    padding: 28px 32px;
    gap: 61px;
  }
}
.page-home .library-status-div--desktop {
  display: none;
}
.page-home .library-status-div--mobile-tablet {
  display: flex;
}
@media (min-width: 75rem) {
  .page-home .library-status-div--mobile-tablet {
    display: none;
  }
  .page-home .library-status-div--desktop {
    display: inline-flex;
    width: auto;
    max-width: none;
    margin-top: 24px;
    padding: 20px 28px;
    gap: 24px;
  }
}
.page-home .pie-chart {
  position: relative;
  flex-shrink: 0;
  width: 43px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(#e30613 0deg calc(360deg * var(--value) / 100), #d1d5db calc(360deg * var(--value) / 100) 360deg);
}
.page-home .library-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.page-home .library-details p {
  margin: 0;
}
.page-home .library-details .library-name {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.2;
  color: #fff;
}
.page-home .library-details .status-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.2;
  color: #fff;
  text-transform: capitalize;
}
.page-home .library-details .status-text b {
  font-weight: 700;
}
.page-home .quick-links-wrapper {
  flex-shrink: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.page-home .quick-links-heading {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  margin: 0 0 12px;
}
.page-home .quick-links-row {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
.page-home .swiper-button-prev-custom,
.page-home .swiper-button-next-custom {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}
.page-home .swiper-button-prev-custom svg,
.page-home .swiper-button-next-custom svg {
  width: 40px;
  height: 40px;
}
.page-home .swiper-button-prev-custom:hover,
.page-home .swiper-button-next-custom:hover {
  color: var(--primary-color, #e30613);
  transform: scale(1.05);
}
.page-home .swiper-button-prev-custom:active,
.page-home .swiper-button-next-custom:active {
  transform: scale(0.95);
}
.page-home .swiper-button-prev-custom.swiper-button-disabled,
.page-home .swiper-button-next-custom.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.page-home .swiper-button-prev-custom.swiper-button-disabled:hover,
.page-home .swiper-button-next-custom.swiper-button-disabled:hover {
  transform: none;
}
.page-home .quick-links {
  flex: 1 1 auto;
  width: 0;
  min-width: 0;
  overflow: hidden;
}
.page-home .quick-links .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.page-home .quick-links .swiper-pagination {
  position: relative;
  margin-top: 10px;
}
.page-home .quick-links .swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.page-home .quick-links .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}
.page-home .quick-link-button {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  transition: background 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
  height: auto !important;
  padding: 12px 16px;
  min-height: 70px;
}
@media (min-width: 48rem) {
  .page-home .quick-link-button {
    min-height: 90px;
    padding: 20px 27px;
    border: 1px solid #fff;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  }
}
.page-home .quick-link-button:hover {
  background: var(--primary-color, #e30613);
  border-color: var(--primary-color, #e30613);
}
.page-home .quick-link-button .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
@media (min-width: 48rem) {
  .page-home .quick-link-button .icon {
    width: 41px;
    height: 41px;
  }
}
.page-home .quick-link-button span {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.2;
  color: #fff;
  text-align: left;
}
@media (min-width: 48rem) {
  .page-home .quick-link-button span {
    font-size: 1rem;
  }
}
@media (min-width: 64rem) {
  .page-home .hero-overlay-content > .container {
    align-items: center;
    justify-content: flex-start;
  }
  .page-home .hero-content {
    max-width: 562px;
    align-items: flex-start;
    padding-top: 0;
    margin-top: 0;
  }
  .page-home .motto-div {
    align-items: flex-start;
  }
  .page-home .motto-div .motto {
    text-align: left;
  }
}
.page-home .main-content .news-section {
  padding: 30px 0;
}
.page-home .main-content .news-section .news-cards-wrapper .news-swiper {
  width: 100%;
}
.page-home .main-content .news-section .news-cards-wrapper .swiper-wrapper {
  display: flex;
  align-items: center;
}
.page-home .main-content .news-section .news-cards-wrapper .news-card {
  width: 300px;
  height: 400px;
  border-radius: 26px;
  overflow: hidden;
  background-color: #f3f4f6;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
}
.page-home .main-content .news-section .news-cards-wrapper .news-card .news-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  color: var(--color-white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  transition: height 0.3s ease, background 0.3s ease;
  overflow: hidden;
}
.page-home .main-content .news-section .news-cards-wrapper .news-card .news-card-content .news-card-date {
  margin: 0;
  flex-shrink: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
}
.page-home .main-content .news-section .news-cards-wrapper .news-card .news-card-content .news-card-title {
  margin: 0;
  flex: 1;
  text-overflow: ellipsis;
}
.page-home .main-content .news-section .news-cards-wrapper .news-card .news-card-content .news-card-link {
  margin-top: auto;
  padding: 10px 20px;
  background-color: transparent;
  color: var(--color-white);
  border: 0.5px solid var(--color-white);
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.2s ease;
  flex-shrink: 0;
  transform: translateY(100px);
  text-align: center;
  font-weight: 600;
}
.page-home .main-content .news-section .news-cards-wrapper .news-card .news-card-content .news-card-link:hover {
  background-color: rgb(204.3, 5.4, 17.1);
}
.page-home .main-content .news-section .news-cards-wrapper .news-card:hover .news-card-content, .page-home .main-content .news-section .news-cards-wrapper .news-card:active .news-card-content {
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  justify-content: center;
}
.page-home .main-content .news-section .news-cards-wrapper .news-card:hover .news-card-content .news-card-link, .page-home .main-content .news-section .news-cards-wrapper .news-card:active .news-card-content .news-card-link {
  transform: translateY(0);
}
.page-home .main-content .news-section .news-cards-wrapper .news-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .main-content .news-section .news-cards-wrapper .news-swiper-pagination {
  position: relative;
  margin-top: 12px;
}
.page-home .main-content .news-section .bottom-link-container {
  margin-top: 5px;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 10px;
}
.page-home .main-content .news-section .bottom-link-container .bottom-link {
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}
.page-home .main-content .news-section .bottom-link-container .bottom-link .icon {
  width: 16px;
  height: 16px;
}
.page-home .main-content .municipal-updates-section .wave-top,
.page-home .main-content .municipal-updates-section .wave-bottom {
  width: 100%;
  height: 100px;
}
.page-home .main-content .municipal-updates-section .wave-top svg,
.page-home .main-content .municipal-updates-section .wave-bottom svg {
  width: 100%;
  height: 110%;
  display: block;
}
.page-home .main-content .municipal-updates-section .municipal-updates {
  background-color: var(--primary-color);
  padding: 20px 0;
}
.page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content {
  background-color: var(--color-white);
  border-radius: 14px;
  overflow: hidden;
}
@media (width >= 80rem) {
  .page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content {
    display: flex;
    gap: 20px;
  }
  .page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .tabs {
    flex: 1;
  }
}
@media (width >= 80rem) {
  .page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .tabs {
    width: 50%;
  }
}
.page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .tabs .tab-header {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #e5e7eb;
}
.page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .tabs .tab-header .tab-title {
  flex: 1;
  text-align: center;
  padding: 16px 0;
  font-family: var(--font-bigcity);
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #101828;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
  margin: 0;
}
.page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .tabs .tab-header .tab-title:hover {
  color: var(--primary-color);
}
.page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .tabs .tab-header .tab-title.active {
  border-bottom: 3px solid var(--primary-color);
  color: var(--primary-color);
}
.page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .tabs .tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}
.page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .tabs .tab-content.active {
  display: block;
}
.page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .tabs .tab-content .list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  flex-direction: column;
  padding: 16px;
}
.page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .tabs .tab-content .list .list-item {
  padding: 16px;
  border: 1.25px solid #e5e7eb;
  border-radius: 14px;
  display: flex;
  align-items: center;
  flex-direction: row;
  background-color: rgba(249, 250, 251, 0.5019607843);
  transition: all 0.2s ease;
}
.page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .tabs .tab-content .list .list-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}
.page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .tabs .tab-content .list .list-item .item-image {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 16px;
  flex-shrink: 0;
}
.page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .tabs .tab-content .list .list-item .item-content {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .tabs .tab-content .list .list-item .item-content p {
  margin: 0;
}
.page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .tabs .tab-content .list .list-item .item-content .item-date {
  font-family: var(--font-bigcity);
  font-size: 14px;
  line-height: 20px;
  color: #6a7282;
}
.page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .tabs .tab-content .list .list-item .item-content .item-description {
  flex: 1;
  color: #101828;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
.page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .tabs .tab-content .list .list-item .item-content .item-link {
  font-family: var(--font-bigcity);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}
.page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .tabs .tab-content .list .list-item .item-content .item-link:hover {
  gap: 12px;
}
.page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .tabs .tab-content .list .list-item .item-content .item-link .icon {
  width: 16px;
  height: 16px;
}
.page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .tabs .tab-content .bottom-link {
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: gap 0.2s ease;
  margin: 16px 0;
}
.page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .tabs .tab-content .bottom-link:hover {
  gap: 12px;
}
.page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .tabs .tab-content .bottom-link .icon {
  width: 16px;
  height: 16px;
}
.page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .preview {
  display: none;
}
@media (width >= 80rem) {
  .page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .preview {
    display: block;
    flex: 1;
  }
  .page-home .main-content .municipal-updates-section .municipal-updates .municipal-updates-content .preview .preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-home .main-content .gallery-section {
  padding: 30px 0;
}
.page-home .main-content .gallery-section .gallery-card {
  position: relative;
  margin: 24px 0;
  background-color: var(--color-white);
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 24px;
}
.page-home .main-content .gallery-section .gallery-card .gallery-card-title {
  margin: 24px 0;
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  text-transform: capitalize;
}
.page-home .main-content .gallery-section .gallery-card .gallery-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.page-home .main-content .gallery-section .gallery-card .gallery-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
@media (width >= 80rem) {
  .page-home .main-content .gallery-section .gallery-card .gallery-image {
    height: 700px;
  }
}
.page-home .main-content .gallery-section .gallery-card .photo-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 30%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0) 100%);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 32px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.page-home .main-content .gallery-section .gallery-card .gallery-slide:hover .photo-overlay {
  opacity: 1;
}
.page-home .main-content .gallery-section .gallery-card .photo-title {
  margin: 0 0 8px 0;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 32px;
  line-height: 139%;
  text-transform: capitalize;
}
.page-home .main-content .gallery-section .gallery-card .photo-description {
  margin: 0;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 16px;
  line-height: 139%;
  text-transform: capitalize;
}
.page-home .main-content .gallery-section .gallery-card .swiper-button-prev-gallery,
.page-home .main-content .gallery-section .gallery-card .swiper-button-next-gallery {
  position: absolute;
  top: calc(50% + 12px);
  transform: translateY(-50%);
  background-color: var(--primary-color);
  border-radius: 50%;
  color: var(--color-black);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: color 0.2s ease;
}
.page-home .main-content .gallery-section .gallery-card .swiper-button-prev-gallery:hover,
.page-home .main-content .gallery-section .gallery-card .swiper-button-next-gallery:hover {
  color: var(--color-white);
}
.page-home .main-content .gallery-section .gallery-card .swiper-button-prev-gallery {
  left: 0;
}
.page-home .main-content .gallery-section .gallery-card .swiper-button-next-gallery {
  right: 0;
}
.page-home .main-content .gallery-section .video-gallery-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.page-home .main-content .gallery-section .gallery-video-slide {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-black);
}
.page-home .main-content .gallery-section .gallery-video-slide .video-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.25) 100%);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.3s ease, opacity 0.2s ease;
  text-align: center;
  opacity: 0;
}
.page-home .main-content .gallery-section .gallery-video-slide:hover .video-overlay {
  transform: translateY(0);
  opacity: 1;
}
.page-home .main-content .gallery-section .gallery-video-slide .video-overlay.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.page-home .main-content .gallery-section .gallery-video-slide .video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .main-content .gallery-section .gallery-video-slide .play-button {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
}
.page-home .main-content .gallery-section .gallery-video-slide .video-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
}
.page-home .main-content .gallery-section .bottom-link {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  justify-self: right;
  margin-top: 24px;
}
.page-home .main-content .gallery-section .bottom-link .icon {
  width: 20px;
  height: 20px;
}
.page-home .main-content .kurumlar-section {
  padding: 40px 0;
  text-align: center;
}
.page-home .main-content .kurumlar-section .kurumlar-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.page-home .main-content .kurumlar-section .kurumlar-logos img {
  height: 80px;
  object-fit: contain;
}
.page-home .main-content .contact-form-section {
  padding: 20px;
  margin: 40px 0;
  background-color: var(--color-white);
  box-shadow: 0px 4px 9.2px 0px rgba(0, 0, 0, 0.17);
  border-radius: 24px;
}
@media (width >= 48rem) {
  .page-home .main-content .contact-form-section {
    padding: 40px 100px;
  }
}
.page-home .main-content .contact-form-section .contact-form-title {
  font-weight: 700;
  font-style: Bold;
  font-size: 26px;
  line-height: 125%;
  margin-bottom: 10px;
}
.page-home .main-content .contact-form-section .contact-form-subtitle {
  font-style: News;
  font-size: 18px;
  line-height: 130%;
}
.page-home .main-content .contact-form-section .contact-form-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-home .main-content .contact-form-section .form-area {
  margin-top: 20px;
  border: 1px solid rgb(224, 224, 224);
  border-radius: 8px;
  font-family: inherit;
  background: rgb(237, 237, 237);
  line-height: 24px;
  padding: 12px 16px;
}
.page-home .main-content .contact-form-section .form-area input,
.page-home .main-content .contact-form-section .form-area textarea {
  width: 100%;
  border: none;
  font-size: 16px;
  font-family: var(--font-bigcity);
  background: transparent;
  box-sizing: border-box;
  padding: 0;
}
.page-home .main-content .contact-form-section .form-area input:focus,
.page-home .main-content .contact-form-section .form-area textarea:focus {
  outline: none;
}
.page-home .main-content .contact-form-section .form-area textarea {
  resize: vertical;
  min-height: 120px;
}
.page-home .main-content .contact-form-section input::placeholder,
.page-home .main-content .contact-form-section textarea::placeholder {
  font-family: var(--font-bigcity);
  line-height: 24px;
}
.page-home .main-content .contact-form-section .submit-button {
  font-size: 20px;
  line-height: 100%;
  border-radius: 10px;
  padding: 12px 24px;
  margin-top: 20px;
  background-color: var(--primary-color);
  color: var(--color-white);
  width: 100%;
  transition: background-color 0.2s ease;
}
.page-home .main-content .contact-form-section .submit-button:hover {
  background-color: rgb(204.3, 5.4, 17.1);
}
.page-home .main-content .contact-form-section iframe {
  border: 0;
  width: 100%;
  height: 400px;
  margin-top: 0;
}
@media (width >= 80rem) {
  .page-home .main-content .contact-form-section .contact-form-content {
    flex-direction: row;
    gap: 40px;
  }
  .page-home .main-content .contact-form-section .contact-form,
  .page-home .main-content .contact-form-section iframe {
    flex: 1 1 0;
  }
}
.page-home .main-content .library-card {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  padding: clamp(1rem, 4vw, 4rem);
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 0.25rem 0.575rem rgba(0, 0, 0, 0.17);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #2e2e30;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}
.page-home .main-content .library-card:not(:first-child) {
  margin-top: 40px;
}
.page-home .main-content .library-card:last-child {
  margin-bottom: 40px;
}
.page-home .main-content .library-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem;
}
.page-home .main-content .library-card__title {
  margin: 0;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.2;
  font-weight: 700;
}
.page-home .main-content .library-card__meta {
  display: inline-flex;
  align-items: baseline;
  gap: 0.625rem;
}
.page-home .main-content .library-card__divider {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.2;
  font-weight: 200;
}
.page-home .main-content .library-card__meta-text {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.2;
  font-weight: 400;
}
.page-home .main-content .library-card__meta-text strong {
  font-weight: 700;
}
.page-home .main-content .library-card__content {
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) minmax(20rem, 1fr);
  gap: clamp(0.75rem, 2vw, 1.5rem);
  align-items: center;
}
@media (max-width: 960px) {
  .page-home .main-content .library-card__content {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}
.page-home .main-content .occupancy {
  display: grid;
  place-items: center;
  padding: clamp(0.5rem, 2vw, 1rem) 0;
}
.page-home .main-content .occupancy .donut {
  --value: 76;
  width: min(70vw, 24rem);
  max-width: 24rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: conic-gradient(#e30613 calc(var(--value) * 1%), #c8c8c8 0);
  display: grid;
  place-items: center;
  position: relative;
}
.page-home .main-content .occupancy .donut::before {
  content: "";
  position: absolute;
  inset: 1rem;
  background: #fff;
  border-radius: 50%;
}
@media (min-width: 48rem) {
  .page-home .main-content .occupancy .donut::before {
    inset: 2rem;
  }
}
@media (min-width: 64rem) {
  .page-home .main-content .occupancy .donut::before {
    inset: 3rem;
  }
}
.page-home .main-content .occupancy .donut__center {
  position: relative;
  z-index: 1;
  width: calc(100% - clamp(3.5rem, 14vw, 5.75rem));
  height: calc(100% - clamp(4rem, 10vw, 5.75rem));
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.375rem;
  text-align: center;
}
.page-home .main-content .occupancy .donut__value {
  font-size: clamp(2.5rem, 7vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #000;
}
.page-home .main-content .occupancy .donut__label {
  margin-top: -0.375rem;
  font-size: clamp(0.875rem, 2.4vw, 1.25rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 300;
  color: #000;
}
.page-home .main-content .occupancy .donut__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.page-home .main-content .occupancy .donut__stats .stat {
  min-width: 0;
}
@media (max-width: 48rem) {
  .page-home .main-content .occupancy .donut__stats .stat {
    flex: 1 1 0;
  }
}
.page-home .main-content .occupancy .donut__stats .donut__sep {
  flex: 0 0 auto;
}
.page-home .main-content .occupancy .donut__sep {
  width: 2.875rem;
  height: 0;
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.26);
  transform: rotate(90deg);
  flex: 0 0 auto;
}
.page-home .main-content .occupancy .stat {
  min-width: 0;
  text-align: center;
}
.page-home .main-content .occupancy .stat__num {
  font-size: clamp(1rem, 2.8vw, 1.25rem);
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
}
.page-home .main-content .occupancy .stat__txt {
  font-size: clamp(0.75rem, 2.4vw, 0.875rem);
  line-height: 1.3;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: #000;
  white-space: nowrap;
}
@media (max-width: 420px) {
  .page-home .main-content .occupancy .donut__sep {
    display: none;
  }
}
.page-home .main-content .features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.625rem, 1.6vw, 1.5rem);
}
@media (max-width: 960px) {
  .page-home .main-content .features {
    grid-template-columns: 1fr;
  }
}
.page-home .main-content .features .feature-card {
  background: #fff;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.25);
  border-radius: 0.625rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 0.625rem;
  align-items: center;
}
.page-home .main-content .features .feature-card__icon {
  display: grid;
  place-items: center;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 2.75rem;
}
.page-home .main-content .features .feature-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.page-home .main-content .features .feature-card__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.1875rem;
  font-weight: 700;
  color: #2e2e30;
}
.page-home .main-content .features .feature-card__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  font-weight: 500;
  color: #404040;
}
.page-home .main-content .em-red {
  color: #e30613;
  font-weight: 700;
}
.page-home .main-content .icon-stroke,
.page-home .main-content .icon-fill {
  width: 100%;
  height: 100%;
  display: block;
}
.page-home .main-content .icon-stroke {
  fill: none;
  stroke: #e30613;
  stroke-width: 0.125rem;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.page-home .main-content .icon-fill {
  fill: #e30613;
}

.page-baskan-ozgecmis .baskan-message {
  background-color: var(--color-white);
  padding: 40px;
  margin-top: 20px;
  border-radius: 16px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  font-size: 16px;
  position: relative;
  min-height: 220px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .page-baskan-ozgecmis .baskan-message {
    padding: 20px;
    min-height: 120px;
  }
}
@media (width >= 48rem) {
  .page-baskan-ozgecmis .baskan-message {
    font-size: 20px;
  }
}
.page-baskan-ozgecmis .baskan-message .baskan-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 180px;
  height: auto;
  opacity: 0.3;
  transform: rotate(180deg);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 600px) {
  .page-baskan-ozgecmis .baskan-message .baskan-bg {
    width: 100px;
  }
}
@media (width >= 48rem) {
  .page-baskan-ozgecmis .baskan-message .baskan-bg {
    width: 150px;
  }
}
.page-baskan-ozgecmis .baskan-info {
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  font-size: 16px;
  position: relative;
  min-height: 220px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .page-baskan-ozgecmis .baskan-info {
    padding: 20px;
    min-height: 120px;
  }
}
@media (width >= 48rem) {
  .page-baskan-ozgecmis .baskan-info {
    font-size: 20px;
  }
}
.page-baskan-ozgecmis .baskan-info .baskan-info-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (width >= 80rem) {
  .page-baskan-ozgecmis .baskan-info .baskan-info-top {
    flex-direction: row;
  }
}
.page-baskan-ozgecmis .baskan-info .baskan-photo-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  align-items: center;
}
@media (width >= 48rem) and (width < 80rem) {
  .page-baskan-ozgecmis .baskan-info .baskan-photo-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    border-top-right-radius: 32px;
    border-bottom-left-radius: 32px;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
    align-items: normal;
  }
}
.page-baskan-ozgecmis .baskan-info .baskan-tablet-red {
  display: none;
  background-color: var(--primary-color);
}
@media (width >= 48rem) and (width < 80rem) {
  .page-baskan-ozgecmis .baskan-info .baskan-tablet-red {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 50%;
    position: relative;
    flex: 1;
  }
  .page-baskan-ozgecmis .baskan-info .baskan-tablet-red img {
    position: absolute;
    top: 10%;
    left: 25%;
    width: 50%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
  }
}
.page-baskan-ozgecmis .baskan-info .baskan-tablet-red .baskan-nameplate-tablet {
  z-index: 2;
  display: none;
  background: linear-gradient(0deg, #e30613, #e30613), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 167.63%);
  box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  color: var(--color-white);
  padding: 12px 24px;
  text-align: center;
  box-sizing: border-box;
  width: 110%;
  margin-left: -10%;
}
@media (width >= 48rem) and (width < 80rem) {
  .page-baskan-ozgecmis .baskan-info .baskan-tablet-red .baskan-nameplate-tablet {
    display: block;
  }
}
.page-baskan-ozgecmis .baskan-info .baskan-tablet-red .baskan-nameplate-tablet .baskan-name {
  margin: 0;
  font-weight: 800;
  font-style: Extra Bold;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
}
.page-baskan-ozgecmis .baskan-info .baskan-tablet-red .baskan-nameplate-tablet .baskan-title {
  margin: 0;
  font-size: 15.5px;
  line-height: 150%;
  text-align: center;
}
.page-baskan-ozgecmis .baskan-info .baskan-photo-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 400px;
  margin-top: 14px;
}
@media (width >= 48rem) and (width < 80rem) {
  .page-baskan-ozgecmis .baskan-info .baskan-photo-social {
    flex: 0 0 100%;
    max-width: none;
    margin-top: 0;
    padding: 14px;
    background-color: var(--color-white);
    box-sizing: border-box;
  }
}
.page-baskan-ozgecmis .baskan-info .baskan-photo-social .baskan-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: var(--primary-color);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.page-baskan-ozgecmis .baskan-info .baskan-photo-social .baskan-social-link:hover {
  background-color: rgb(204.3, 5.4, 17.1);
  transform: translateY(-2px);
}
.page-baskan-ozgecmis .baskan-info .baskan-photo-social .baskan-social-icon {
  width: 22px;
  height: 22px;
  display: block;
  filter: brightness(0) invert(1);
}
.page-baskan-ozgecmis .baskan-info h4,
.page-baskan-ozgecmis .baskan-info .section-title {
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 8px;
  text-align: center;
  justify-content: center;
}
@media (width >= 48rem) {
  .page-baskan-ozgecmis .baskan-info h4,
  .page-baskan-ozgecmis .baskan-info .section-title {
    justify-content: flex-start;
  }
}
.page-baskan-ozgecmis .baskan-info .section-title {
  margin: 12px 0;
}
.page-baskan-ozgecmis .baskan-info h4::before,
.page-baskan-ozgecmis .baskan-info .section-title::before {
  content: "";
  display: none;
}
@media (width >= 48rem) {
  .page-baskan-ozgecmis .baskan-info h4::before,
  .page-baskan-ozgecmis .baskan-info .section-title::before {
    display: inline-block;
    width: 3px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 2px;
    margin-right: 4px;
  }
}
.page-baskan-ozgecmis .baskan-info h3 {
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
}
.page-baskan-ozgecmis .baskan-info .baskan-bio {
  margin-top: 16px;
}
@media (width >= 80rem) {
  .page-baskan-ozgecmis .baskan-info .baskan-bio {
    margin-top: 0;
    flex: 2;
  }
}
.page-baskan-ozgecmis .baskan-info .baskan-photo-container {
  border-top-left-radius: 32px;
  border-bottom-right-radius: 32px;
  overflow: hidden;
  position: relative;
  max-width: 400px;
}
@media (width >= 48rem) and (width < 80rem) {
  .page-baskan-ozgecmis .baskan-info .baskan-photo-container {
    width: 50%;
    max-height: 500px;
    border-radius: 0;
  }
}
@media (width >= 80rem) {
  .page-baskan-ozgecmis .baskan-info .baskan-photo-container {
    max-height: none;
  }
}
.page-baskan-ozgecmis .baskan-info .baskan-photo-container .baskan-photo {
  width: 100%;
  display: block;
}
.page-baskan-ozgecmis .baskan-info .baskan-photo-container .baskan-nameplate {
  background-color: var(--primary-color);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  color: var(--color-white);
  padding: 12px 24px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-sizing: border-box;
}
@media (width >= 48rem) and (width < 80rem) {
  .page-baskan-ozgecmis .baskan-info .baskan-photo-container .baskan-nameplate {
    display: none;
  }
}
.page-baskan-ozgecmis .baskan-info .baskan-photo-container .baskan-nameplate .baskan-name {
  font-weight: 700;
  font-size: 24px;
  margin: 0;
}
.page-baskan-ozgecmis .baskan-info .baskan-photo-container .baskan-nameplate .baskan-title {
  font-weight: 500;
  font-size: 16px;
  margin: 0;
}
.page-baskan-ozgecmis .baskan-info .baskan-gallery-swiper {
  width: 100%;
  margin: 24px 0;
}
.page-baskan-ozgecmis .baskan-info .baskan-gallery-swiper .baskan-gallery-img {
  height: 160px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  margin: auto;
}
.page-baskan-ozgecmis .baskan-info .baskan-gallery-swiper .swiper-pagination {
  position: relative;
  margin-top: 12px;
}
.page-baskan-ozgecmis .baskan-info .baskan-gallery-swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--primary-color);
  opacity: 0.3;
}
.page-baskan-ozgecmis .baskan-info .baskan-gallery-swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.breadcrumbs-list {
  margin: 0;
  padding: 8px 24px;
  font-size: 14px;
  background-color: #fbfbfb;
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumbs-list .breadcrumbs-item {
  font-family: var(--font-bigcity);
  font-size: 10px;
  line-height: 160%;
  color: rgba(0, 0, 0, 0.5490196078);
}
.breadcrumbs-list .breadcrumbs-item.active {
  color: var(--primary-color);
}
.breadcrumbs-list a {
  text-decoration: none;
}
.breadcrumbs-list a:hover {
  text-decoration: underline;
}

.page-baskan-foto-galeri_album .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.page-baskan-foto-galeri_album .content-area .content-container {
  padding: 24px;
}
@media (width >= 48rem) {
  .page-baskan-foto-galeri_album .content-area .content-container {
    padding: 64px;
  }
}
.page-baskan-foto-galeri_album .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
}
@media (width >= 48rem) {
  .page-baskan-foto-galeri_album .content-area .content-container .page-title {
    font-size: 20px;
  }
}
.page-baskan-foto-galeri_album .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-baskan-foto-galeri_album .content-area .content-container .page-subtitle {
  font-style: Italic;
  font-size: 14px;
  line-height: 150%;
}
.page-baskan-foto-galeri_album .content-area .content-container .photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin-top: 24px;
}
@media (width >= 48rem) {
  .page-baskan-foto-galeri_album .content-area .content-container .photo-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width >= 64rem) {
  .page-baskan-foto-galeri_album .content-area .content-container .photo-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width >= 96rem) {
  .page-baskan-foto-galeri_album .content-area .content-container .photo-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.page-baskan-foto-galeri_album .content-area .content-container .photo-gallery-grid .photo-gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  transition: transform 0.2s ease;
  background: linear-gradient(225deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
.page-baskan-foto-galeri_album .content-area .content-container .photo-gallery-grid .photo-gallery-item:hover {
  transform: scale(1.03);
}
.page-baskan-foto-galeri_album .content-area .content-container .photo-gallery-grid .photo-gallery-item .photo-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-baskan-foto-galeri_album .content-area .content-container .photo-gallery-grid .photo-gallery-item .photo-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0) 100%);
  color: var(--color-white);
}
.page-baskan-foto-galeri_album .content-area .content-container .photo-gallery-grid .photo-gallery-item .photo-gallery-overlay .photo-gallery-caption {
  font-weight: 500;
  font-size: 12px;
  line-height: 120%;
  vertical-align: middle;
}
.page-baskan-foto-galeri_album .content-area .content-container .photo-gallery-pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}
.page-baskan-foto-galeri_album .content-area .content-container .photo-gallery-pagination .gallery-page {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  padding: 8px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-black);
  opacity: 0.6;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}
.page-baskan-foto-galeri_album .content-area .content-container .photo-gallery-pagination .gallery-page.active {
  background: #f5f5f5;
  opacity: 1;
  angle: 0deg;
}
.page-baskan-foto-galeri_album .content-area .content-container .photo-gallery-pagination .gallery-nav {
  height: 40px;
  border-radius: 12px;
  padding: 8px;
  background: #f5f5f5;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}
.page-baskan-foto-galeri_album .content-area .content-container .photo-gallery-pagination .gallery-nav.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.page-baskan-foto-galeri_album .content-area .content-container .photo-gallery-pagination .gallery-nav svg {
  display: block;
}

.page-sehzadeler-foto-galeri_album .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.page-sehzadeler-foto-galeri_album .content-area .content-container {
  padding: 24px;
}
@media (width >= 48rem) {
  .page-sehzadeler-foto-galeri_album .content-area .content-container {
    padding: 64px;
  }
}
.page-sehzadeler-foto-galeri_album .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
}
@media (width >= 48rem) {
  .page-sehzadeler-foto-galeri_album .content-area .content-container .page-title {
    font-size: 20px;
  }
}
.page-sehzadeler-foto-galeri_album .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-sehzadeler-foto-galeri_album .content-area .content-container .page-subtitle {
  font-style: Italic;
  font-size: 14px;
  line-height: 150%;
}
.page-sehzadeler-foto-galeri_album .content-area .content-container .photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin-top: 24px;
}
@media (width >= 48rem) {
  .page-sehzadeler-foto-galeri_album .content-area .content-container .photo-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width >= 64rem) {
  .page-sehzadeler-foto-galeri_album .content-area .content-container .photo-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width >= 96rem) {
  .page-sehzadeler-foto-galeri_album .content-area .content-container .photo-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.page-sehzadeler-foto-galeri_album .content-area .content-container .photo-gallery-grid .photo-gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  transition: transform 0.2s ease;
  background: linear-gradient(225deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
.page-sehzadeler-foto-galeri_album .content-area .content-container .photo-gallery-grid .photo-gallery-item:hover {
  transform: scale(1.03);
}
.page-sehzadeler-foto-galeri_album .content-area .content-container .photo-gallery-grid .photo-gallery-item .photo-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-sehzadeler-foto-galeri_album .content-area .content-container .photo-gallery-grid .photo-gallery-item .photo-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0) 100%);
  color: var(--color-white);
}
.page-sehzadeler-foto-galeri_album .content-area .content-container .photo-gallery-grid .photo-gallery-item .photo-gallery-overlay .photo-gallery-caption {
  font-weight: 500;
  font-size: 12px;
  line-height: 120%;
  vertical-align: middle;
}
.page-sehzadeler-foto-galeri_album .content-area .content-container .photo-gallery-pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}
.page-sehzadeler-foto-galeri_album .content-area .content-container .photo-gallery-pagination .gallery-page {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  padding: 8px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-black);
  opacity: 0.6;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}
.page-sehzadeler-foto-galeri_album .content-area .content-container .photo-gallery-pagination .gallery-page.active {
  background: #f5f5f5;
  opacity: 1;
  angle: 0deg;
}
.page-sehzadeler-foto-galeri_album .content-area .content-container .photo-gallery-pagination .gallery-nav {
  height: 40px;
  border-radius: 12px;
  padding: 8px;
  background: #f5f5f5;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}
.page-sehzadeler-foto-galeri_album .content-area .content-container .photo-gallery-pagination .gallery-nav.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.page-sehzadeler-foto-galeri_album .content-area .content-container .photo-gallery-pagination .gallery-nav svg {
  display: block;
}

.page-sehzadeler-video-galeri_album .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.page-sehzadeler-video-galeri_album .content-area .content-container {
  padding: 24px;
}
@media (width >= 48rem) {
  .page-sehzadeler-video-galeri_album .content-area .content-container {
    padding: 64px;
  }
}
.page-sehzadeler-video-galeri_album .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
}
@media (width >= 48rem) {
  .page-sehzadeler-video-galeri_album .content-area .content-container .page-title {
    font-size: 20px;
  }
}
.page-sehzadeler-video-galeri_album .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-sehzadeler-video-galeri_album .content-area .content-container .page-subtitle {
  font-style: Italic;
  font-size: 14px;
  line-height: 150%;
}
.page-sehzadeler-video-galeri_album .content-area .content-container .photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin-top: 24px;
}
@media (width >= 48rem) {
  .page-sehzadeler-video-galeri_album .content-area .content-container .photo-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width >= 64rem) {
  .page-sehzadeler-video-galeri_album .content-area .content-container .photo-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width >= 96rem) {
  .page-sehzadeler-video-galeri_album .content-area .content-container .photo-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.page-sehzadeler-video-galeri_album .content-area .content-container .photo-gallery-grid .photo-gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  transition: transform 0.2s ease;
  background: linear-gradient(225deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
.page-sehzadeler-video-galeri_album .content-area .content-container .photo-gallery-grid .photo-gallery-item:hover {
  transform: scale(1.03);
}
.page-sehzadeler-video-galeri_album .content-area .content-container .photo-gallery-grid .photo-gallery-item .photo-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-sehzadeler-video-galeri_album .content-area .content-container .photo-gallery-grid .photo-gallery-item .photo-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0) 100%);
  color: var(--color-white);
}
.page-sehzadeler-video-galeri_album .content-area .content-container .photo-gallery-grid .photo-gallery-item .photo-gallery-overlay .photo-gallery-caption {
  font-weight: 500;
  font-size: 12px;
  line-height: 120%;
  vertical-align: middle;
}
.page-sehzadeler-video-galeri_album .content-area .content-container .photo-gallery-pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}
.page-sehzadeler-video-galeri_album .content-area .content-container .photo-gallery-pagination .gallery-page {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  padding: 8px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-black);
  opacity: 0.6;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}
.page-sehzadeler-video-galeri_album .content-area .content-container .photo-gallery-pagination .gallery-page.active {
  background: #f5f5f5;
  opacity: 1;
  angle: 0deg;
}
.page-sehzadeler-video-galeri_album .content-area .content-container .photo-gallery-pagination .gallery-nav {
  height: 40px;
  border-radius: 12px;
  padding: 8px;
  background: #f5f5f5;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}
.page-sehzadeler-video-galeri_album .content-area .content-container .photo-gallery-pagination .gallery-nav.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.page-sehzadeler-video-galeri_album .content-area .content-container .photo-gallery-pagination .gallery-nav svg {
  display: block;
}

.page-hizmetler .main-content {
  padding: 0 !important;
}
.page-hizmetler .hero-section {
  height: calc(100vh - var(--header-height, 115px));
  position: relative;
}
@media (width >= 48rem) {
  .page-hizmetler .hero-section {
    height: calc(60vh - var(--header-height, 115px));
    min-height: calc(50vh - var(--header-height, 115px));
  }
}
.page-hizmetler .hero-section .hero-logo {
  width: 30%;
  min-width: 90px;
  height: auto;
  filter: brightness(0) invert(1);
}
@media (width >= 48rem) {
  .page-hizmetler .hero-section .hero-logo {
    display: none;
  }
}
.page-hizmetler .hero-section .hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}
.page-hizmetler .hero-section .hero-content {
  height: 100%;
  background: rgba(227, 6, 19, 0.62);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  color: var(--color-white);
  text-align: center;
}
@media (width >= 48rem) {
  .page-hizmetler .hero-section .hero-content {
    text-align: left;
    justify-content: center;
    align-items: flex-start;
  }
}
.page-hizmetler .hero-section .hero-content .hero-title {
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  line-height: 90%;
  text-align: center;
}
@media (width >= 48rem) {
  .page-hizmetler .hero-section .hero-content .hero-title {
    font-weight: 700;
    font-size: 48px;
    font-style: normal;
  }
}
.page-hizmetler .hero-section .hero-content .hero-title span {
  font-weight: 700;
  font-size: 48px;
  font-style: normal;
}
.page-hizmetler .hero-section .hero-content .hero-title span::before {
  content: "\a";
  white-space: pre;
  display: block;
}
@media (width >= 48rem) {
  .page-hizmetler .hero-section .hero-content .hero-title span::before {
    display: none;
  }
}
@media (width >= 48rem) {
  .page-hizmetler .hero-section .hero-content .hero-title {
    text-align: left;
  }
}
.page-hizmetler .hero-section .hero-content .hero-description {
  font-style: Italic;
}
@media (width >= 48rem) {
  .page-hizmetler .hero-section .hero-content .hero-description {
    width: 50%;
  }
}
.page-hizmetler .hero-section .hero-content .hero-scroll-indicator {
  border: 1px solid var(--color-white);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hizmetler .hero-section .hero-content .hero-scroll-indicator .arrow-down {
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(5px);
  }
  60% {
    transform: translateY(3px);
  }
}
@media (width >= 48rem) {
  .page-hizmetler .hero-section .hero-content .hero-scroll-indicator {
    display: none;
  }
}
.page-hizmetler .hero-section .hero-content .hero-bottom-decor {
  display: none;
  width: 320px;
  filter: brightness(0) invert(1);
}
@media (width >= 48rem) {
  .page-hizmetler .hero-section .hero-content .hero-bottom-decor {
    display: block;
  }
}
.page-hizmetler .content-area {
  background-color: var(--color-white);
  padding: 40px;
  margin: 40px 0;
  border-radius: 16px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  font-size: 16px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .page-hizmetler .content-area {
    padding: 20px;
    min-height: 120px;
  }
}
@media (width >= 48rem) {
  .page-hizmetler .content-area {
    font-size: 20px;
  }
}
.page-hizmetler .content-area .section-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 8px;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 12px;
}
@media (width >= 48rem) {
  .page-hizmetler .content-area .section-title {
    text-align: left;
    justify-content: flex-start;
  }
}
@media (width >= 48rem) {
  .page-hizmetler .content-area .section-title::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 2px;
    margin-right: 14px;
  }
}
.page-hizmetler .content-area .section-items-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  margin-top: 24px;
}
@media (width >= 48rem) {
  .page-hizmetler .content-area .section-items-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width >= 80rem) {
  .page-hizmetler .content-area .section-items-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
.page-hizmetler .content-area .section-items-grid .section-item {
  border-radius: 8px;
  padding: 10px 12px;
  gap: 8px;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--color-white);
  display: flex;
  flex-direction: row;
  align-items: center;
}
.page-hizmetler .content-area .section-items-grid .section-item:hover {
  background-color: rgb(204.3, 5.4, 17.1);
}
.page-hizmetler .content-area .section-items-grid .section-item .section-item-icon {
  width: 25px;
  height: 25px;
  margin: 10px;
  margin-bottom: 12px;
}
.page-hizmetler .content-area .section-items-grid .section-item .section-item-title {
  font-weight: 700;
  font-style: Italic;
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
}

.page-kurumsal .main-content {
  padding: 0 !important;
}
.page-kurumsal .hero-section {
  height: calc(100vh - var(--header-height, 115px));
  position: relative;
}
@media (width >= 48rem) {
  .page-kurumsal .hero-section {
    height: calc(80vh - var(--header-height, 115px));
  }
}
.page-kurumsal .hero-section .hero-logo {
  width: 30%;
  min-width: 90px;
  height: auto;
  filter: brightness(0) invert(1);
}
@media (width >= 48rem) {
  .page-kurumsal .hero-section .hero-logo {
    display: none;
  }
}
.page-kurumsal .hero-section .hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}
.page-kurumsal .hero-section .hero-content {
  height: 100%;
  background: rgba(227, 6, 19, 0.62);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  color: var(--color-white);
  text-align: center;
}
@media (width >= 48rem) {
  .page-kurumsal .hero-section .hero-content {
    text-align: left;
    justify-content: center;
    align-items: flex-start;
  }
}
.page-kurumsal .hero-section .hero-content .hero-title {
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  line-height: 90%;
  text-align: center;
}
@media (width >= 48rem) {
  .page-kurumsal .hero-section .hero-content .hero-title {
    font-weight: 700;
    font-size: 48px;
    font-style: normal;
  }
}
.page-kurumsal .hero-section .hero-content .hero-title span {
  font-weight: 700;
  font-size: 48px;
  font-style: normal;
}
.page-kurumsal .hero-section .hero-content .hero-title span::before {
  content: "\a";
  white-space: pre;
  display: block;
}
@media (width >= 48rem) {
  .page-kurumsal .hero-section .hero-content .hero-title span::before {
    display: none;
  }
}
@media (width >= 48rem) {
  .page-kurumsal .hero-section .hero-content .hero-title {
    text-align: left;
  }
}
.page-kurumsal .hero-section .hero-content .hero-description {
  font-style: Italic;
}
@media (width >= 48rem) {
  .page-kurumsal .hero-section .hero-content .hero-description {
    width: 50%;
  }
}
.page-kurumsal .hero-section .hero-content .hero-scroll-indicator {
  border: 1px solid var(--color-white);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-kurumsal .hero-section .hero-content .hero-scroll-indicator .arrow-down {
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(5px);
  }
  60% {
    transform: translateY(3px);
  }
}
@media (width >= 48rem) {
  .page-kurumsal .hero-section .hero-content .hero-scroll-indicator {
    display: none;
  }
}
.page-kurumsal .hero-section .hero-content .hero-bottom-decor {
  display: none;
  width: 320px;
  filter: brightness(0) invert(1);
}
@media (width >= 48rem) {
  .page-kurumsal .hero-section .hero-content .hero-bottom-decor {
    display: block;
  }
}
.page-kurumsal .content-area {
  background-color: var(--color-white);
  padding: 40px;
  margin: 40px 0;
  border-radius: 16px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  font-size: 16px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .page-kurumsal .content-area {
    padding: 20px;
    min-height: 120px;
  }
}
@media (width >= 48rem) {
  .page-kurumsal .content-area {
    font-size: 20px;
  }
}
.page-kurumsal .content-area .section-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 8px;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 12px;
}
@media (width >= 48rem) {
  .page-kurumsal .content-area .section-title {
    text-align: left;
    justify-content: flex-start;
  }
}
@media (width >= 48rem) {
  .page-kurumsal .content-area .section-title::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 2px;
    margin-right: 14px;
  }
}
.page-kurumsal .content-area .section-items-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  margin-top: 24px;
}
@media (width >= 48rem) {
  .page-kurumsal .content-area .section-items-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width >= 80rem) {
  .page-kurumsal .content-area .section-items-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
.page-kurumsal .content-area .section-items-grid .section-item {
  border-radius: 8px;
  padding: 10px 12px;
  gap: 8px;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--color-white);
  display: flex;
  flex-direction: row;
  align-items: center;
}
.page-kurumsal .content-area .section-items-grid .section-item:hover {
  background-color: rgb(204.3, 5.4, 17.1);
}
.page-kurumsal .content-area .section-items-grid .section-item .section-item-icon {
  width: 25px;
  height: 25px;
  margin: 10px;
  margin-bottom: 12px;
}
.page-kurumsal .content-area .section-items-grid .section-item .section-item-title {
  font-weight: 700;
  font-style: Italic;
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
}

@media (width >= 64rem) {
  .page-council-group.page-baskan-yardimcilari .content-area .content-container .council-card .council-members-div {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-council-group.page-baskan-yardimcilari .content-area .content-container .council-card .council-members-div > :nth-child(-n+2 of .member-card--desktop) {
    grid-column: span 2;
  }
}
@media (width >= 96rem) {
  .page-council-group.page-baskan-yardimcilari .content-area .content-container .council-card .council-members-div {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (width >= 64rem) {
  .page-council-group.page-birim-mudurleri .content-area .content-container .council-card .council-members-div {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width >= 96rem) {
  .page-council-group.page-birim-mudurleri .content-area .content-container .council-card .council-members-div {
    grid-template-columns: repeat(5, 1fr);
  }
}
.page-council-group.page-birim-mudurleri .content-area .content-container .council-card .council-members-featured {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 16px;
  grid-column: 1/-1;
  width: 100%;
}
@media (width >= 48rem) {
  .page-council-group.page-birim-mudurleri .content-area .content-container .council-card .council-members-featured {
    flex-direction: row;
  }
}
.page-council-group.page-baskan-yardimcilari .content-area .content-container .council-card .council-members-div {
  row-gap: 64px;
}
.page-council-group .main-content {
  padding: 0 !important;
}
.page-council-group .hero-section {
  position: relative;
}
.page-council-group .hero-section .hero-logo {
  width: 30%;
  min-width: 90px;
  height: auto;
  filter: brightness(0) invert(1);
}
@media (width >= 48rem) {
  .page-council-group .hero-section .hero-logo {
    display: none;
  }
}
.page-council-group .hero-section .hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}
.page-council-group .hero-section .hero-content {
  height: 100%;
  background: rgba(227, 6, 19, 0.62);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  color: var(--color-white);
  text-align: center;
}
.page-council-group .hero-section .hero-content > * {
  margin: 40px auto;
}
@media (width >= 48rem) {
  .page-council-group .hero-section .hero-content {
    text-align: left;
    justify-content: center;
    align-items: flex-start;
  }
  .page-council-group .hero-section .hero-content > * {
    margin: 20px 0;
  }
}
.page-council-group .hero-section .hero-content .hero-title {
  text-align: center;
}
@media (width >= 48rem) {
  .page-council-group .hero-section .hero-content .hero-title {
    font-weight: 700;
    font-size: 48px;
    font-style: normal;
  }
}
.page-council-group .hero-section .hero-content .hero-title span {
  display: block;
}
@media (width >= 48rem) {
  .page-council-group .hero-section .hero-content .hero-title span {
    display: inline;
  }
}
.page-council-group .hero-section .hero-content .hero-title > span:first-of-type {
  font-weight: 300;
  font-style: Italic;
  font-size: 24px;
  line-height: 75%;
  text-align: center;
}
@media (width >= 48rem) {
  .page-council-group .hero-section .hero-content .hero-title > span:first-of-type {
    font-weight: 700;
    font-style: Bold;
    font-size: 36px;
    line-height: 120%;
    text-align: center;
  }
}
.page-council-group .hero-section .hero-content .hero-title > span:nth-of-type(2) {
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  line-height: 120%;
  text-align: center;
}
@media (width >= 48rem) {
  .page-council-group .hero-section .hero-content .hero-title {
    text-align: left;
  }
}
.page-council-group .hero-section .hero-content .hero-description {
  font-style: Italic;
}
.page-council-group .hero-section .hero-content .hero-bottom-decor {
  display: none;
  width: 320px;
  filter: brightness(0) invert(1);
}
@media (width >= 48rem) {
  .page-council-group .hero-section .hero-content .hero-bottom-decor {
    display: block;
  }
}
.page-council-group .hero-section .hero-content .party-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (width >= 48rem) {
  .page-council-group .hero-section .hero-content .party-stats {
    display: none;
  }
}
.page-council-group .hero-section .hero-content .party-stats .party-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-council-group .hero-section .hero-content .party-stats .party-stat-item .party-stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.page-council-group .hero-section .hero-content .party-stats .party-stat-item .party-stat-number {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
}
.page-council-group.page-belediye-meclisi .content-area {
  margin: 40px 0 !important;
}
.page-council-group .content-area {
  background-color: var(--color-white);
  margin: 150px 0 40px 0;
  border-radius: 16px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  font-size: 16px;
  position: relative;
  overflow: hidden;
}
@media (width >= 48rem) {
  .page-council-group .content-area {
    font-size: 20px;
  }
}
@media (width >= 64rem) {
  .page-council-group .content-area {
    margin: 200px 0 40px 0;
  }
}
@media (width >= 48rem) {
  .page-council-group .content-area .content-container {
    padding: 24px;
  }
}
.page-council-group .content-area .content-container .navigation-bar {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}
.page-council-group .content-area .content-container .navigation-bar .nav-bar-title {
  display: none;
  align-items: center;
  flex-direction: column;
  gap: 4px;
}
@media (width >= 48rem) {
  .page-council-group .content-area .content-container .navigation-bar .nav-bar-title {
    display: flex;
  }
}
.page-council-group .content-area .content-container .navigation-bar .nav-bar-title .top-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 50%;
  text-align: center;
  vertical-align: middle;
}
.page-council-group .content-area .content-container .navigation-bar .nav-bar-title .bottom-title {
  font-style: Italic;
  font-size: 24px;
  text-align: center;
  vertical-align: middle;
  text-transform: capitalize;
}
.page-council-group .content-area .content-container .navigation-bar .nav-bar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
}
.page-council-group .content-area .content-container .navigation-bar .nav-bar-link img {
  width: 10px;
  height: 10px;
}
@media (width >= 48rem) {
  .page-council-group .content-area .content-container .navigation-bar .nav-bar-link img {
    width: 16px;
    height: 16px;
  }
}
.page-council-group .content-area .content-container .meclis-div {
  margin-top: 24px;
}
.page-council-group .content-area .content-container .meclis-div .div-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  margin-bottom: 12px;
}
.page-council-group .content-area .content-container .meclis-div .div-title.mt {
  margin-top: 40px;
}
@media (width >= 48rem) {
  .page-council-group .content-area .content-container .meclis-div .div-title {
    display: none;
  }
}
@media (width >= 48rem) {
  .page-council-group .content-area .content-container .meclis-div.baskan-div {
    display: grid;
    justify-content: center;
    align-items: center;
  }
}
.page-council-group .content-area .content-container .council-card {
  display: flex;
  flex-direction: column;
}
.page-council-group .content-area .content-container .council-card__group-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  width: fit-content;
  text-align: center;
  margin: 24px auto;
}
.page-council-group .content-area .content-container .council-card__group-title.mt {
  margin-top: 40px;
}
@media (width >= 48rem) {
  .page-council-group .content-area .content-container .council-card__group-title.title_chp {
    border-bottom: 3px solid #ed1d24;
  }
}
@media (width >= 48rem) {
  .page-council-group .content-area .content-container .council-card__group-title.title_akp {
    border-bottom: 3px solid #f7941e;
  }
}
@media (width >= 48rem) {
  .page-council-group .content-area .content-container .council-card__group-title.title_mhp {
    border-bottom: 3px solid #ec3535;
  }
}
@media (width >= 48rem) {
  .page-council-group .content-area .content-container .council-card__group-title.title_iyi {
    border-bottom: 3px solid #4caee5;
  }
}
.page-council-group .content-area .content-container .council-card .council-members-div {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(1, 1fr);
}
@media (width >= 48rem) {
  .page-council-group .content-area .content-container .council-card .council-members-div {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}
@media (width >= 64rem) {
  .page-council-group .content-area .content-container .council-card .council-members-div {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width >= 80rem) {
  .page-council-group .content-area .content-container .council-card .council-members-div {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (width >= 96rem) {
  .page-council-group .content-area .content-container .council-card .council-members-div {
    grid-template-columns: repeat(5, 1fr);
  }
}
.page-council-group .content-area .content-container .member-card {
  background-color: var(--color-white);
  width: 100%;
  height: 9rem;
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media (width >= 48rem) {
  .page-council-group .content-area .content-container .member-card__mobile {
    display: none;
  }
}
@media (width <= 48rem) {
  .page-council-group .content-area .content-container .member-card__tablet {
    display: none;
  }
}
.page-council-group .content-area .content-container .member-card__bottom-logo {
  width: 4rem;
  height: auto;
  position: absolute;
  bottom: -15px;
  right: 10px;
  transform: rotate(-30deg);
  opacity: 0.05;
}
.page-council-group .content-area .content-container .member-card__bg {
  width: 20rem;
  height: 8rem;
  background-color: var(--primary-color);
  position: absolute;
  left: -90px;
  top: 80px;
  transform-origin: top left;
  transform: rotate(-45deg);
}
.page-council-group .content-area .content-container .member-card__bg--chp {
  background-color: var(--primary-color);
}
.page-council-group .content-area .content-container .member-card__bg--akp {
  background-color: #f29a03;
}
.page-council-group .content-area .content-container .member-card__bg--mhp {
  background-color: #ec3535;
}
.page-council-group .content-area .content-container .member-card__bg--iyi {
  background-color: #4caee5;
}
.page-council-group .content-area .content-container .member-card__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-council-group .content-area .content-container .member-card__info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 150px;
  position: relative;
}
.page-council-group .content-area .content-container .member-card__name {
  color: black;
  font-size: 14px;
  font-weight: 700;
}
.page-council-group .content-area .content-container .member-card__party {
  font-size: 12px;
  line-height: 1;
}
.page-council-group .content-area .content-container .member-card__titles {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
}
.page-council-group .content-area .content-container .member-card__title {
  color: black;
  font-size: 0.75rem;
  font-weight: 700;
}
.page-council-group .content-area .content-container .member-card__subtitle {
  color: #57534e;
  font-size: 10px;
  font-weight: 500;
}
.page-council-group .content-area .content-container .member-card__avatar-container {
  width: 7rem;
  height: 7rem;
  position: absolute;
  left: 13px;
  top: 15px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.page-council-group .content-area .content-container .member-card__avatar {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
}
.page-council-group .content-area .content-container .member-card__badge {
  width: 2rem;
  height: 2rem;
  position: absolute;
  left: 79.5px;
  top: 82.6px;
  border-radius: 50%;
  border: 1px solid white;
  object-fit: cover;
  background-color: var(--color-white);
}
.page-council-group .content-area .content-container .member-card__badge--red {
  border-color: red;
}
.page-council-group .content-area .content-container .member-card--desktop {
  width: 200px;
  aspect-ratio: 12/18;
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: none;
}
@media (width >= 48rem) {
  .page-council-group .content-area .content-container .member-card--desktop {
    display: block;
  }
}
.page-council-group .content-area .content-container .member-card--desktop__bottom-logo {
  width: 5rem;
  height: auto;
  position: absolute;
  bottom: -25px;
  right: 10px;
  transform: rotate(-30deg);
  opacity: 0.05;
}
.page-council-group .content-area .content-container .member-card--desktop__cover {
  width: 100%;
  height: 12rem;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  background-color: var(--primary-color);
}
.page-council-group .content-area .content-container .member-card--desktop__cover--chp {
  background-color: #e30613;
}
.page-council-group .content-area .content-container .member-card--desktop__cover--akp {
  background-color: #f29a03;
}
.page-council-group .content-area .content-container .member-card--desktop__cover--mhp {
  background-color: #ec3535;
}
.page-council-group .content-area .content-container .member-card--desktop__cover--iyi {
  background-color: #4caee5;
}
.page-council-group .content-area .content-container .member-card--desktop__name-block {
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 60px;
  justify-content: center;
  overflow: hidden;
}
.page-council-group .content-area .content-container .member-card--desktop__name {
  color: white;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  font-family: var(--font-bigcity);
  width: 185px;
}
.page-council-group .content-area .content-container .member-card--desktop__party {
  font-size: 12px;
  line-height: 180%;
  text-align: center;
  vertical-align: middle;
  color: var(--color-white);
  width: 185px;
}
.page-council-group .content-area .content-container .member-card--desktop__title-block {
  width: 9rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.page-council-group .content-area .content-container .member-card--desktop__title-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.page-council-group .content-area .content-container .member-card--desktop__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: black;
  text-align: center;
  font-style: italic;
  font-family: var(--font-bigcity);
}
.page-council-group .content-area .content-container .member-card--desktop__subtitle {
  font-size: 10px;
  color: #57534e;
  font-weight: 500;
  text-align: center;
  font-family: var(--font-bigcity);
  font-style: italic;
}
.page-council-group .content-area .content-container .member-card--desktop__avatar-block {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 25%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.page-council-group .content-area .content-container .member-card--desktop__avatar {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.page-council-group .content-area .content-container .member-card--desktop__badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  position: absolute;
  bottom: -8px;
  border: 1px solid white;
  object-fit: cover;
  background-color: var(--color-white);
}
.page-council-group .content-area .content-container .member-card--desktop__badge--red {
  border-color: red;
}

.page-teskilat-semasi .org-chart-controls {
  width: 100%;
  gap: 8px;
  justify-content: flex-end;
  margin: 12px 0;
  overflow-x: auto;
  display: flex;
  flex-direction: column;
}
@media (width >= 48rem) {
  .page-teskilat-semasi .org-chart-controls {
    flex-direction: row;
  }
}
.page-teskilat-semasi .org-chart-container {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background-color: #f8f9fa;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.page-teskilat-semasi .org-chart-controls button {
  padding: 8px 16px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-bigcity);
  font-size: 14px;
  transition: background-color 0.3s ease;
}
.page-teskilat-semasi .org-chart-controls button:hover {
  background-color: #c00510;
}
.page-teskilat-semasi #org-chart {
  width: 100%;
  height: 100%;
}
.page-teskilat-semasi .node-button-div {
  border-radius: 50% !important;
  overflow: hidden !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border: 2px solid white !important;
}
.page-teskilat-semasi .node-foreign-object {
  height: fit-content !important;
}
.page-teskilat-semasi .node-foreign-object-div {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.page-sehzadeler-tarihce .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.page-sehzadeler-tarihce .content-area .content-container {
  padding: 24px;
}
@media (width >= 48rem) {
  .page-sehzadeler-tarihce .content-area .content-container {
    padding: 64px;
  }
}
.page-sehzadeler-tarihce .content-area .content-container > .timeline__content {
  background: #ffffff;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: center;
  width: 100% !important;
  max-width: 1000px;
}
.page-sehzadeler-tarihce .content-area .content-container > .timeline__content .timeline__year {
  color: var(--primary-color);
}
.page-sehzadeler-tarihce .content-area .content-container > .timeline__content .timeline__image {
  width: 100% !important;
  height: 100% !important;
  max-width: 360px;
  min-width: 0px;
}
@media (width >= 48rem) {
  .page-sehzadeler-tarihce .content-area .content-container > .timeline__content .timeline__image {
    min-width: 360px;
  }
}
@media (max-width: 768px) {
  .page-sehzadeler-tarihce .content-area .content-container > .timeline__content {
    flex-direction: column;
    width: 100% !important;
  }
  .page-sehzadeler-tarihce .content-area .content-container > .timeline__content .timeline__image {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
  }
}
.page-sehzadeler-tarihce .content-area .content-container .page-title {
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 100%;
  margin-top: 12px;
  color: #3e3232;
}
.page-sehzadeler-tarihce .content-area .content-container .page-description {
  font-style: Italic;
  font-size: 16px;
  line-height: 100%;
}
.page-sehzadeler-tarihce .content-area .content-container .timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 0;
}
.page-sehzadeler-tarihce .content-area .content-container .timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #d2d2d2;
  transform: translateX(-50%);
}
.page-sehzadeler-tarihce .content-area .content-container .timeline__item {
  position: relative;
  width: 50%;
  display: flex;
  align-items: center;
}
.page-sehzadeler-tarihce .content-area .content-container .timeline__item--left {
  justify-content: flex-end;
}
.page-sehzadeler-tarihce .content-area .content-container .timeline__item--right {
  margin-left: auto;
  justify-content: flex-start;
  flex-direction: row-reverse;
}
.page-sehzadeler-tarihce .content-area .content-container .timeline__content {
  width: 360px;
  background: #ffffff;
}
.page-sehzadeler-tarihce .content-area .content-container .timeline__image {
  margin: 0;
}
.page-sehzadeler-tarihce .content-area .content-container .timeline__image img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  margin: 0;
}
.page-sehzadeler-tarihce .content-area .content-container .timeline__body {
  padding: 1rem 0;
}
.page-sehzadeler-tarihce .content-area .content-container .timeline__year {
  margin: 0 0 0.4rem;
  color: #d9a251;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 100%;
}
.page-sehzadeler-tarihce .content-area .content-container .timeline__title {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  font-style: Italic;
  font-size: 20px;
  line-height: 100%;
}
.page-sehzadeler-tarihce .content-area .content-container .timeline__text {
  margin: 0;
  font-size: 0.9rem;
  font-style: Italic;
  font-size: 16px;
  line-height: 100%;
}
.page-sehzadeler-tarihce .content-area .content-container .timeline__connector {
  flex: 1;
  min-width: 30px;
  border-top: 2px solid #d2d2d2;
  height: 0;
}
@media (max-width: 768px) {
  .page-sehzadeler-tarihce .content-area .content-container .timeline {
    padding: 2rem 0;
  }
  .page-sehzadeler-tarihce .content-area .content-container .timeline::before {
    display: none;
  }
  .page-sehzadeler-tarihce .content-area .content-container .timeline__item {
    width: 100%;
    padding: 2.5rem 0 0;
    flex-direction: column;
    align-items: center;
    margin-left: 0;
  }
  .page-sehzadeler-tarihce .content-area .content-container .timeline__content {
    width: 100%;
    min-width: 0;
  }
  .page-sehzadeler-tarihce .content-area .content-container .timeline__connector {
    margin-top: 1.5rem;
    width: 0;
    height: 40px;
    border-top: none;
    border-left: 2px solid #d2d2d2;
  }
  .page-sehzadeler-tarihce .content-area .content-container .timeline__item:last-child .timeline__connector {
    display: none;
  }
}

.page-sehzadeler-mahalleler #mahalle-map {
  width: 100%;
  height: 60vh;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  z-index: 1;
}
.page-sehzadeler-mahalleler .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.page-sehzadeler-mahalleler .content-area .content-container {
  padding: 24px;
}
@media (width >= 48rem) {
  .page-sehzadeler-mahalleler .content-area .content-container {
    padding: 64px;
  }
}
.page-sehzadeler-mahalleler .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-transform: capitalize;
  color: #3e3232;
  margin-bottom: 24px;
}
.page-sehzadeler-mahalleler .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-sehzadeler-mahalleler .content-area .content-container .mahalle-dropdown-wrapper {
  margin-bottom: 24px;
}
@media (width >= 48rem) {
  .page-sehzadeler-mahalleler .content-area .content-container .mahalle-dropdown-wrapper {
    display: none;
  }
}
.page-sehzadeler-mahalleler .content-area .content-container .mahalle-dropdown-wrapper .mahalle-label {
  font-size: 14px;
  line-height: 100%;
}
.page-sehzadeler-mahalleler .content-area .content-container .mahalle-dropdown-wrapper .mahalle-dropdown {
  border: 1px solid #9d9d9d;
  gap: 8px;
  border-radius: 8px;
  padding: 12px 10px;
}
.page-sehzadeler-mahalleler .content-area .content-container .neighbor-name {
  font-weight: 700;
  font-style: Italic;
  font-size: 20px;
  line-height: 100%;
  color: var(--primary-color);
}
.page-sehzadeler-mahalleler .content-area .content-container .neighbor-muhtar {
  color: var(--primary-color);
  font-style: Italic;
  font-size: 16px;
  line-height: 100%;
}
.page-sehzadeler-mahalleler .content-area .content-container .neighbor-muhtar span {
  font-weight: 700;
  font-style: Italic;
  font-size: 16px;
  line-height: 100%;
}
.page-sehzadeler-mahalleler .content-area .content-container .neighbor-description {
  font-style: Italic;
  font-size: 16px;
  line-height: 100%;
}
.page-sehzadeler-mahalleler .content-area .content-container .neighbor-grid {
  display: none;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  margin-top: 24px;
}
@media (width >= 48rem) {
  .page-sehzadeler-mahalleler .content-area .content-container .neighbor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width >= 64rem) {
  .page-sehzadeler-mahalleler .content-area .content-container .neighbor-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (width >= 80rem) {
  .page-sehzadeler-mahalleler .content-area .content-container .neighbor-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.page-sehzadeler-mahalleler .content-area .content-container .neighbor-grid .name {
  font-size: 13px;
  line-height: 160%;
  text-transform: capitalize;
}
.page-sehzadeler-mahalleler .content-area .content-container .neighbor-grid .name.active {
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 160%;
  text-transform: capitalize;
  color: var(--primary-color);
}

.page-baglantilar .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.page-baglantilar .content-area .content-container {
  padding: 24px;
}
@media (width >= 48rem) {
  .page-baglantilar .content-area .content-container {
    padding: 64px;
  }
}
.page-baglantilar .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-transform: capitalize;
  color: #3e3232;
  margin-bottom: 24px;
}
.page-baglantilar .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-baglantilar .content-area .content-container .links-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  margin-top: 24px;
}
@media (width >= 40rem) {
  .page-baglantilar .content-area .content-container .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width >= 48rem) {
  .page-baglantilar .content-area .content-container .links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width >= 64rem) {
  .page-baglantilar .content-area .content-container .links-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (width >= 80rem) {
  .page-baglantilar .content-area .content-container .links-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.page-baglantilar .content-area .content-container .links-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-baglantilar .content-area .content-container .links-grid-item .link-icon-wrapper {
  width: 103px;
  aspect-ratio: 103/112;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.page-baglantilar .content-area .content-container .links-grid-item .link-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-cerez-politikasi .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.page-cerez-politikasi .content-area .content-container {
  padding: 24px;
}
@media (width >= 48rem) {
  .page-cerez-politikasi .content-area .content-container {
    padding: 64px;
  }
}
.page-cerez-politikasi .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-transform: capitalize;
  color: #3e3232;
  margin-bottom: 24px;
}
.page-cerez-politikasi .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-cerez-politikasi .content-area .content-container > *:not(.page-title) {
  font-style: Italic;
}
.page-cerez-politikasi .content-area .content-container p {
  font-size: 14px;
  line-height: 150%;
}

.page-genelge .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.page-genelge .content-area .content-container {
  padding: 24px;
}
@media (width >= 48rem) {
  .page-genelge .content-area .content-container {
    padding: 64px;
  }
}
.page-genelge .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-transform: capitalize;
  color: #3e3232;
  margin-bottom: 24px;
}
.page-genelge .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}

.page-yonetmelik .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.page-yonetmelik .content-area .content-container {
  padding: 24px;
}
@media (width >= 48rem) {
  .page-yonetmelik .content-area .content-container {
    padding: 64px;
  }
}
.page-yonetmelik .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-transform: capitalize;
  color: #3e3232;
  margin-bottom: 24px;
}
.page-yonetmelik .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}

.page-KVKK .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.page-KVKK .content-area .content-container {
  padding: 24px;
}
@media (width >= 48rem) {
  .page-KVKK .content-area .content-container {
    padding: 64px;
  }
}
.page-KVKK .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-transform: capitalize;
  color: #3e3232;
  margin-bottom: 24px;
}
.page-KVKK .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-KVKK .content-area .content-container .download-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 10px;
  transition: background-color 0.3s ease;
}
.page-KVKK .content-area .content-container .download-link:hover {
  background-color: #f3f3f3;
}
.page-KVKK .content-area .content-container .download-link .download-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  flex-shrink: 0;
  padding: 3px;
  color: var(--secondary-color);
}
@media (width >= 48rem) {
  .page-KVKK .content-area .content-container .download-link .download-icon {
    padding: 10px;
  }
}
.page-KVKK .content-area .content-container .download-link .download-text {
  display: flex;
  flex-direction: column;
}
.page-KVKK .content-area .content-container .download-link .download-text .download-title {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-transform: capitalize;
  color: var(--secondary-color);
}
.page-KVKK .content-area .content-container .download-link .download-text .download-subtitle {
  font-style: italic;
  font-size: 12px;
  line-height: 20px;
  text-transform: capitalize;
}

.page-afet .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.page-afet .content-area .content-container {
  padding: 24px;
}
@media (width >= 48rem) {
  .page-afet .content-area .content-container {
    padding: 64px;
  }
}
.page-afet .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
}
@media (width >= 48rem) {
  .page-afet .content-area .content-container .page-title {
    font-size: 20px;
  }
}
.page-afet .content-area .content-container .page-subtitle {
  font-style: Italic;
  font-size: 14px;
  line-height: 150%;
}
.page-afet .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-afet .content-area .content-container .section-title {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 31px;
}
.page-afet .content-area .content-container .files-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.page-afet .content-area .content-container .files-list .file-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--secondary-color);
}
.page-afet .content-area .content-container .files-list .file-item .file-icon {
  width: 20px;
  height: 20px;
  fill: var(--secondary-color);
}
.page-afet .content-area .content-container .files-list .file-item .file-name {
  font-family: var(--font-bigcity);
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0px;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 0%;
  margin: 0px;
}

.page-logo .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.page-logo .content-area .content-container {
  padding: 24px;
  font-family: var(--font-bigcity);
}
@media (width >= 48rem) {
  .page-logo .content-area .content-container {
    padding: 64px;
  }
}
.page-logo .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
}
@media (width >= 48rem) {
  .page-logo .content-area .content-container .page-title {
    font-size: 20px;
  }
}
.page-logo .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-logo .content-area .content-container .section-title {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
}
.page-logo .content-area .content-container p {
  margin: 0;
}
.page-logo .content-area .content-container p.italic {
  font-style: italic;
}
.page-logo .content-area .content-container .logo-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}
.page-logo .content-area .content-container .logo-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.page-logo .content-area .content-container .logo-info .logo-info-img {
  width: 100%;
  max-width: 240px;
  max-height: 260px;
  height: auto;
  object-fit: contain;
}
.page-logo .content-area .content-container .logo-info .logo-info-text {
  width: 100%;
}
@media (min-width: 64rem) {
  .page-logo .content-area .content-container .logo-info-list {
    gap: 2.5rem;
  }
  .page-logo .content-area .content-container .logo-info {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 2rem;
  }
  .page-logo .content-area .content-container .logo-info .logo-info-img {
    margin-bottom: 0;
    margin-right: 2rem;
  }
  .page-logo .content-area .content-container .logo-info .logo-info-text {
    width: auto;
  }
  .page-logo .content-area .content-container .logo-info.reverse {
    flex-direction: row-reverse;
  }
  .page-logo .content-area .content-container .logo-info.reverse .logo-info-img {
    margin-right: 0;
    margin-left: 2rem;
  }
}
@media (min-width: 64rem) {
  .page-logo .content-area .content-container .logo-info-list {
    gap: 3rem;
  }
}

.page-iletisim .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.page-iletisim .content-area .content-container {
  position: relative;
  padding: 24px;
  font-family: var(--font-bigcity);
  overflow: hidden;
}
@media (width >= 48rem) {
  .page-iletisim .content-area .content-container {
    padding: 64px;
  }
}
.page-iletisim .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-transform: capitalize;
  color: #3e3232;
  margin-bottom: 24px;
}
.page-iletisim .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-iletisim .content-area .content-container .page-description {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
}
.page-iletisim .content-area .content-container .section-title {
  font-family: var(--font-bigcity);
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  text-transform: capitalize;
}
.page-iletisim .content-area .content-container .iletisim-div-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 48rem) {
  .page-iletisim .content-area .content-container .iletisim-div-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-iletisim .content-area .content-container .iletisim-div-wrapper .iletisim-div {
  z-index: 1;
  background-color: #f8f8f8;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 8px;
  padding: 20px 30px;
}
.page-iletisim .content-area .content-container .iletisim-div-wrapper .iletisim-div-title {
  font-size: 20px;
  line-height: 100%;
  text-transform: capitalize;
  margin: 0;
  margin-bottom: 8px;
}
.page-iletisim .content-area .content-container .iletisim-div-wrapper .iletisim-div-text {
  font-weight: 500;
  font-size: 20px;
  text-decoration: underline;
  color: var(--primary-color);
  margin: 0;
}
.page-iletisim .content-area .content-container .bg-icon {
  position: absolute;
  width: 100%;
  height: 70%;
  opacity: 0.05;
  right: -30%;
  bottom: -5%;
  transform: rotate(-25deg);
  z-index: 0;
}
.page-iletisim .content-area .content-container .contact-form-section {
  padding: 40px 0;
}
.page-iletisim .content-area .content-container .contact-form-section * {
  z-index: 10;
}
.page-iletisim .content-area .content-container .contact-form-section .contact-form-title {
  font-weight: 700;
  font-style: Bold;
  font-size: 26px;
  line-height: 125%;
  margin-bottom: 10px;
}
.page-iletisim .content-area .content-container .contact-form-section .contact-form-subtitle {
  font-style: News;
  font-size: 18px;
  line-height: 130%;
}
.page-iletisim .content-area .content-container .contact-form-section .contact-form-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-iletisim .content-area .content-container .contact-form-section .form-area {
  margin-top: 20px;
  border: 1px solid rgb(224, 224, 224);
  border-radius: 8px;
  font-family: inherit;
  background: rgb(237, 237, 237);
  line-height: 24px;
  padding: 12px 16px;
}
.page-iletisim .content-area .content-container .contact-form-section .form-area input,
.page-iletisim .content-area .content-container .contact-form-section .form-area textarea {
  width: 100%;
  border: none;
  font-size: 16px;
  font-family: var(--font-bigcity);
  background: transparent;
  box-sizing: border-box;
  padding: 0;
}
.page-iletisim .content-area .content-container .contact-form-section .form-area input:focus,
.page-iletisim .content-area .content-container .contact-form-section .form-area textarea:focus {
  outline: none;
}
.page-iletisim .content-area .content-container .contact-form-section .form-area textarea {
  resize: vertical;
  min-height: 120px;
}
.page-iletisim .content-area .content-container .contact-form-section input::placeholder,
.page-iletisim .content-area .content-container .contact-form-section textarea::placeholder {
  font-family: var(--font-bigcity);
  line-height: 24px;
}
.page-iletisim .content-area .content-container .contact-form-section .submit-button {
  font-size: 20px;
  line-height: 100%;
  border-radius: 10px;
  padding: 12px 24px;
  margin-top: 20px;
  background-color: var(--primary-color);
  color: var(--color-white);
  width: 100%;
  transition: background-color 0.2s ease;
}
.page-iletisim .content-area .content-container .contact-form-section .submit-button:hover {
  background-color: rgb(204.3, 5.4, 17.1);
}
.page-iletisim .content-area .content-container .contact-form-section iframe {
  border: 0;
  width: 100%;
  height: 400px;
  margin-top: 0;
}
@media (width >= 80rem) {
  .page-iletisim .content-area .content-container .contact-form-section .contact-form-content {
    flex-direction: row;
    gap: 40px;
  }
  .page-iletisim .content-area .content-container .contact-form-section .contact-form,
  .page-iletisim .content-area .content-container .contact-form-section iframe {
    flex: 1 1 0;
  }
}

.page-hizmet-rehberi .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.page-hizmet-rehberi .content-area .content-container {
  padding: 24px;
}
@media (width >= 48rem) {
  .page-hizmet-rehberi .content-area .content-container {
    padding: 64px;
  }
}
.page-hizmet-rehberi .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
}
@media (width >= 48rem) {
  .page-hizmet-rehberi .content-area .content-container .page-title {
    font-size: 20px;
  }
}
.page-hizmet-rehberi .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-hizmet-rehberi .content-area .content-container .section-title {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-transform: capitalize;
  color: #3e3232;
}
.page-hizmet-rehberi .content-area .content-container .download-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 10px;
  transition: background-color 0.3s ease;
}
.page-hizmet-rehberi .content-area .content-container .download-link:nth-child(even) {
  background-color: #f3f3f3;
}
.page-hizmet-rehberi .content-area .content-container .download-link:hover {
  background-color: #e0e0e0;
}
.page-hizmet-rehberi .content-area .content-container .download-link .download-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  flex-shrink: 0;
  padding: 3px;
  color: var(--secondary-color);
}
@media (width >= 48rem) {
  .page-hizmet-rehberi .content-area .content-container .download-link .download-icon {
    padding: 10px;
  }
}
.page-hizmet-rehberi .content-area .content-container .download-link .download-text {
  display: flex;
  flex-direction: column;
}
.page-hizmet-rehberi .content-area .content-container .download-link .download-text .download-title {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-transform: capitalize;
  color: var(--secondary-color);
}
.page-hizmet-rehberi .content-area .content-container .download-link .download-text .download-subtitle {
  font-style: italic;
  font-size: 12px;
  line-height: 20px;
  text-transform: capitalize;
}

.page-haberler .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.page-haberler .content-area .content-container {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (width >= 48rem) {
  .page-haberler .content-area .content-container {
    padding: 64px;
  }
}
.page-haberler .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
}
@media (width >= 48rem) {
  .page-haberler .content-area .content-container .page-title {
    font-size: 20px;
  }
}
.page-haberler .content-area .content-container .page-subtitle {
  font-style: Italic;
  font-size: 14px;
  line-height: 150%;
}
.page-haberler .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-haberler .content-area .content-container .news-gallery-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin-top: 24px;
  align-content: start;
}
@media (width >= 48rem) {
  .page-haberler .content-area .content-container .news-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width >= 64rem) {
  .page-haberler .content-area .content-container .news-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width >= 96rem) {
  .page-haberler .content-area .content-container .news-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.page-haberler .content-area .content-container .news-gallery-grid--item-content {
  width: 100%;
}
.page-haberler .content-area .content-container .news-gallery-grid--item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 24px 17px;
  gap: 9px;
  box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  background-color: var(--color-white);
  overflow: hidden;
  max-height: 400px;
}
.page-haberler .content-area .content-container .news-gallery-grid--item:hover .news-gallery-grid--item-button {
  background: var(--primary-color);
  color: var(--color-white);
  border: none;
}
.page-haberler .content-area .content-container .news-gallery-grid--item-image {
  width: 100%;
  height: 180px;
  min-height: 180px;
  max-height: 180px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.page-haberler .content-area .content-container .news-gallery-grid--item-date {
  font-size: 16px;
  line-height: 20px;
  color: #270553;
  flex-shrink: 0;
}
.page-haberler .content-area .content-container .news-gallery-grid--item-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-transform: capitalize;
  color: #3e3232;
  flex-shrink: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-haberler .content-area .content-container .news-gallery-grid--item-description {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
  text-transform: capitalize;
  color: rgba(62, 50, 50, 0.75);
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.page-haberler .content-area .content-container .news-gallery-grid--item-button {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  gap: 10px;
  background: var(--color-white);
  border: 0.5px solid var(--color-black);
  border-radius: 7px;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
  margin-top: auto;
}

.page-haber-detay .sidebar-quick-links {
  overflow: hidden;
}
.page-haber-detay .sidebar-quick-links .other-news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-haber-detay .sidebar-quick-links .other-news-list .other-news-item {
  list-style: none;
}
.page-haber-detay .sidebar-quick-links .other-news-list .other-news-item .other-news-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  gap: 16px;
  background: #ffffff;
  box-shadow: 0px 30px 60px rgba(32, 56, 85, 0.15);
  border-radius: 16px;
}
.page-haber-detay .sidebar-quick-links .other-news-list .other-news-item .other-news-link .other-news-date {
  font-size: 16px;
  line-height: 20px;
  color: var(--primary-color);
}
.page-haber-detay .sidebar-quick-links .other-news-list .other-news-item .other-news-link .other-news-image {
  border-radius: 16px;
  align-self: stretch;
}
.page-haber-detay .sidebar-quick-links .other-news-list .other-news-item .other-news-link .other-news-title {
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  color: #333333;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
}
.page-haber-detay .sidebar-quick-links .other-news-list .other-news-item .other-news-link .other-news-button {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 13px 16px;
  gap: 11px;
  background: var(--color-white);
  border: 0.5px solid var(--primary-color);
  border-radius: 8px;
  align-self: stretch;
  flex-grow: 0;
  font-size: 15px;
  line-height: 20px;
  text-transform: capitalize;
  color: var(--primary-color);
  transition: background-color 0.2s ease;
}
.page-haber-detay .sidebar-quick-links .other-news-list .other-news-item .other-news-link .other-news-button:hover {
  background-color: var(--primary-color);
  color: var(--color-white);
  border: 0.5px solid var(--color-white);
}
.page-haber-detay .sidebar-quick-links .other-news-list .other-news-item .other-news-link .other-news-button:hover svg path {
  fill: var(--color-white);
}
.page-haber-detay .sidebar-all-news-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-haber-detay .sidebar-all-news-box .all-news-button {
  font-size: 20px;
  line-height: 20px;
  text-transform: capitalize;
  color: var(--primary-color);
}
.page-haber-detay .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.page-haber-detay .content-area .content-container {
  padding: 24px;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (width >= 48rem) {
  .page-haber-detay .content-area .content-container {
    padding: 64px;
  }
}
.page-haber-detay .content-area .content-container .bg-icon {
  position: absolute;
  width: 100%;
  height: 70%;
  opacity: 0.05;
  right: -30%;
  bottom: -5%;
  transform: rotate(-25deg);
  z-index: 0;
}
.page-haber-detay .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
}
@media (width >= 48rem) {
  .page-haber-detay .content-area .content-container .page-title {
    font-size: 20px;
  }
}
.page-haber-detay .content-area .content-container .page-subtitle {
  font-style: Italic;
  font-size: 14px;
  line-height: 150%;
}
.page-haber-detay .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-haber-detay .content-area .content-container .back-button {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  text-transform: capitalize;
  color: #373333;
  margin-bottom: 12px;
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 24px 0;
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .news-article-image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: 8px;
  background-color: #f8f8f8;
  overflow: hidden;
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .news-article-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .mobile-gallery-nav {
  display: flex;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  justify-content: space-between;
  padding: 0 8px;
  pointer-events: none;
}
@media (width >= 48rem) {
  .page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .mobile-gallery-nav {
    display: none;
  }
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .gallery-nav-btn {
  pointer-events: auto;
  flex-shrink: 0;
  background-color: var(--primary-color);
  width: 36px;
  height: 36px;
  color: var(--color-white);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .gallery-nav-btn:hover {
  opacity: 0.9;
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .gallery-nav-btn:active {
  transform: scale(0.95);
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .gallery-nav-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .gallery-nav-btn.disabled:hover {
  transform: none;
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .gallery-nav-btn svg {
  width: 24px;
  height: 24px;
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .news-article-overlay {
  display: none;
}
@media (width >= 48rem) {
  .page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .news-article-overlay {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
  }
  .page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .news-article-overlay.active {
    transform: translateY(0);
  }
  .page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .news-article-overlay.active .overlay-toggle-btn svg {
    transform: rotate(180deg);
  }
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .overlay-toggle-btn {
  position: absolute;
  top: 0;
  transform: translateX(-10%) translateY(-100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  width: 20%;
  gap: 43px;
  background: rgba(230, 230, 230, 0.73);
  border-radius: 29px 29px 0 0;
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .overlay-content {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  max-height: 0;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: max-height 0.18s ease, margin-top 0.18s ease, padding 0.18s ease, opacity 0.15s ease, transform 0.18s ease;
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .overlay-scroll-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--primary-color);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .overlay-scroll-btn:hover {
  transform: scale(1.04);
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .overlay-scroll-btn:active {
  transform: scale(0.97);
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .overlay-scroll-btn svg {
  width: 20px;
  height: 20px;
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .news-article-overlay {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent;
  padding: 0;
}
@media (width >= 48rem) {
  .page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .news-article-overlay {
    display: block;
  }
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .news-article-overlay.active .overlay-content {
  max-height: 120px;
  margin-top: -1px;
  padding: 20px;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  background: rgba(230, 230, 230, 0.9882352941);
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .overlay-thumbnails {
  display: flex;
  flex: 1;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .overlay-thumbnails::-webkit-scrollbar {
  height: 4px;
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .overlay-thumbnails::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .overlay-thumbnails::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .overlay-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 50px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: none;
  opacity: 0.6;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .overlay-thumb:hover {
  opacity: 1;
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .overlay-thumb.active {
  opacity: 1;
  border-color: var(--primary-color);
}
.page-haber-detay .content-area .content-container .news-article .news-article-image-wrapper .overlay-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-haber-detay .content-area .content-container .news-article .news-article-date {
  font-size: 16px;
  line-height: 20px;
  color: #270553;
}
.page-haber-detay .content-area .content-container .news-article .news-article-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 31px;
  text-transform: capitalize;
  color: #333333;
}
.page-haber-detay .content-area .content-container .news-article .news-article-summary {
  margin-top: 12px;
  font-size: 17px;
  line-height: 28px;
  color: rgba(51, 51, 51, 0.72);
}
.page-haber-detay .content-area .content-container .news-article .news-article-image {
  width: 100%;
  object-fit: cover;
  max-height: 400px;
}
.page-haber-detay .content-area .content-container .news-article .news-article-content {
  font-size: 18px;
  line-height: 180%;
  color: #0e0e0e;
}

.page-projeler .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.page-projeler .content-area .content-container {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (width >= 48rem) {
  .page-projeler .content-area .content-container {
    padding: 64px;
  }
}
.page-projeler .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
}
@media (width >= 48rem) {
  .page-projeler .content-area .content-container .page-title {
    font-size: 20px;
  }
}
.page-projeler .content-area .content-container .page-subtitle {
  font-style: Italic;
  font-size: 14px;
  line-height: 150%;
}
.page-projeler .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-projeler .content-area .content-container .projects-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin-top: 24px;
  align-content: start;
}
@media (width >= 48rem) {
  .page-projeler .content-area .content-container .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width >= 64rem) {
  .page-projeler .content-area .content-container .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width >= 96rem) {
  .page-projeler .content-area .content-container .projects-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.page-projeler .content-area .content-container .projects-grid--item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-radius: 5px;
  gap: 9px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  background-color: var(--color-white);
  overflow: hidden;
  max-height: 400px;
  background: #ffffff;
}
.page-projeler .content-area .content-container .projects-grid--item-image {
  width: 100%;
  height: 180px;
  min-height: 180px;
  max-height: 180px;
  object-fit: cover;
  flex-shrink: 0;
}
.page-projeler .content-area .content-container .projects-grid--item-content {
  padding: 22px;
}
.page-projeler .content-area .content-container .projects-grid--item-content-title {
  font-family: var(--font-bigcity);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  display: flex;
  align-items: center;
  color: var(--color-black);
}
@media (width >= 48rem) {
  .page-projeler .content-area .content-container .projects-grid--item-content-title {
    font-size: 24px;
  }
}
.page-projeler .content-area .content-container .projects-grid--item-content-description {
  font-size: 12px;
  line-height: 120%;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #3c3c43;
  margin: 10px 0;
}
@media (width >= 48rem) {
  .page-projeler .content-area .content-container .projects-grid--item-content-description {
    font-size: 14px;
  }
}

.page-proje-detay .content-area {
  background-color: var(--color-white);
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.page-proje-detay .content-area .content-container {
  padding: 24px;
}
@media (width >= 48rem) {
  .page-proje-detay .content-area .content-container {
    padding: 64px;
  }
}
.page-proje-detay .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  text-transform: capitalize;
  margin: 24px 0;
}
.page-proje-detay .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-proje-detay .content-area .content-container .proje-detay-head-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (width >= 64rem) {
  .page-proje-detay .content-area .content-container .proje-detay-head-info {
    flex-direction: row;
  }
}
.page-proje-detay .content-area .content-container .proje-detay-head-info .proje-detay-text-info {
  height: 100%;
  width: 100%;
  text-align: center;
}
@media (width >= 64rem) {
  .page-proje-detay .content-area .content-container .proje-detay-head-info .proje-detay-text-info {
    width: 50%;
    border-right: 1px solid rgba(0, 0, 0, 0.4509803922);
    text-align: left;
  }
}
.page-proje-detay .content-area .content-container .proje-detay-head-info .proje-detay-text-info .info-part > * {
  margin: 0;
}
.page-proje-detay .content-area .content-container .proje-detay-head-info .proje-detay-text-info .info-part {
  padding: 12px 0;
}
.page-proje-detay .content-area .content-container .proje-detay-head-info .proje-detay-text-info .info-part .proje-detay-title {
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: #6c6c6c;
}
.page-proje-detay .content-area .content-container .proje-detay-head-info .proje-detay-text-info .info-part .proje-detay-subtitle {
  font-size: 20px;
  color: var(--primary-color);
}
.page-proje-detay .content-area .content-container .proje-detay-head-info .proje-detay-image-info {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width >= 64rem) {
  .page-proje-detay .content-area .content-container .proje-detay-head-info .proje-detay-image-info {
    width: 50%;
  }
}
.page-proje-detay .content-area .content-container .proje-detay-head-info .proje-detay-image-info img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
}
.page-proje-detay .content-area .content-container .proje-detay-body {
  margin-top: 24px;
}
.page-proje-detay .content-area .content-container .proje-detay-body .proje-detay-body-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  margin-bottom: 12px;
}
.page-proje-detay .content-area .content-container .proje-detay-body * {
  font-size: 18px;
  line-height: 100%;
  margin: 0;
}
.page-proje-detay .content-area .content-container .proje-gallery-swiper {
  width: 100%;
  margin: 24px 0;
}
.page-proje-detay .content-area .content-container .proje-gallery-swiper .proje-gallery-img {
  height: 160px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  margin: auto;
}
.page-proje-detay .content-area .content-container .proje-gallery-swiper .swiper-pagination {
  position: relative;
  margin-top: 12px;
}
.page-proje-detay .content-area .content-container .proje-gallery-swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--primary-color);
  opacity: 0.3;
}
.page-proje-detay .content-area .content-container .proje-gallery-swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.page-proje-detay .content-area .content-container .proje-gallery-swiper .swiper-button-prev-custom,
.page-proje-detay .content-area .content-container .proje-gallery-swiper .swiper-button-next-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  z-index: 10;
  flex-shrink: 0;
  background-color: red;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.page-proje-detay .content-area .content-container .proje-gallery-swiper .swiper-button-prev-custom:hover,
.page-proje-detay .content-area .content-container .proje-gallery-swiper .swiper-button-next-custom:hover {
  background-color: rgb(204.3, 5.4, 17.1);
}
.page-proje-detay .content-area .content-container .proje-gallery-swiper .swiper-button-prev-custom.swiper-button-disabled,
.page-proje-detay .content-area .content-container .proje-gallery-swiper .swiper-button-next-custom.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.page-proje-detay .content-area .content-container .proje-gallery-swiper .swiper-button-prev-custom.swiper-button-disabled:hover,
.page-proje-detay .content-area .content-container .proje-gallery-swiper .swiper-button-next-custom.swiper-button-disabled:hover {
  transform: none;
}
.page-proje-detay .content-area .content-container .proje-gallery-swiper .swiper-button-prev-custom svg,
.page-proje-detay .content-area .content-container .proje-gallery-swiper .swiper-button-next-custom svg {
  width: 40px;
  height: 40px;
}
.page-proje-detay .content-area .content-container .proje-gallery-swiper .swiper-button-prev-custom.swiper-button-prev-custom,
.page-proje-detay .content-area .content-container .proje-gallery-swiper .swiper-button-next-custom.swiper-button-prev-custom {
  left: 10px;
}
.page-proje-detay .content-area .content-container .proje-gallery-swiper .swiper-button-prev-custom.swiper-button-next-custom,
.page-proje-detay .content-area .content-container .proje-gallery-swiper .swiper-button-next-custom.swiper-button-next-custom {
  right: 10px;
}

.page-aramalar .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.page-aramalar .content-area .content-container {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (width >= 48rem) {
  .page-aramalar .content-area .content-container {
    padding: 64px;
  }
}
.page-aramalar .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
}
@media (width >= 48rem) {
  .page-aramalar .content-area .content-container .page-title {
    font-size: 20px;
  }
}
.page-aramalar .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-aramalar .search-results {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
.page-aramalar .search-results-category {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--color-white);
}
.page-aramalar .search-results-category-title {
  margin: 0;
  padding: 16px 20px;
  font-family: var(--font-bigcity);
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  color: var(--primary-color);
  background-color: #fbfbfb;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
@media (width >= 48rem) {
  .page-aramalar .search-results-category-title {
    font-size: 22px;
  }
}
.page-aramalar .search-results-list {
  display: flex;
  flex-direction: column;
}
.page-aramalar .search-result-item {
  display: block;
  padding: 18px 20px;
  color: var(--color-black);
  transition: background-color 0.2s ease;
}
.page-aramalar .search-result-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.page-aramalar .search-result-item:hover {
  background-color: #fbfbfb;
}
.page-aramalar .search-result-title {
  margin: 0 0 8px;
  font-family: var(--font-bigcity);
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
  color: #3e3232;
}
.page-aramalar .search-result-description {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  color: rgba(62, 50, 50, 0.75);
}

.page-duyurular .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.page-duyurular .content-area .content-container {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (width >= 48rem) {
  .page-duyurular .content-area .content-container {
    padding: 64px;
  }
}
.page-duyurular .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
}
@media (width >= 48rem) {
  .page-duyurular .content-area .content-container .page-title {
    font-size: 20px;
  }
}
.page-duyurular .content-area .content-container .page-subtitle {
  font-style: Italic;
  font-size: 14px;
  line-height: 150%;
}
.page-duyurular .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-duyurular .content-area .content-container .notices-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin-top: 24px;
  align-content: start;
}
@media (width >= 80rem) {
  .page-duyurular .content-area .content-container .notices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-duyurular .content-area .content-container .notices-grid--item {
  background-color: var(--color-white);
  box-shadow: 0px 30px 60px 0px rgba(85, 32, 32, 0.1490196078);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 8px;
  gap: 12px;
}
@media (width >= 48rem) {
  .page-duyurular .content-area .content-container .notices-grid--item {
    flex-direction: row;
    max-height: 220px;
  }
}
@media (width >= 80rem) {
  .page-duyurular .content-area .content-container .notices-grid--item {
    padding: 16px;
  }
}
.page-duyurular .content-area .content-container .notices-grid--item-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
}
.page-duyurular .content-area .content-container .notices-grid--item-image {
  width: 200px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
}
@media (width >= 48rem) {
  .page-duyurular .content-area .content-container .notices-grid--item-image {
    width: 100%;
    height: 100%;
    max-width: 180px;
    max-height: 180px;
    flex-shrink: 0;
  }
}
.page-duyurular .content-area .content-container .notices-grid--item-date {
  font-size: 12px;
  line-height: 15px;
  color: #98a0a2;
}
.page-duyurular .content-area .content-container .notices-grid--item-title {
  font-weight: 500;
  font-size: 13px;
  line-height: 100%;
  text-transform: capitalize;
}
.page-duyurular .content-area .content-container .notices-grid--item-description {
  font-size: 12px;
  line-height: 15px;
  color: #98a0a2;
}
@media (width >= 48rem) {
  .page-duyurular .content-area .content-container .notices-grid--item-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.page-duyurular .content-area .content-container .notices-grid--item-button {
  margin-top: auto;
  color: var(--primary-color);
  align-items: center;
  display: flex;
}
.page-duyurular .content-area .content-container .notices-grid--item-button svg {
  margin-left: 8px;
}
.page-duyurular .content-area .content-container .notices-grid--item-button svg path {
  fill: var(--primary-color);
}

.page-duyuru-detay .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.page-duyuru-detay .content-area .content-container {
  padding: 24px;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (width >= 48rem) {
  .page-duyuru-detay .content-area .content-container {
    padding: 64px;
  }
}
.page-duyuru-detay .content-area .content-container .bg-icon {
  position: absolute;
  width: 100%;
  height: 70%;
  opacity: 0.05;
  right: -30%;
  bottom: -5%;
  transform: rotate(-25deg);
  z-index: 0;
}
.page-duyuru-detay .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
}
@media (width >= 48rem) {
  .page-duyuru-detay .content-area .content-container .page-title {
    font-size: 20px;
  }
}
.page-duyuru-detay .content-area .content-container .page-subtitle {
  font-style: Italic;
  font-size: 14px;
  line-height: 150%;
}
.page-duyuru-detay .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-duyuru-detay .content-area .content-container .back-button {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  text-transform: capitalize;
  color: #373333;
  margin-bottom: 12px;
}
.page-duyuru-detay .content-area .content-container .quick-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-duyuru-detay .content-area .content-container .quick-links-list .quick-link-item .quick-link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-duyuru-detay .content-area .content-container .quick-links-list .quick-link-item .quick-link .quick-link-icon-wrapper {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}
.page-duyuru-detay .content-area .content-container .quick-links-list .quick-link-item .quick-link .quick-link-text {
  display: flex;
  flex-direction: column;
}
.page-duyuru-detay .content-area .content-container .quick-links-list .quick-link-item .quick-link .quick-link-text .quick-link-title {
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  text-transform: capitalize;
}
.page-duyuru-detay .content-area .content-container .quick-links-list .quick-link-item .quick-link .quick-link-text .quick-link-subtitle {
  font-style: Italic;
  font-size: 12px;
  line-height: 20px;
  text-transform: capitalize;
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 24px 0;
  max-height: 500px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .notice-article-image {
  width: 100%;
  display: block;
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .mobile-gallery-nav {
  display: flex;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  justify-content: space-between;
  padding: 0 8px;
  pointer-events: none;
}
@media (width >= 48rem) {
  .page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .mobile-gallery-nav {
    display: none;
  }
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .gallery-nav-btn {
  pointer-events: auto;
  flex-shrink: 0;
  background-color: var(--primary-color);
  width: 36px;
  height: 36px;
  color: var(--color-white);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .gallery-nav-btn:hover {
  opacity: 0.9;
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .gallery-nav-btn:active {
  transform: scale(0.95);
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .gallery-nav-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .gallery-nav-btn.disabled:hover {
  transform: none;
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .gallery-nav-btn svg {
  width: 24px;
  height: 24px;
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .notice-article-overlay {
  display: none;
}
@media (width >= 48rem) {
  .page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .notice-article-overlay {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  .page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .notice-article-overlay.active {
    transform: translateY(0);
  }
  .page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .notice-article-overlay.active .overlay-toggle-btn svg {
    transform: rotate(180deg);
  }
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .overlay-toggle-btn {
  position: absolute;
  top: 0;
  transform: translateX(-10%) translateY(-100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  width: 20%;
  gap: 43px;
  background: rgba(230, 230, 230, 0.73);
  border-radius: 29px 29px 0 0;
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .overlay-content {
  color: white;
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .notice-article-overlay {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(230, 230, 230, 0.9882352941);
  padding: 20px;
  padding-top: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
@media (width >= 48rem) {
  .page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .notice-article-overlay {
    display: block;
  }
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .notice-article-overlay.active {
  transform: translateY(0);
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .overlay-thumbnails {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .overlay-thumbnails::-webkit-scrollbar {
  height: 4px;
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .overlay-thumbnails::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .overlay-thumbnails::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .overlay-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 50px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: none;
  opacity: 0.6;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .overlay-thumb:hover {
  opacity: 1;
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .overlay-thumb.active {
  opacity: 1;
  border-color: var(--primary-color);
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-image-wrapper .overlay-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-date {
  font-size: 16px;
  line-height: 20px;
  color: #270553;
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 31px;
  text-transform: capitalize;
  color: #333333;
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-image {
  width: 100%;
  object-fit: cover;
  max-height: 400px;
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-content {
  font-size: 16px;
  line-height: 180%;
  color: #0e0e0e;
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-attachments .attachments-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-attachments .attachments-list .attachment-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-attachments .attachments-list .attachment-item .attachment-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-color);
}
.page-duyuru-detay .content-area .content-container .notice-article .notice-article-attachments .attachments-list .attachment-item .attachment-text {
  font-size: 16px;
  line-height: 20px;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: var(--secondary-color);
}

.page-ihaleler .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.page-ihaleler .content-area .content-container {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (width >= 48rem) {
  .page-ihaleler .content-area .content-container {
    padding: 64px;
  }
}
.page-ihaleler .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
}
@media (width >= 48rem) {
  .page-ihaleler .content-area .content-container .page-title {
    font-size: 20px;
  }
}
.page-ihaleler .content-area .content-container .page-subtitle {
  font-style: Italic;
  font-size: 14px;
  line-height: 150%;
}
.page-ihaleler .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-ihaleler .content-area .content-container .notices-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin-top: 24px;
  align-content: start;
}
@media (width >= 80rem) {
  .page-ihaleler .content-area .content-container .notices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-ihaleler .content-area .content-container .notices-grid--item {
  background-color: var(--color-white);
  box-shadow: 0px 30px 60px 0px rgba(85, 32, 32, 0.1490196078);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 8px;
  gap: 12px;
}
@media (width >= 48rem) {
  .page-ihaleler .content-area .content-container .notices-grid--item {
    flex-direction: row;
    max-height: 220px;
  }
}
@media (width >= 80rem) {
  .page-ihaleler .content-area .content-container .notices-grid--item {
    padding: 16px;
  }
}
.page-ihaleler .content-area .content-container .notices-grid--item-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
}
.page-ihaleler .content-area .content-container .notices-grid--item-image {
  width: 200px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
}
@media (width >= 48rem) {
  .page-ihaleler .content-area .content-container .notices-grid--item-image {
    width: 100%;
    height: 100%;
    max-width: 180px;
    max-height: 180px;
    flex-shrink: 0;
  }
}
.page-ihaleler .content-area .content-container .notices-grid--item-date {
  font-size: 12px;
  line-height: 15px;
  color: #98a0a2;
}
.page-ihaleler .content-area .content-container .notices-grid--item-title {
  font-weight: 500;
  font-size: 13px;
  line-height: 100%;
  text-transform: capitalize;
}
.page-ihaleler .content-area .content-container .notices-grid--item-description {
  font-size: 12px;
  line-height: 15px;
  color: #98a0a2;
}
@media (width >= 48rem) {
  .page-ihaleler .content-area .content-container .notices-grid--item-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.page-ihaleler .content-area .content-container .notices-grid--item-button {
  margin-top: auto;
  color: var(--primary-color);
  align-items: center;
  display: flex;
}
.page-ihaleler .content-area .content-container .notices-grid--item-button svg {
  margin-left: 8px;
}
.page-ihaleler .content-area .content-container .notices-grid--item-button svg path {
  fill: var(--primary-color);
}

.page-ihale-detay .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.page-ihale-detay .content-area .content-container {
  padding: 24px;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (width >= 48rem) {
  .page-ihale-detay .content-area .content-container {
    padding: 64px;
  }
}
.page-ihale-detay .content-area .content-container .bg-icon {
  position: absolute;
  width: 100%;
  height: 70%;
  opacity: 0.05;
  right: -30%;
  bottom: -5%;
  transform: rotate(-25deg);
  z-index: 0;
}
.page-ihale-detay .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
}
@media (width >= 48rem) {
  .page-ihale-detay .content-area .content-container .page-title {
    font-size: 20px;
  }
}
.page-ihale-detay .content-area .content-container .page-subtitle {
  font-style: Italic;
  font-size: 14px;
  line-height: 150%;
}
.page-ihale-detay .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-ihale-detay .content-area .content-container .back-button {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  text-transform: capitalize;
  color: #373333;
  margin-bottom: 12px;
}
.page-ihale-detay .content-area .content-container .quick-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-ihale-detay .content-area .content-container .quick-links-list .quick-link-item .quick-link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-ihale-detay .content-area .content-container .quick-links-list .quick-link-item .quick-link .quick-link-icon-wrapper {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}
.page-ihale-detay .content-area .content-container .quick-links-list .quick-link-item .quick-link .quick-link-text {
  display: flex;
  flex-direction: column;
}
.page-ihale-detay .content-area .content-container .quick-links-list .quick-link-item .quick-link .quick-link-text .quick-link-title {
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  text-transform: capitalize;
}
.page-ihale-detay .content-area .content-container .quick-links-list .quick-link-item .quick-link .quick-link-text .quick-link-subtitle {
  font-style: Italic;
  font-size: 12px;
  line-height: 20px;
  text-transform: capitalize;
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 24px 0;
  max-height: 500px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .notice-article-image {
  width: 100%;
  display: block;
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .mobile-gallery-nav {
  display: flex;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  justify-content: space-between;
  padding: 0 8px;
  pointer-events: none;
}
@media (width >= 48rem) {
  .page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .mobile-gallery-nav {
    display: none;
  }
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .gallery-nav-btn {
  pointer-events: auto;
  flex-shrink: 0;
  background-color: var(--primary-color);
  width: 36px;
  height: 36px;
  color: var(--color-white);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .gallery-nav-btn:hover {
  opacity: 0.9;
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .gallery-nav-btn:active {
  transform: scale(0.95);
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .gallery-nav-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .gallery-nav-btn.disabled:hover {
  transform: none;
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .gallery-nav-btn svg {
  width: 24px;
  height: 24px;
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .notice-article-overlay {
  display: none;
}
@media (width >= 48rem) {
  .page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .notice-article-overlay {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  .page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .notice-article-overlay.active {
    transform: translateY(0);
  }
  .page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .notice-article-overlay.active .overlay-toggle-btn svg {
    transform: rotate(180deg);
  }
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .overlay-toggle-btn {
  position: absolute;
  top: 0;
  transform: translateX(-10%) translateY(-100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  width: 20%;
  gap: 43px;
  background: rgba(230, 230, 230, 0.73);
  border-radius: 29px 29px 0 0;
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .overlay-content {
  color: white;
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .notice-article-overlay {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(230, 230, 230, 0.9882352941);
  padding: 20px;
  padding-top: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
@media (width >= 48rem) {
  .page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .notice-article-overlay {
    display: block;
  }
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .notice-article-overlay.active {
  transform: translateY(0);
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .overlay-thumbnails {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .overlay-thumbnails::-webkit-scrollbar {
  height: 4px;
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .overlay-thumbnails::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .overlay-thumbnails::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .overlay-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 50px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: none;
  opacity: 0.6;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .overlay-thumb:hover {
  opacity: 1;
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .overlay-thumb.active {
  opacity: 1;
  border-color: var(--primary-color);
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-image-wrapper .overlay-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-date {
  font-size: 16px;
  line-height: 20px;
  color: #270553;
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 31px;
  text-transform: capitalize;
  color: #333333;
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-image {
  width: 100%;
  object-fit: cover;
  max-height: 400px;
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-content {
  font-size: 16px;
  line-height: 180%;
  color: #0e0e0e;
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-attachments .attachments-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-attachments .attachments-list .attachment-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-attachments .attachments-list .attachment-item .attachment-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-color);
}
.page-ihale-detay .content-area .content-container .notice-article .notice-article-attachments .attachments-list .attachment-item .attachment-text {
  font-size: 16px;
  line-height: 20px;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: var(--secondary-color);
}

.page-etkinlikler .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.page-etkinlikler .content-area .content-container {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (width >= 48rem) {
  .page-etkinlikler .content-area .content-container {
    padding: 64px;
  }
}
.page-etkinlikler .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
}
@media (width >= 48rem) {
  .page-etkinlikler .content-area .content-container .page-title {
    font-size: 20px;
  }
}
.page-etkinlikler .content-area .content-container .page-subtitle {
  font-style: Italic;
  font-size: 14px;
  line-height: 150%;
}
.page-etkinlikler .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-etkinlikler .content-area .content-container .activities-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin-top: 24px;
  align-content: start;
}
@media (width >= 48rem) {
  .page-etkinlikler .content-area .content-container .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width >= 96rem) {
  .page-etkinlikler .content-area .content-container .activities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page-etkinlikler .content-area .content-container .activities-grid--item {
  background-color: var(--color-white);
  box-shadow: 0px 30px 60px 0px rgba(85, 32, 32, 0.1490196078);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 11px 16px;
  gap: 12px;
}
@media (width >= 48rem) {
  .page-etkinlikler .content-area .content-container .activities-grid--item {
    padding: 22px 32px;
  }
}
.page-etkinlikler .content-area .content-container .activities-grid--item-date-wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.page-etkinlikler .content-area .content-container .activities-grid--item-date-wrapper .activities-grid--item-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: inherit;
}
.page-etkinlikler .content-area .content-container .activities-grid--item-date-wrapper .activities-grid--item-date span:first-child {
  font-size: 2.2em;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
}
.page-etkinlikler .content-area .content-container .activities-grid--item-date-wrapper .activities-grid--item-date span:not(:first-child) {
  font-size: 1em;
  font-weight: normal;
  line-height: 1.1;
  color: #5c5c5c;
}
.page-etkinlikler .content-area .content-container .activities-grid--item-date-wrapper .activities-grid--item-info-div {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.page-etkinlikler .content-area .content-container .activities-grid--item-date-wrapper .activities-grid--item-info-div .activities-grid--item-info-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  text-transform: capitalize;
  color: #333333;
}
.page-etkinlikler .content-area .content-container .activities-grid--item-date-wrapper .activities-grid--item-info-div .activities-grid--item-info-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #5c5c5c;
  margin-top: 10px;
}
.page-etkinlikler .content-area .content-container .activities-grid--item-date-wrapper .activities-grid--item-info-div .activities-grid--item-info-location svg {
  width: 16px;
  height: 16px;
}
.page-etkinlikler .content-area .content-container .activities-grid--item-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}
.page-etkinlikler .content-area .content-container .activities-grid--item-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-etkinlikler .content-area .content-container .activities-grid--item-description {
  font-size: 14px;
  line-height: 1.5;
  color: #5c5c5c;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-etkinlikler .content-area .content-container .activities-grid--item-button {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 14px;
  margin-top: auto;
  margin-left: auto;
}
.page-etkinlikler .content-area .content-container .activities-grid--item-button svg {
  transition: transform 0.2s ease;
}
.page-etkinlikler .content-area .content-container .activities-grid--item:hover .page-etkinlikler .content-area .content-container .activities-grid--item-button svg {
  transform: translateX(4px);
}

.page-etkinlik-detay .sidebar-quick-links {
  overflow: hidden;
}
.page-etkinlik-detay .sidebar-quick-links .other-activities-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.page-etkinlik-detay .sidebar-quick-links .other-activities-list .other-activity-item {
  list-style: none;
  margin-top: 25px;
}
.page-etkinlik-detay .sidebar-quick-links .other-activities-list .other-activity-item .other-activity-link {
  position: relative;
}
.page-etkinlik-detay .sidebar-quick-links .other-activities-list .other-activity-item .other-activity-link .other-activity-date {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-50%) translateX(10%);
  background-color: var(--color-white);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.page-etkinlik-detay .sidebar-quick-links .other-activities-list .other-activity-item .other-activity-link .other-activity-date span:first-child {
  line-height: 1;
  color: #5c5c5c;
  text-transform: uppercase;
}
.page-etkinlik-detay .sidebar-quick-links .other-activities-list .other-activity-item .other-activity-link .other-activity-date span:not(:first-child) {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.1;
  color: var(--primary-color);
}
.page-etkinlik-detay .sidebar-quick-links .other-activities-list .other-activity-item .other-activity-link .other-activity-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.page-etkinlik-detay .sidebar-quick-links .other-activities-list .other-activity-item .other-activity-link .other-activity-title {
  margin-top: 12px !important;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  color: #333333;
  margin: 0;
}
.page-etkinlik-detay .sidebar-quick-links .other-activities-list .other-activity-item .other-activity-link .other-activity-excerpt {
  font-size: 14px;
  line-height: 21px;
  color: #98a0a2;
}
.page-etkinlik-detay .sidebar-quick-links .other-activities-list .other-activity-item .other-activity-link .other-activity-button {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 13px 16px;
  gap: 11px;
  background: var(--color-white);
  border: 0.5px solid var(--primary-color);
  border-radius: 8px;
  align-self: stretch;
  flex-grow: 0;
  font-size: 15px;
  line-height: 20px;
  text-transform: capitalize;
  color: var(--primary-color);
  transition: background-color 0.2s ease;
}
.page-etkinlik-detay .sidebar-quick-links .other-activities-list .other-activity-item .other-activity-link .other-activity-button:hover {
  background-color: var(--primary-color);
  color: var(--color-white);
  border: 0.5px solid var(--color-white);
}
.page-etkinlik-detay .sidebar-quick-links .other-activities-list .other-activity-item .other-activity-link .other-activity-button:hover svg path {
  fill: var(--color-white);
}
.page-etkinlik-detay .sidebar-all-activities-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-etkinlik-detay .sidebar-all-activities-box .all-activities-button {
  font-size: 20px;
  line-height: 20px;
  text-transform: capitalize;
  color: var(--primary-color);
}
.page-etkinlik-detay .content-area-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.page-etkinlik-detay .content-area-wrapper .content-area {
  background-color: var(--color-white);
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  height: fit-content;
  display: flex;
  flex-direction: column;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container {
  padding: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (width >= 48rem) {
  .page-etkinlik-detay .content-area-wrapper .content-area .content-container {
    padding: 64px;
  }
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .bg-icon {
  position: absolute;
  width: 100%;
  height: 70%;
  opacity: 0.05;
  right: -30%;
  bottom: -5%;
  transform: rotate(-25deg);
  z-index: 0;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
}
@media (width >= 48rem) {
  .page-etkinlik-detay .content-area-wrapper .content-area .content-container .page-title {
    font-size: 20px;
  }
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .page-subtitle {
  font-style: Italic;
  font-size: 14px;
  line-height: 150%;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .back-button {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  text-transform: capitalize;
  color: #373333;
  margin: 0 0 12px 0;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container #map {
  z-index: 1;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 24px 0;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .activity-article-image {
  width: 100%;
  max-height: 500px;
  display: block;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .mobile-gallery-nav {
  display: flex;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  justify-content: space-between;
  padding: 0 8px;
  pointer-events: none;
}
@media (width >= 48rem) {
  .page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .mobile-gallery-nav {
    display: none;
  }
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .gallery-nav-btn {
  pointer-events: auto;
  flex-shrink: 0;
  background-color: var(--primary-color);
  width: 36px;
  height: 36px;
  color: var(--color-white);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .gallery-nav-btn:hover {
  opacity: 0.9;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .gallery-nav-btn:active {
  transform: scale(0.95);
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .gallery-nav-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .gallery-nav-btn.disabled:hover {
  transform: none;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .gallery-nav-btn svg {
  width: 24px;
  height: 24px;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .activity-article-overlay {
  display: none;
}
@media (width >= 48rem) {
  .page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .activity-article-overlay {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  .page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .activity-article-overlay.active {
    transform: translateY(0);
  }
  .page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .activity-article-overlay.active .overlay-toggle-btn svg {
    transform: rotate(180deg);
  }
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .overlay-toggle-btn {
  position: absolute;
  top: 0;
  transform: translateX(-10%) translateY(-100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  width: 20%;
  gap: 43px;
  background: rgba(230, 230, 230, 0.73);
  border-radius: 29px 29px 0 0;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .overlay-content {
  color: white;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .activity-article-overlay {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(230, 230, 230, 0.9882352941);
  padding: 20px;
  padding-top: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
@media (width >= 48rem) {
  .page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .activity-article-overlay {
    display: block;
  }
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .activity-article-overlay.active {
  transform: translateY(0);
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .overlay-thumbnails {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .overlay-thumbnails::-webkit-scrollbar {
  height: 4px;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .overlay-thumbnails::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .overlay-thumbnails::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .overlay-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 50px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: none;
  opacity: 0.6;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .overlay-thumb:hover {
  opacity: 1;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .overlay-thumb.active {
  opacity: 1;
  border-color: var(--primary-color);
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image-wrapper .overlay-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-date {
  font-size: 16px;
  line-height: 20px;
  color: #270553;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 31px;
  text-transform: capitalize;
  color: #333333;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-image {
  width: 100%;
  object-fit: cover;
  max-height: 400px;
  border-radius: 12px;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-content {
  font-size: 16px;
  line-height: 180%;
  color: #0e0e0e;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (width >= 64rem) {
  .page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-content {
    flex-direction: row;
    gap: 24px;
  }
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-content .activity-article-content-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  width: 100%;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-content .activity-article-content-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-content .activity-article-content-info .activity-article-content-info-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  text-transform: capitalize;
  color: #3e3232;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-content .activity-article-content-info .activity-article-content-info-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px;
  gap: 10px;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 17px;
}
@media (width >= 48rem) {
  .page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-content .activity-article-content-info .activity-article-content-info-item {
    width: 100%;
    min-width: max-content;
  }
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-content .activity-article-content-info .activity-article-content-info-item svg path {
  fill: var(--primary-color);
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-content .activity-article-content-info .activity-article-content-info-item .info-item-title {
  font-size: 16px;
  line-height: 20px;
  font-variant: all-small-caps;
  color: #3e3232;
  font-weight: 400;
  margin: 0;
}
.page-etkinlik-detay .content-area-wrapper .content-area .content-container .activity-article .activity-article-content .activity-article-content-info .activity-article-content-info-item .info-item-description {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  font-variant: all-small-caps;
  color: var(--primary-color);
}
.page-etkinlik-detay #map {
  width: 100%;
  height: 400px;
  border-radius: 12px;
}

.page-rapor-ve-belgeler .content-area {
  background-color: var(--color-white);
  flex: 1;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.page-rapor-ve-belgeler .content-area .content-container {
  padding: 24px;
}
@media (width >= 48rem) {
  .page-rapor-ve-belgeler .content-area .content-container {
    padding: 64px;
  }
}
.page-rapor-ve-belgeler .content-area .content-container .page-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
}
@media (width >= 48rem) {
  .page-rapor-ve-belgeler .content-area .content-container .page-title {
    font-size: 20px;
  }
}
.page-rapor-ve-belgeler .content-area .content-container .page-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-rapor-ve-belgeler .content-area .content-container .page-description {
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}
.page-rapor-ve-belgeler .content-area .content-container .page-image {
  width: 100%;
  height: auto;
  margin: 24px 0;
  object-fit: cover;
  max-height: 600px;
}
.page-rapor-ve-belgeler .content-area .content-container .section-title {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-transform: capitalize;
  color: #3e3232;
}
.page-rapor-ve-belgeler .content-area .content-container .section-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-right: 14px;
}
.page-rapor-ve-belgeler .content-area .content-container .download-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 10px;
  transition: background-color 0.3s ease;
}
.page-rapor-ve-belgeler .content-area .content-container .download-link:nth-child(even) {
  background-color: #f3f3f3;
}
.page-rapor-ve-belgeler .content-area .content-container .download-link:hover {
  background-color: #e0e0e0;
}
.page-rapor-ve-belgeler .content-area .content-container .download-link .download-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  flex-shrink: 0;
  padding: 3px;
  color: var(--secondary-color);
}
@media (width >= 48rem) {
  .page-rapor-ve-belgeler .content-area .content-container .download-link .download-icon {
    padding: 10px;
  }
}
.page-rapor-ve-belgeler .content-area .content-container .download-link .download-text {
  display: flex;
  flex-direction: column;
}
.page-rapor-ve-belgeler .content-area .content-container .download-link .download-text .download-title {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-transform: capitalize;
  color: var(--secondary-color);
}
.page-rapor-ve-belgeler .content-area .content-container .download-link .download-text .download-subtitle {
  font-style: italic;
  font-size: 12px;
  line-height: 20px;
  text-transform: capitalize;
}
.page-rapor-ve-belgeler .content-area .content-container .dropdown-section {
  margin-top: 16px;
}
.page-rapor-ve-belgeler .content-area .content-container .dropdown-section .section-title {
  cursor: pointer;
  display: flex;
  align-items: center;
  user-select: none;
  margin: 12px 0;
}
.page-rapor-ve-belgeler .content-area .content-container .dropdown-section .section-title svg {
  transition: transform 0.3s ease;
  transform-origin: center;
}
.page-rapor-ve-belgeler .content-area .content-container .dropdown-section.open .section-title svg {
  transform: rotate(-90deg);
}
.page-rapor-ve-belgeler .content-area .content-container .dropdown-section .dropdown-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.page-rapor-ve-belgeler .content-area .content-container .dropdown-section .dropdown-content > div {
  overflow: hidden;
}
.page-rapor-ve-belgeler .content-area .content-container .dropdown-section.open .dropdown-content {
  grid-template-rows: 1fr;
}

.page-pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin-top: auto;
  padding-top: 24px;
  padding-inline: 8px;
  box-sizing: border-box;
  flex-shrink: 0;
  flex-wrap: nowrap;
}
.page-pagination .gallery-first,
.page-pagination .gallery-last {
  display: none;
}
.page-pagination .gallery-page:not(.active) {
  display: none;
}
.page-pagination .gallery-page {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 8px;
  padding: 6px;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-black);
  opacity: 0.6;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.page-pagination .gallery-page.active {
  background: #f5f5f5;
  opacity: 1;
}
.page-pagination .gallery-nav {
  height: 32px;
  flex: 0 0 auto;
  border-radius: 8px;
  padding: 6px;
  background: #f5f5f5;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}
.page-pagination .gallery-nav svg {
  width: 18px;
  height: 18px;
  display: block;
}
.page-pagination .gallery-nav.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
@media (width >= 48rem) {
  .page-pagination {
    gap: 10px;
    padding-top: 32px;
  }
  .page-pagination .gallery-first,
  .page-pagination .gallery-last {
    display: flex;
  }
  .page-pagination .gallery-page:not(.active) {
    display: inline-flex;
  }
  .page-pagination .gallery-page {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 12px;
    padding: 8px;
    font-size: 18px;
  }
  .page-pagination .gallery-nav {
    height: 40px;
    border-radius: 12px;
    padding: 8px;
  }
  .page-pagination .gallery-nav svg {
    width: 24px;
    height: 24px;
  }
}

/*# sourceMappingURL=styles.css.map */
