:root {
  --brand_primary: #06102A;
  --brand_color_1: #005CA9;
  --brand_color_2: #E30613;
  --brand_color_3: #6893C5;
  --brand_color_4: #00A1AD;
  --brand_color_5: #F7A823;
  --brand_color_6: #f4a112;
  --pantone-cool-gray-11c: #575756;
  --pantone-cool-gray-7c: #B2B2B2;
  --background-color: #fafafa;
  --text-color: #1f1f1f;
}

.white {
  color: var(--background-color);
}

.brand_primary {
  color: var(--brand_primary);
}

.brand_color_1 {
  color: var(--brand_color_1);
}

.brand_color_2 {
  color: var(--brand_color_2);
}

.brand_color_3 {
  color: var(--brand_color_3);
}

.brand_color_4 {
  color: var(--brand_color_4);
}

.brand_color_5 {
  color: var(--brand_color_5);
}

h1 {
  font-family: 'Ubuntu';
  width: 100%;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--background-color);
}

h2 {
  font-family: 'Ubuntu';
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.1em;
}

h3 {
  font-family: 'Ubuntu';
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 36px;
  padding: 0;
  margin: 0;
  color: var(--text-color);
}

h4 {
  font-family: 'Ubuntu';
  font-size: 22px;
  font-weight: 400;
  line-height: 25px;
}

h5 {
  font-family: 'Ubuntu';
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
}

h6 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.36em;
  line-height: 24px;
  padding-bottom: 24px;
  margin: 0;
}

p {
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
  padding: 0px;
}

.title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.02em;
}

.subtitle {
  font-family: 'Ubuntu', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
}

.date {
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.02em;
  color: var(--pantone-cool-gray-11c);
}

body {
  position: relative;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 18px;
  background-color: var(--background-color);
}

a {
  text-decoration: none;
}

li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

ul {
  margin: 0;
  padding: 0;
}

.container-1240 {
  width: 1240px;
  margin: 0;
  padding: 0;
  z-index: 99;
  position: relative;
}

.container-full {
  width: 100%;
  margin: 0;
  padding: 0;
}

.container-820 {
  width: 820px;
  margin: 0;
  padding: 20px;
}

.container-fill {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.container-1024 {
  width: 1024px;
  margin: 0;
  padding: 0;
  padding-right: 32px;
  padding-left: 32px;
  z-index: 99;
  position: relative;
  max-width: calc(100% - 64px);
}

.icons {
  position: absolute;
  top: 100px;
  right: 0px;
  display: flex;
  align-items: center;
  top: calc(100% + 20px);
}

.icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 8px;
  cursor: pointer;
}

.icon {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--brand_primary);
  border: 0;
  height: 40px;
  width: 40px;
  margin: 0;
  padding: 0;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

button.icon {
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

button.icon:active {
  box-shadow: 0 2px 5px rgba(0, 92, 169, 0.18);
  transform: translateY(0);
}

button.icon:focus-visible {
  border-color: var(--background-color);
  outline: 2px solid var(--brand_color_1);
  outline-offset: 3px;
}

.icon-img {
  display: block;
  flex: 0 0 auto;
  height: 20px;
  width: auto;
  margin: auto;
  transition: transform 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  button.icon:hover {
    background-color: var(--brand_color_1);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 5px 12px rgba(0, 92, 169, 0.24);
    transform: translateY(-1px);
  }

  button.icon:hover .icon-img {
    transform: scale(1.06);
  }

  button.icon.scrollToTop:hover {
    background-color: var(--brand_primary);
    border-color: rgba(0, 92, 169, 0.85);
    box-shadow: 0 2px 8px rgba(6, 16, 42, 0.16);
    transform: none;
  }

  button.icon.scrollToTop:hover .icon-img {
    transform: translateY(-2px) rotate(180deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  button.icon,
  button.icon .icon-img {
    transition: none;
  }

  button.icon:hover,
  button.icon:hover .icon-img {
    transform: none;
  }

  button.icon.scrollToTop .icon-img,
  button.icon.scrollToTop:hover .icon-img {
    transform: rotate(180deg);
  }
}

.navigation {
  position: relative;
  top: -32px;
  display: flex;
  justify-content: center;
}

.navigation-items {
  background-color: var(--background-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 27px;
  border: 1px solid #06102A;
  border-radius: 5px;
  padding: 20px 4px;
  margin: 0;
  list-style: none;
}

.navigation-item {
  color: var(--brand_primary);
}

.content {
  display: flex;
  justify-content: center;
  padding: 40px;
}

.content-title {
  padding-top: 40px;
  padding-bottom: 20px;
}

.content-text {
  padding-bottom: 20px;
  text-align: justify;
}

.content-subtitle {
  display: flex;
  flex-direction: row;
  padding-top: 20px;
  padding-bottom: 20px;
}

.content-subtitle span {
  color: var(--pantone-cool-gray-11c);
  font-weight: 400;
  font-size: 20px;
  padding-left: 10px;
}

.link-all-end {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-self: flex-end;
  width: 100%;
  color: var(--brand_color_1);
}

.link-all-start {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: center;
  width: 100%;
  color: var(--brand_color_1);
}

.arrow-right {
  height: 20px;
  width: 20px;
  margin-left: 4px;
}

.content-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.contact-item {
  display: flex;
  padding-bottom: 24px;
}

.contact-item img {
  padding-right: 12px;
}

.contact-map {
  padding-top: 60px;
  padding-bottom: 40px;
}

.contact-map iframe {
  width: 100%;
  height: 410px;
  border-radius: 5px;
  border: 2px solid var(--brand_primary);
}

.contact-item a {
  text-decoration: none;
  color: var(--brand_primary);
}

.news-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 0px;
  padding-bottom: 80px;
}

.new-container {
  padding-bottom: 20px;
  width: 260px;
  width: 100%;
}

.new-img-container img {
  min-height: 180px;
  max-height: 180px !important;
  object-fit: cover;
}

.new-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 10px;
  width: 100%;

}

.new-date,
.paper-date {
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  margin: 0;
  padding-bottom: 8px;
  color: var(--pantone-cool-gray-11c);
}

.new-title {
  padding-bottom: 24px;
  font-size: 22px;
  width: 100%;
}

.content-photos .photo {
  width: 240px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.content-photos .partner-photo {

  width: 100%;
  max-width: 194px;
  padding: 12px;

  height: 194px;
  border: 5px solid #02356f22 !important;
  box-sizing: border-box;
  background: var(--background-color);

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  -webkit-box-shadow: 0px 1px 24px -6px rgba(6, 16, 42, 0.2);
  -moz-box-shadow: 0px 1px 24px -6px rgba(6, 16, 42, 0.2);
  box-shadow: 0px 1px 24px -6px rgba(6, 16, 42, 0.2);

}

.content-photos .partner-photo a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.content-photos .partner-photo img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform: scale(clamp(1, var(--partner-logo-scale, 1), 2.4));
  transform-origin: center;

}

.partners-gallery .content-photos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  justify-items: center;
}

.partners-gallery .content-subtitle h2 {
  color: var(--text-color);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 36px;
  margin: 0;
  padding: 0;
}

.content-photos .partner-photo--brand {
  background: var(--brand_primary);
}

.content-photos .partner-photo--dark {
  background: #030b1e;
}

@media (max-width: 900px) {
  .partners-gallery .content-photos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .partners-gallery .content-photos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

@media (max-width: 480px) {
  .partners-gallery .content-photos {
    grid-template-columns: minmax(0, 1fr);
  }
}

.content-photos .our-partners {
  height: 130px;
}

.photo img {
  width: 100%;
  border-radius: 5px;
  max-height: 320px;
  object-fit: cover;
}

.photo-container {
  padding-bottom: 40px;
  padding-top: 40px;
}

.example-image {
  max-width: 100%;
}

.papers-container {
  padding-top: 60px;
  padding-bottom: 60px;
}

.paper-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

.paper {
  display: flex;
  padding-bottom: 40px;
}

.paper-img img {
  max-width: 200px;
  border-radius: 5px;
  padding-right: 40px;
}

.announcement-container {
  padding-top: 60px;
  padding-bottom: 60px;
}

.announcement {
  color: inherit;
  display: flex;
  padding-bottom: 40px;
}

.announcement .announcement-text {
  flex: 1;
  justify-content: space-between;
  min-width: 0;
}

.announcement-arrow {
  color: var(--brand_color_1);
  flex: 0 0 auto;
  font-size: 30px;
  line-height: 1;
  margin-left: 24px;
  transition: transform .18s ease;
}

.announcement:hover .announcement-text h2,
.announcement:focus-visible .announcement-text h2 {
  color: var(--brand_color_1);
}

.announcement:hover .announcement-arrow,
.announcement:focus-visible .announcement-arrow {
  transform: translateX(5px);
}

.announcement:focus-visible {
  outline: 2px solid var(--brand_color_1);
  outline-offset: 8px;
}

.announcement-date {
  display: flex;
  flex-direction: column;
  justify-self: center;
  align-self: center;
  text-align: center;
  border-right: 2px solid var(--pantone-cool-gray-7c);
  padding-right: 20px;
  min-width: 124px;
}

.announcement-text {
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.announcement-date .announcement-day {
  display: block;
  font-family: 'Ubuntu', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--text-color);
  padding: 0;
  margin: 0;
}

.announcement-date .announcement-month {
  display: block;
  font-family: 'Ubuntu', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.36em;
  line-height: 24px;
  color: var(--text-color);
  padding: 0;
}

.announcement-text h2 {
  color: var(--text-color);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 25px;
  padding: 0;
}

.announcement-date .title {
  color: var(--pantone-cool-gray-11c);
  padding: 0;
}

.announcement-detail {
  padding-bottom: 80px;
  padding-top: 72px;
}

.announcement-detail__header {
  align-items: center;
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
}

.announcement-detail__header .announcement-date {
  flex: 0 0 124px;
}

.announcement-detail__heading {
  min-width: 0;
}

.announcement-detail__heading h2 {
  color: var(--text-color);
  letter-spacing: 0;
  margin: 8px 0 0;
}

.announcement-detail__excerpt {
  color: var(--pantone-cool-gray-11c);
  font-size: 18px;
  line-height: 30px;
  margin-top: 20px;
}

.announcement-detail__cover {
  margin: 0 0 48px;
}

.announcement-detail__cover img {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

.announcement-detail__content > :first-child {
  margin-top: 0;
}

@media (max-width: 650px) {
  .announcement-arrow {
    font-size: 24px;
    margin-left: 12px;
  }

  .announcement-detail {
    padding-bottom: 56px;
    padding-top: 48px;
  }

  .announcement-detail__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .announcement-detail__header .announcement-date {
    align-self: flex-start;
    border-bottom: 2px solid var(--pantone-cool-gray-7c);
    border-right: 0;
    flex-basis: auto;
    padding-bottom: 16px;
    padding-right: 0;
  }
}

.question-container {
  padding-top: 60px;
  padding-bottom: 60px;
}

.il-basvuru-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
  margin-top: 20px;
}

.il-basvuru-card {
  background: var(--background-color);
  border: 1px solid var(--brand_primary);
  border-radius: 8px;
  padding: 24px 12px 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 12px -6px rgba(6, 16, 42, 0.08);
}

.il-basvuru-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand_primary);
  margin-bottom: 12px;
  text-align: center;
}

.il-basvuru-btn {
  background: var(--brand_color_1);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 1px 6px -2px rgba(0, 92, 169, 0.12);
}

.il-basvuru-btn:hover {
  background: var(--brand_color_2);
}

@media (max-width: 992px) {
  .map-overlay-basvur {
    top: 18%;
  }

  .map-overlay-basvur .pulse-basvur {
    padding: 8px 18px;
    font-size: 0.98rem;
  }
}

@media (max-width: 600px) {
  .il-basvuru-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
  }

  .il-basvuru-card {
    padding: 16px 6px 12px 6px;
  }

  .il-basvuru-title {
    font-size: 15px;
  }

  .il-basvuru-btn {
    font-size: 14px;
    padding: 6px 12px;
  }
}

.question {
  background-color: var(--background-color);
  border: 1px solid var(--brand_primary);
  border-radius: 5px;
  padding-left: 40px;
  margin-bottom: 20px;
}

.question-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;

}

.question-text {
  padding-bottom: 20px;
  padding-top: 20px;
}

.question .icon {
  background-color: var(--background-color);
}

.question-answer {
  color: var(--pantone-cool-gray-11c);
  padding-top: 12px;
  padding-bottom: 20px;
  padding-right: 20px;
}

.hide {
  display: none;
}

.info-cards {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.info-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-width: 240px;
  max-width: 100%;
  padding-bottom: 40px;
}

.info-card-icon {
  border-radius: 5px;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-content: center;
  margin-right: 20px;
}

.student {
  background-color: var(--brand_color_1);
}

.education {
  background-color: var(--brand_color_5);
}

.teamwork {
  background-color: var(--brand_color_4);
}

.idea {
  background-color: var(--brand_color_3);
}

.human-resources {
  background-color: var(--brand_color_2);

}

.info-card-icon img {
  width: 50px;
}

.info-card-content h1 {
  color: var(--brand_primary);
  margin: 0;
  padding: 0;
}

.info-card-content p {
  color: var(--brand_primary);
  margin: 0;
  padding: 0;
}

.info-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 100px;
}

nav {
  position: fixed;
  display: flex;
  top: 20px;
  z-index: 9999;
  width: 100%;
  justify-content: center;
  align-items: center;
}

nav .wrapper {
  position: relative;
  max-width: 1240px;
  width: auto;
  height: 60px;
  border-radius: 5px;
  margin: auto;
  display: flex;
  align-items: center;
  vertical-align: middle;
  justify-content: space-between;
  
  transition: all 0.3s ease-in-out;
}

#wrapper {
  padding-right: 16px;
  padding-left: 16px;
}

#wrapper.sticky {
  position: sticky;
  background-color: rgba(6, 16, 42, .8);
  transition: all 0.3s ease-in-out;
}

.logo-navbar {
  height: 40px;
}

.logo-navbar a {
  min-height: 40px;
  list-style: none;
  display: flex;
  justify-content: flex-start;

}

.logo-navbar img {
  height: 40px;
  width: 100%;
  padding-left: 20px;
}

.nav-item {
  height: 40px;
  width: 40px;
  cursor: pointer;
}

.nav-item a img {
  width: 100%;
  height: 100%;
}

nav .wrapper .menuButton {
  display: none;
  position: absolute;
  right: 0;
  font-size: 2rem;
  color: var(--background-color);
  padding-right: 30px;
}

nav .wrapper ul {
  padding: 0;
  margin: 0;
}

nav .wrapper .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.nav-links li {
  list-style: none;
  padding-right: 0px;
}

.nav-links li a {
  color: #f2f2f2;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-self: center;
}

.nav-links>li {
  min-height: 50px;
  display: flex;
  align-items: center;
}

.nav-links li a img {
  padding-left: 5px;
}

.nav-links>li>a {
  padding-right: 0px;
}

.nav-links li .menu-nodrop {
  padding: 0;
}

.nav-links img {
  height: 18px;
}

.nav-links .drop-menu {
  display: none;
  position: absolute;
  background-color: rgba(6, 16, 42, .95);
  min-width: 140px;
  line-height: 35px;
  top: 50px;
  border: 0.01px solid var(--pantone-cool-gray-11c);
  border-radius: 5px;
  flex-direction: column;
  gap: 5px;
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  display: flex;
  transition: all 0.3s ease;
  opacity: 1;

}

.nav-links .drop-menu li {
  padding: 0px 10px 0 10px;

}

.nav-links .drop-menu li:hover {
  opacity: 0.7;
}

.drop-menu li a {
  font-size: 16px;
  width: 100%;
  display: block;
  padding: 0 0 0 0px;
  font-weight: 400;
  border-radius: 0px;
}

nav .menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
}

nav .line {
  fill: none;
  stroke: var(--pantone-cool-gray-7c);
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

nav .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

nav .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

nav .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

nav .opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

nav .opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

nav .opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

nav .search-wrapper {
  position: relative;
  max-width: 1240px;
  width: 100%;
  height: 60px;
  border-radius: 5px;
  margin: auto;
  display: flex;
  align-items: center;
  vertical-align: middle;
  justify-content: space-between;
  background-color: rgba(6, 16, 42, .8);
  cursor: pointer;
}

.search-wrapper .nav-item {
  padding-right: 24px;
}

.search-wrapper input[type=text] {
  float: middle;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  border-bottom: 1px solid var(--pantone-cool-gray-7c);
  font-size: 18px;
  padding: 6px;
  width: 50%;
  color: var(--background-color);
}

.search-wrapper input[type=text]:hover {
  border: none;
  border-bottom: 1px solid var(--background-color);
}

.search-wrapper input[type=text]:focus {
  border: none;
  outline: 0;
}

.aside {
  position: relative;
  height: 100%;
}

.aside .container-1240 {
  display: flex;
}

.aside .aside-logo {
  min-width: 100%;
  margin: 20px 0 20px 0;
  display: flex;
  justify-content: center;
}

.aside .sidenav {
  max-width: 100%;
  position: fixed;
  z-index: 999;
  top: 62px;
  background-color: rgba(6, 16, 42, .8);
  overflow-x: hidden;
  transition: 0.5s;
  border-radius: 5px;
  position: absolute;
  width: 100%;
  max-height: 100vh;

}

.aside .sidenav a {
  padding: 4px 8px 4px 16px;
  text-decoration: none;
  font-size: 15px;
  color: var(--background-color);
  display: block;
  transition: 0.3s;
}

.aside .sidenav label {
  width: auto;
  padding: 4px 16px;
  text-decoration: none;
  font-size: 16px;
  color: var(--background-color);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transition: 0.3s;
}

label img {
  width: 20px;
}

.aside .sidenav a:hover {
  color: rgba(250, 250, 250, .7);
}

.aside .sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.aside .search-form form input {
  height: 30px;
  padding: 0 10px;
  border: 0px;
  width: 162px;
  border: 0;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.99;
  background: #f0f0f0;
  width: 100%;
}

.aside .sidenav li {
  margin: 0;
  margin-top: 10px;
  padding: 0;
  list-style-type: none;
}

.aside .sidenav>ul {
  margin: 14px 0;
  padding: 0;
  list-style-type: none;
}

.aside li input[type="checkbox"] {
  display: none;
}

.aside li label {
  cursor: pointer;
}

.aside .sidenav>ul>li>ul {
  padding: 0 0 0 10px;
}

.aside .sidenav>ul>li {
  position: relative;
}

.aside .sidenav>ul>li>ul {
  max-height: 0;
  transition: max-height 1.25s ease-out;
  overflow: hidden;

}

.aside .sidenav>ul>li input[type="checkbox"]:checked~ul {
  height: fit-content;
  max-height: 1000px;
  transition: max-height 1.25s ease-in;
}

.aside .social-media-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  margin: 10px 10px 10px 0;

}

.aside .social-media-banner i {
  font-size: 20px;
}

.aside .social-media-icons {
  margin-bottom: 0;
}

.home-wrapper {
  position: relative;
  width: 100%;
  background: radial-gradient(51.98% 105.8% at 62.74% 62.5%, rgba(0, 92, 169, 0) 0%, rgba(0, 92, 169, 0.2) 100%), linear-gradient(99.41deg, rgba(0, 92, 169, 0) 41.96%, rgba(0, 92, 169, 0.2) 106.03%), linear-gradient(44.3deg, rgba(0, 92, 169, 0) 50.67%, rgba(0, 92, 169, 0.2) 86.74%), #06102A;
  z-index: 100;
}

.home-wrapper .home {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  z-index: 1;
}

.home-wrapper .home-map-content {
  margin-top: 60px;
  justify-content: center;
  display: flex;
  margin-bottom: 20px;
}

.home-map-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  z-index: 4;
}

.text-container {
  margin-bottom: 2rem;
  width: 100%;
}

.map-container {
  width: 80%;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

.pulse-basvur {
  display: inline-block;
  background: #0052a5;
  color: #fff;
  font-weight: bold;
  border-radius: 24px;
  padding: 8px 24px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: none;
  outline: none;
  cursor: pointer;
  animation: pulse 1.5s infinite;
  transition: background 0.2s;
  position: fixed;
  top: 18px;
  right: 32px;
  z-index: 1002;
}

.pulse-basvur:hover {
  background: #007bff;
}

@media (max-width: 600px) {
  .pulse-basvur {
    top: 12px;
    right: 12px;
    font-size: 1rem;
    padding: 7px 16px;
  }
}

.map-overlay-basvur {
  text-align: center;
  width: 100%;
  z-index: 1001;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.map-overlay-basvur .pulse-basvur {
  position: relative;
  top: 0;
  right: 0;
  background: #e30614;
  padding: 10px 26px;
  border-radius: 28px;
  font-size: 1.05rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

@media (max-width: 480px) {
  .map-overlay-basvur {
    top: 6%;
    left: 86%;
    transform: translate(-86%, -50%);
  }

  .map-overlay-basvur .pulse-basvur {
    padding: 7px 12px;
    font-size: 0.95rem;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pulse-basvur {
    animation: none !important;
  }
}

.floating-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
  width: 100%;
  gap: 10%;
}

.floating-logo img {
  height: 60px;
}

.floating-logo .sibervatan-logo img {
  height: 50px;
}

.city-info-container {
  position: fixed;
  display: flex;
  justify-content: center;
  top: 12%;
  z-index: 999;
}

.info-title-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.info-numbers-container {
  background-color: var(--background-color);
  border-radius: 5px;
  border: 1px solid var(--brand_primary);
  margin-bottom: 20px;
}

.info-numbers-container {
  display: flex;
  flex-direction: row;
  padding: 20px;
  justify-content: space-between;
}

.info-number {
  min-width: 320px;
}

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

.number p {
  align-self: center;
  padding-left: 20px;
}

.info-number-education,
.info-number-time {
  border-left: 2px solid var(--brand_color_1);
}

.info-number-student {
  border-left: 2px solid var(--background-color);
}

.info-education-container {
  background-color: var(--background-color);
  border-radius: 5px;
  border: 1px solid var(--brand_primary);
  padding: 20px;
  gap: 10px;
}

.info-education-title,
.info-education-date {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.info-education-title {
  padding-bottom: 20px;
}

.info-education-date {
  padding-bottom: 12px;
}

.info-education-title a {
  background-color: var(--brand_color_1);
  color: var(--background-color);
  padding: 5px 15px;
  border-radius: 5px;
}

.home-wrapper-blur {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  background-color: rgba(0, 0, 0, .7);
  backdrop-filter: var(--background-color)5px;
  z-index: 888;
}

.news-banner {
  display: flex;
  justify-content: center;
}

.news-banner .news-short-content {
  padding-top: 12px;
  padding-right: 8px;
  height: 100%;
}

.news-short-title {
  color: var(--brand_primary);
  font-weight: 500;
  
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-banner .news-detail {
  margin-top: 24px;
}

.news-banner .event-color {
  color: #8A5700;
}

.news-banner .news-color {
  color: var(--brand_color_1);
}

.news-banner .paper-color {
  color: var(--brand_color_4);
}

.news-banner .announcement-color {
  color: var(--brand_color_3);
}

.event-type-label {
  display: block;
  font-family: 'Ubuntu', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 24px;
  margin: 0;
  padding-bottom: 8px;
}

.container-news-medium .news-image {
  height: 340px !important;
  width: auto;
  display: flex;
  position: relative;
}

.container-news-medium .news-image img {
  height: 340px !important;
}

.news-image img {
  width: 100%;
  object-fit: cover;
  height: 180px;

  border-radius: 5px;
}

.container-mediums {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
}

.container-smalls {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;

}

.container-news-small {
  width: 25%;
  height: 100%;
}

.container-news-medium {
  padding-bottom: 40px;
  width: 100%;
}

.card-content-details {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  position: relative;
}

.card-content-details div {
  width: 100%;
}

.brands-wrapper {
  background-color: var(--brand_primary);
  color: var(--background-color);
  justify-content: center;
  display: flex;
  align-content: center;
  position: relative;
  z-index: 1;
}

.our-brands-title-container {
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  margin-bottom: 80px;
}

.our-brands-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: var(--pantone-cool-gray-7c);
}

.brand-detail .link-all-start {
  color: var(--background-color);
}

.brand-detail .arrow-right {
  color: var(--pantone-cool-gray-7c);
}

.brand-info {
  color: var(--pantone-cool-gray-7c);
}

.brand-summary {
  color: inherit;
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
  margin: 0;
}

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

.column-620 {
  width: 50%;
  position: relative;
  z-index: 1;
}

.slider-image-container img {
  width: 100%;
}

.sticky-5 {
  padding-bottom: 120px;
}

.brand-item {
  padding-bottom: 120px;
  padding-top: 120px;
  padding-right: 40px;
}

.brand-image img {
  height: 80px;
}

.scroll-reveal {
  position: sticky;
  top: 20%;
  box-sizing: border-box;
  width: 480px;
}

.slider-image-container {
  position: absolute;
}

.slider-image-container.sticky-1 {
  top: -28px;
}

.slider-image-container img {
  padding-left: 140px;
}

.slider-image-hide {
  display: block;
  opacity: 0;
}

.slider-image-show {
  display: block;
  opacity: 1;
  transition: opacity 0.30s ease-in;
}

@media (max-width: 600px) {
  .slider-image-hide {
    display: none;
  }
}

.join-us-wrapper {
  position: relative;
  text-align: center;
  width: 100%;
  background-color: #005CA9;
  background: radial-gradient(62.64% 81.6% at 48.4% 2.22%, rgba(0, 93, 169, 0.829) 4.79%, rgba(0, 92, 169, 0.391522) 47.58%, rgba(0, 92, 169, 0) 100%), linear-gradient(0deg, #06102A, #06102A);
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
}

.join-us-wrapper .join-us-title {
  font-size: 38px;
  color: #f1f1f1dc;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.joinus-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.joinus-button-container {
  background-color: var(--background-color);
  width: 120px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.joinus-button {
  text-decoration: none;
  font-weight: 500;
  color: var(--brand_primary);
  font-size: 16px;
  line-height: 18px;
}

.joinus-button-container:hover {
  background-color: rgba(250, 250, 250, .8);
}

.turkey-map {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  z-index: 3;
}

.turkey-map svg {
  width: 100%;
  height: auto;
}

#turkey-map path {
  cursor: pointer;
  fill: var(--background-color);
}

#turkey-map path:hover {
  fill: #e30614;
  transition: all .7s cubic-bezier(.33, 1, .68, 1);
}

#turkey-map .selected {
  fill: #e30614;
}

#city_tooltip {
  position: absolute;
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 4px;
  color: #fff;
  border-radius: 6px;
  z-index: 999;
}

.map-active {
  position: absolute;
  top: 100px;
  justify-content: center;
  z-index: 88;
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding-left: 80px;
}

.map-active-title {
  background-color: rgba(250, 250, 250, .92);
  border-radius: 5px;
  border: 1px solid var(--brand_primary);
  display: flex;
  justify-content: center;
  padding-left: 240px;
  padding-right: 240px;
}

.numbers-student,
.numbers-education {
  background-color: rgba(250, 250, 250, .92);
  border-radius: 5px;
  border: 1px solid var(--brand_primary);
  display: flex;
  padding-left: 40px;
  align-items: center;
  gap: 20px;
}

.numbers-student h1 {
  color: var(--brand_color_1);
  width: 25%;
}

.numbers-education h6 {
  padding-bottom: 0;
}

.education-1 h6 {
  color: var(--brand_color_5);
}

.education-2 h6 {
  color: var(--brand_color_3);
}

.information h5 {
  color: var(--brand_primary);
}

.information {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  padding-left: 80px;
}

.page-content {
  padding-top: 180px;
}

.page-menu {
  background-color: #f1f1f1;
  border-radius: 11px;

  -webkit-box-shadow: 0px 0px 48px 5px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 0px 48px 5px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 0px 48px 5px rgba(0, 0, 0, 0.07);

  padding: 20px 0 20px 30px;
}

.page-menu ul {
  padding: 0;
  margin: 0;

}

.page-menu ul li {
  position: relative;
  padding: 0;
  margin: 0;
  list-style-type: none;
  line-height: 1.9;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0px;
}

.page-menu ul li a {
  text-decoration: none;
  color: #005CA9;
}

.page-menu ul li::before {
  content: '';
  position: absolute;

  width: 4px;
  height: 4px;
  border-color: #005CA9;
  border-style: dotted;
  border-width: 3px 3px 0 0;
  rotate: 45deg;
  left: -12px;
  top: 10px;
}

.page-short-background {
  position: absolute;
  height: 350px;
  width: 100%;
  top: 0;
  z-index: -1;
  background: radial-gradient(51.98% 105.8% at 62.74% 62.5%, rgba(0, 92, 169, 0) 0%, rgba(0, 92, 169, 0.2) 100%), linear-gradient(99.41deg, rgba(0, 92, 169, 0) 41.96%, rgba(0, 92, 169, 0.2) 106.03%), linear-gradient(44.3deg, rgba(0, 92, 169, 0) 50.67%, rgba(0, 92, 169, 0.2) 86.74%), #06102A;
}

.page-content .content {
  background-color: #f1f1f1;
  border-radius: 11px;
  width: 100%;
  min-height: 500px;
  padding: 20px;

  -webkit-box-shadow: 0px 0px 48px 5px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 0px 48px 5px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 0px 48px 5px rgba(0, 0, 0, 0.07);
}

.page-content .content .content-title {
  font-weight: 700;
  font-size: 32px;

}

.page-content .content .page-location ul {
  padding: 0;
  margin: 0;
  display: flex;
}

.page-content .content .page-location li {
  position: relative;
  padding: 0 0 0 12px;

  margin: 0 10px 0 0;
  list-style-type: none;
  line-height: 1.9;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0px;
}

.page-content .content .page-location li:first-child {

  padding: 0;
}

.page-content .content .page-location li::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-color: #06102A;
  border-style: dotted;
  border-width: 2px 2px 0 0;
  rotate: 45deg;
  left: 0;
  top: 7px;

}

.page-content .content .page-location li:first-child::before {
  display: none;
}

.page-content .content .page-location ul li a {
  text-decoration: none;
  color: #005CA9;
}

.page-content .content .content-text {
  padding-top: 30px;
  line-height: 1.5;
}

.scrollToTop {
  transform: none;
}

.scrollToTop .icon-img {
  transform: rotate(180deg);
}

.header {
  position: relative;
  top: 0;
  background-image: url(../icons/Background.svg);
  height: 460px;
  width: 100%;
  overflow: hidden;
}

.breadcrumb-banner {
  position: absolute;
  top: 200px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.main-title {
  justify-content: center;
  display: flex;
  padding: 0;
  text-align: center;
}

.main-title img {
  height: 100px;
  padding: 10px;
  max-width: 90%;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb {
  color: var(--pantone-cool-gray-7c);
  opacity: 50%;
  padding-left: 4px;
  padding-right: 4px;
}

.brand-identity-content {
  background: #fafafa;
}

.brand-library {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.brand-library__intro {
  max-width: 820px;
  padding: 0 0 32px;
}

.brand-resources {
  padding: 0 0 48px;
  margin-bottom: 52px;
  border-bottom: 1px solid #d7dce4;
}

.brand-section-heading {
  margin-bottom: 20px;
}

.brand-section-heading__eyebrow {
  margin: 0 0 7px;
  color: var(--brand_color_1);
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-section-heading h2,
.brand-group__header h2 {
  margin: 0;
  color: var(--text-color);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.brand-section-heading h2 {
  font-size: 28px;
  line-height: 36px;
}

.brand-resources__list,
.brand-assets {
  list-style: none;
  margin: 0;
  padding: 0;
}

.brand-resources__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.brand-resources__list > li,
.brand-assets__item {
  min-width: 0;
}

.brand-document {
  min-height: 108px;
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid #cbd3df;
  border-radius: 5px;
  background: #fff;
  color: var(--brand_primary);
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.brand-document__icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 4px;
  background: var(--brand_primary);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background-color 160ms ease;
}

.brand-document__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-document__body {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 7px;
}

.brand-document__title {
  color: var(--text-color);
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  transition: color 160ms ease;
}

.brand-document__action {
  color: var(--brand_color_1);
  font-family: 'Ubuntu', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: 0.02em;
  transition: color 160ms ease;
}

.brand-document__arrow {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: var(--brand_color_1);
  display: grid;
  place-items: center;
}

.brand-document__arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-document:hover {
  border-color: var(--brand_color_1);
  background: #f4f8fc;
  color: var(--brand_color_1);
  text-decoration: none;
}

.brand-document:hover .brand-document__icon {
  background: var(--brand_color_1);
}

.brand-document:focus-visible,
.brand-asset:focus-visible {
  outline: 2px solid var(--brand_color_1);
  outline-offset: 3px;
}

.brand-groups {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.brand-group__header {
  padding-bottom: 13px;
  margin-bottom: 18px;
  border-bottom: 1px solid #d7dce4;
}

.brand-group__header h2 {
  font-size: 23px;
  line-height: 30px;
}

.brand-assets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.brand-asset {
  position: relative;
  width: 100%;
  aspect-ratio: 1.62 / 1;
  box-sizing: border-box;
  border: 1px solid #bfc8d4;
  border-radius: 5px;
  background: #fff;
  display: block;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.brand-asset--dark {
  border-color: var(--brand_primary);
  background: var(--brand_primary);
}

.brand-asset__preview {
  position: absolute;
  inset: 0;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-asset__preview img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  border-radius: 0;
  display: block;
  object-fit: contain;
}

.brand-asset__download {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 28px;
  height: 28px;
  border-radius: 3px;
  background: rgba(6, 16, 42, 0.88);
  color: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 160ms ease, background-color 160ms ease;
}

.brand-asset--dark .brand-asset__download {
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand_primary);
}

.brand-asset__download svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-asset:hover {
  border-color: var(--brand_color_1);
  box-shadow: 0 8px 18px rgba(6, 16, 42, 0.09);
  text-decoration: none;
}

.brand-asset:hover .brand-asset__download,
.brand-asset:focus-visible .brand-asset__download {
  opacity: 1;
}

@media (max-width: 1399px) {
  .brand-assets {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

@media (max-width: 768px) {
  .brand-identity-content {
    padding: 32px 20px 48px;
  }

  .brand-identity-content .container-1240 {
    width: 100%;
  }

  .brand-resources {
    padding-bottom: 36px;
    margin-bottom: 38px;
  }

  .brand-section-heading h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .brand-resources__list {
    grid-template-columns: minmax(0, 1fr);
  }

  .brand-document {
    min-height: 96px;
    padding: 16px;
  }

  .brand-groups {
    gap: 36px;
  }

  .brand-group__header {
    margin-bottom: 12px;
  }

  .brand-group__header h2 {
    font-size: 19px;
    line-height: 25px;
  }

  .brand-assets {
    gap: 10px;
  }

  .brand-asset__preview {
    padding: 14px;
  }

  .brand-asset__download {
    right: 6px;
    bottom: 6px;
    width: 25px;
    height: 25px;
    opacity: 0.82;
  }
}

@media (max-width: 360px) {
  .brand-identity-content {
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand-document {
    gap: 12px;
  }

  .brand-document__arrow {
    display: none;
  }
}

.lightboxOverlay {
  position: fixed;
}

.lightbox {
  position: fixed !important;
  top: 40px !important;
}

#calendar .fc-event.is-linked-event {
  border-color: var(--brand_color_2);
  box-shadow: 0 0 0 2px rgba(227, 6, 19, 0.32);
}

.card {
  width: 240px;
  height: 320px;
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0px 0px 48px 5px rgba(0, 0, 0, 0.07);
}

.card-img-container {
  width: 100%;
  height: 160px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.card-content {
  width: 100%;
  height: calc(100% - 160px);
  display: inline-block;
  position: relative;
}

.card-content-top {
  display: flex;
  align-items: center;
  height: 26px;
  padding: 4px 8px;
}

.card-content-middle {
  max-height: calc(100% - 74px);
  height: 100%;
  padding: 4px 8px;
}

.card-content-middle span {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.card-content-bottom {
  display: flex;
  align-items: center;
  height: 26px;
  padding: 4px 8px;
}

.card-content-bottom a {
  display: flex;
  justify-content: flex-end;
  color: var(--pantone-cool-gray-11c);
}

.card-content-bottom a:hover {
  color: var(--brand_color_1);
}

footer {
  position: relative;
  color: var(--background-color);
  background-color: var(--brand_primary);
  display: flex;
  justify-content: center;
  z-index: 99;
}

.footer-container {
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.logo-footer {
  display: flex;
  justify-content: center;
  padding: 40px;
  height: 75px;
}

.social-media-banner {
  color: var(--background-color);
  text-decoration: none;
  display: flex;
  justify-content: center;
}

.social-media-icons {
  color: var(--background-color);
  font-size: 24px;
  margin-bottom: 40px;
  padding-left: 12px;
  padding-right: 12px;
}

.social-media-icons:hover {
  opacity: 0.8;
}

.footer-menu {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 40px;
  gap: 20px;
}

@media screen and (max-width: 1399px) {
  .footer-col {
    min-width: 50%;
  }
}

.footer-heading {
  color: inherit;
  font-family: 'Ubuntu', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.36em;
  line-height: 24px;
  margin: 0;
  padding-bottom: 24px;
  width: 100%;
}

.footer-menu li {
  padding-bottom: 12px;
}

.footer-menu a {
  color: var(--background-color);
}

.footer-date {
  padding-bottom: 20px;
}

@media (max-width: 1240px) {
  .info-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 780px) {
  .info-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (min-width:767px) {
  .container-1240 {
    max-width: 600px;
  }

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

  .container-820 {
    width: 540px;
  }

  .new-container {
    width: 100%;
  }

}

@media (min-width:992px) {
  .container-1240 {
    max-width: 720px;
  }

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

  .container-820 {
    width: 620px;
  }

}

@media (min-width:1200px) {
  .container-1240 {
    max-width: 840px;
  }

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

  .container-820 {
    width: 720px;
  }

  .new-container {
    width: 350px;
  }

}

@media (min-width:1400px) {
  .container-1240 {
    max-width: 1240px;
  }

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

  .container-820 {
    width: 820px;
  }

  .content-photos .photo {
    width: 240px;
  }

  .our-brands-subtitle {
    padding-left: 160px;
    padding-right: 160px;
  }

  .new-container {
    width: 260px;
  }

  .aside {
    display: none;
  }

}

@media (max-width:1400px) {
  .photo img {
    width: 350px;
  }

  .brand-item {
    padding-right: 0px;
  }

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

  nav .wrapper .nav-links {
    display: none;
  }

  nav .wrapper .menuButton {
    display: block;
  }

  .container-news-small {
    width: 100%;
  }

  .container-smalls .news-hide {
    display: none;
  }

  .info-numbers-container {
    flex-direction: column;
  }

  .info-number-education,
  .info-number-time,
  .info-number-students {
    border: none;
  }

  .info-education-container {
    display: none;
  }

  .map-container {
    width: 100%;
    margin-top: 25px;
  }
}

@media (max-width:1200px) {
  .photo img {
    width: 620px;
  }

  .scroll-reveal .slider-image-container img {
    display: none;
  }

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

  .column-620 {
    width: 100%;
  }

  .brand-item {
    padding-right: 0;
  }

  .container-news-small {
    width: 100%;
  }

  .map-container {
    width: 100%;
  }

}

@media (max-width:992px) {
  .photo img {
    width: 540px;
  }

  .paper {
    flex-direction: column;
  }

  .paper .paper-img img {
    width: 100%;
  }

  .paper-img img {
    max-width: 100%;
  }

  .galery .photo {
    width: 100%;
  }

  .icons-container {
    display: flex;
    gap: 8px;
  }

  .map-container {
    width: 100%;
  }
}

@media (max-width:768px) {
  .container-1240 {
    width: 320px;
  }

  .brand-image img {
    height: 60px;
  }

  .home-wrapper {
    height: 100vh;
    min-height: 100vh;
  }

  h1 {
    font-size: 36px;
  }

  h4 {
    font-size: 16px;
  }

  h3 {
    font-size: 24px;
    padding-bottom: 12px;
  }

  .announcement-date {
    padding: 0;
  }

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

  .footer-col {
    width: 320px;
  }

  .container-820 {
    width: 400px;
  }

  .content-subtitle {
    display: flex;
    flex-direction: column;
  }

  .content-subtitle .link-all-end {
    justify-content: flex-start;
    padding-top: 20px;
  }

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

  .photo img {
    width: 400px;
  }

  .container-smalls {
    flex-direction: column;
    height: 100%;
  }

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

  .search-wrapper .logo-navbar {
    display: none;
  }

  .search-wrapper input[type=text] {
    width: 75%;
    margin-left: 24px;
  }

  .map-container {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .floating-logo {
    padding-bottom: 40px;
  }

  .floating-logo img {
    height: 35px;
  }

  .fc-header-toolbar {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .fc-toolbar-chunk {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}

@media (max-height: 800px) {
  .scroll-reveal {
    top: 20%;
  }
}

@media (min-height: 1600px) {
  .scroll-reveal {
    top: 20%;
  }

  .floating-logo img {
    height: 80px;
  }

  .floating-logo .sibervatan-logo img {
    height: 65px;
  }

}

:root {
  --surface: #ffffff;
  --surface-muted: #f3f4f6;
  --elevation-1: 0 1px 3px rgba(6, 16, 42, .08), 0 1px 2px rgba(6, 16, 42, .06);
  --elevation-2: 0 4px 6px rgba(6, 16, 42, .10), 0 2px 4px rgba(6, 16, 42, .06);
  --radius-s: 6px;
  --radius-m: 10px;
  --radius-l: 14px;
  --ring: 0 0 0 3px rgba(0, 92, 169, .25);
}

a {
  color: var(--brand_color_1);
  transition: color .2s ease;
}

.news-banner {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 92, 169, 0.035) 100%);
  padding-top: 20px;
  padding-bottom: 20px;
}

#star-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.starfield::before,
.starfield::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  background: transparent;
  border-radius: 50%;
  transform: translateZ(0);
}

.starfield::before {
  box-shadow: 40px 30px #fff, 120px 90px #fff, 200px 40px #fff, 260px 200px #fff, 340px 120px #fff, 420px 420px #fff, 500px 200px #fff, 580px 320px #fff, 660px 80px #fff, 740px 260px #fff, 820px 420px #fff, 900px 180px #fff;
  animation: twinkleA 5s linear infinite;
  opacity: 0.9;
}

.starfield::after {
  box-shadow: 80px 120px #fff, 160px 60px #fff, 240px 420px #fff, 320px 320px #fff, 400px 220px #fff, 480px 520px #fff, 560px 260px #fff, 640px 120px #fff;
  width: 1px;
  height: 1px;
  animation: twinkleB 7s linear infinite;
  opacity: 0.6;
}

@keyframes twinkleA {
  0% {
    opacity: 0.85;
    transform: translateY(0) scale(1);
  }

  50% {
    opacity: 0.12;
    transform: translateY(-1px) scale(0.9);
  }

  100% {
    opacity: 0.85;
    transform: translateY(0) scale(1);
  }
}

@keyframes twinkleB {
  0% {
    opacity: 0.6;
    transform: translateY(0) scale(1);
  }

  50% {
    opacity: 0.05;
    transform: translateY(-2px) scale(0.85);
  }

  100% {
    opacity: 0.6;
    transform: translateY(0) scale(1);
  }
}

.apply-btn-navbar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--brand_color_1, #005CA9) 0%, var(--brand_color_4, #00A1AD) 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 92, 169, 0.3);
  position: relative;
  overflow: hidden;
}

.apply-btn-navbar::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.apply-btn-navbar:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 92, 169, 0.4);
}

.apply-btn-navbar * {
  position: relative;
  z-index: 2;
}

.apply-btn-navbar:active {
  background-color: var(--brand_color_1, #005CA9);
  transform: none;
}

.apply-btn-navbar:focus {
  outline: 2px solid var(--brand_color_3, #6893C5);
  outline-offset: 2px;
}

.mobile-apply-btn {
  display: none;
}

@media (max-width: 1400px) {
  .mobile-apply-btn {
    display: inline-flex;
  }

  nav .wrapper {
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .apply-btn-navbar {
    padding: 8px 16px;
    font-size: 13px;
    min-width: 90px;
    height: 36px;
  }

  .mobile-apply-btn {
    padding: 16px 32px;
    font-size: 24px;
  }

  .apply-btn-navbar::before {
    animation-duration: 8s;
    
  }
}

.application-page-title {
  padding-top: 60px;
  padding-bottom: 20px;
}

.application-page-title h2 {
  color: var(--text-color);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 36px;
  margin: 0;
}

.application-warning {
  color: var(--brand_primary);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: left;
}

.application-requirements {
  list-style: none;
  margin: 0;
  padding: 0 0 40px;
}

.application-requirements li {
  align-items: flex-start;
  background-color: var(--background-color);
  border: 1px solid var(--brand_primary);
  border-radius: 5px;
  display: flex;
  margin-bottom: 20px;
  padding: 20px 24px;
}

.application-requirement__number {
  color: var(--brand_color_1);
  flex: 0 0 42px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
}

.application-requirement__text {
  flex: 1;
  min-width: 0;
}

.application-requirement__text p {
  color: var(--text-color);
  margin: 0;
}

.application-process__intro {
  color: var(--pantone-cool-gray-11c);
  padding-bottom: 0;
  text-align: left;
}

.application-process__steps {
  padding-top: 40px;
}

.application-process__steps .subtitle {
  color: var(--text-color);
  margin: 0;
}

.application-process__steps .question-answer p {
  margin: 0;
}

@media (max-width: 600px) {
  .application-page-title {
    padding-top: 40px;
  }

  .application-page-title h2 {
    font-size: 24px;
    letter-spacing: 0.03em;
    line-height: 32px;
  }

  .application-requirements li {
    padding: 16px;
  }

  .application-requirement__number {
    flex-basis: 34px;
    font-size: 16px;
  }

  .application-process__steps .question {
    padding-left: 20px;
  }

  .application-process__steps .question-text {
    padding-right: 12px;
  }
}

.apply-section {
  margin: 3rem 0;
  background: linear-gradient(135deg, var(--brand_color_1, #005CA9) 0%, var(--brand_color_4, #00A1AD) 100%);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 92, 169, 0.2);
  position: relative;
  overflow: hidden;
}

.apply-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.apply-content {
  position: relative;
  z-index: 2;
}

.apply-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.apply-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.apply-btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand_color_1, #005CA9);
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  min-width: 200px;
}

.apply-btn-main:hover {
  background: #ffffff;
  color: var(--brand_color_1, #005CA9);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.apply-btn-main:active {
  transform: translateY(0);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.apply-btn-main:hover .btn-icon {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .apply-section {
    margin: 2rem 0;
    padding: 2rem 1.5rem;
  }

  .apply-title {
    font-size: 1.5rem;
  }

  .apply-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .apply-btn-main {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .apply-section {
    padding: 1.5rem 1rem;
  }

  .apply-title {
    font-size: 1.25rem;
  }

  .apply-description {
    font-size: 0.9rem;
  }

  .apply-btn-main {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    min-width: 160px;
  }

  .apply-section::before {
    animation-duration: 8s;
    
  }
}

@media (prefers-reduced-motion: reduce) {

  .starfield::before,
  .starfield::after {
    animation: none;
  }

  #star-canvas {
    display: none;
  }

  .apply-btn-navbar::before {
    animation: none;
  }

  .apply-section::before {
    animation: none;
  }
}

.container-news-medium .news-image img {
  border-radius: var(--radius-m);
  box-shadow: var(--elevation-2);
}

.news-image img {
  border-radius: var(--radius-m);
  box-shadow: var(--elevation-1);
}

.container-news-small {
  padding: 4px;
  background: var(--surface);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-m);
  box-shadow: var(--elevation-1);
  overflow: hidden;
}

.card-content-details {
  padding-right: 12px;
  padding-left: 12px;
  padding-bottom: 12px;
}

.brands-wrapper {
  padding-top: 20px;
  padding-bottom: 40px;
}

.info-cards-container {
  gap: 12px;
}

.info-card {
  background: var(--surface);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-m);
  padding: 16px 20px;
  box-shadow: var(--elevation-1);
  transition: transform .2s ease, box-shadow .2s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--elevation-2);
}

.info-card-icon {
  border-radius: var(--radius-s);
}

.info-card-content h1 {
  line-height: 1.1;
}

.info-card-content p {
  opacity: .9;
}

.info-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.86) 100%);
  border: 1px solid rgba(0, 92, 169, 0.12);
  backdrop-filter: blur(8px) saturate(110%);
  -webkit-backdrop-filter: blur(8px) saturate(110%);
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-m);
  padding: 1px;
  
  background: linear-gradient(135deg, rgba(0, 92, 169, 0.35), rgba(0, 161, 173, 0.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.info-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-m);
  background-image:
    linear-gradient(rgba(0, 92, 169, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 92, 169, 0.035) 1px, transparent 1px);
  background-size: 24px 24px, 24px 24px;
  opacity: .7;
  pointer-events: none;
}

.info-card:hover {
  box-shadow: 0 10px 24px rgba(0, 92, 169, 0.15), 0 2px 6px rgba(6, 16, 42, 0.08);
}

.info-card-icon {
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.info-card-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(80% 80% at 50% 20%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}

.info-card-content h1 {
  background: linear-gradient(135deg, var(--brand_color_1) 0%, var(--brand_color_4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.info-card-content p.subtitle {
  letter-spacing: 0.02em;
  color: #475569;
  
}

@media (prefers-reduced-motion: reduce) {
  .info-card {
    transition: none;
  }
}

nav .wrapper {
  backdrop-filter: saturate(120%) blur(6px);
}

#wrapper.sticky {
  box-shadow: var(--elevation-1);
}

.join-us-wrapper {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.page-content .content {
  border: 1px solid #e5e7eb;
}

.footer-menu a {
  opacity: .9;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: var(--radius-s);
  font-weight: 500;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  border: 1px solid transparent;
}

.btn:focus {
  box-shadow: var(--ring);
  outline: none;
}

.btn-primary {
  background: var(--brand_color_1);
  color: var(--background-color);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  color: var(--brand_color_1);
  border-color: var(--brand_color_1);
}

.btn-outline:hover {
  background: rgba(0, 92, 169, .08);
}

.sibervatan2026text {
  font-size: 4rem;
  color: #f2f2f2;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: block;
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
}

@media (max-width: 768px) {
  
  .sibervatan2026text {
    font-size: 2.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  }
}

@media (max-width: 480px) {
  
  .apply-btn-navbar::before {
    animation-duration: 10s;
    
  }

  .home-wrapper {
    height: 100vh;
    min-height: 100vh;
  }

  .floating-logo {
    padding-bottom: 40px;
  }

  .sibervatan2026text {
    font-size: 1.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
  }
}

@media (max-width: 360px) {
  .sibervatan2026text {
    font-size: 1.5rem;
    line-height: 1.1;
  }
}

.sibervatan-map-logo {
  position: absolute;
  top: calc(50% - 1.5rem);
  left: 20%;
  z-index: 1;
}

.sibervatan-map-logo img {
  width: 75%;
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

@media (max-width: 1200px) {
  .sibervatan-map-logo {
    top: calc(50%);
  }
}

@media (max-width: 992px) {
  .sibervatan-map-logo {
    top: calc(50% + 0.5rem);
  }
}

@media (max-width: 768px) {
  .sibervatan-map-logo {
    top: calc(50% + 1.2rem);
  }
}

@media (max-width: 480px) {
  .sibervatan-map-logo {
    top: calc(50% + 1.5rem);
  }
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.team-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 16px rgba(6, 16, 42, .06);
}

.team-logo {
  flex: 0 0 102px;
  height: 106px;
  border-radius: 10px;
  background: #f5f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #eef2f7;
}

.team-logo img {
  max-width: 106px;
  max-height: 106px;
}

.team-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team-title {
  margin: 0;
  color: var(--brand_color_1, #005CA9);
  font-size: 20px;
}

.team-subtitle {
  margin: 0;
  color: var(--pantone-cool-gray-11c);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.team-website {
  font-size: 14px;
  color: var(--brand_color_1, #005CA9);
  text-decoration: none;
}

.team-desc {
  margin: 0;
  color: #575756;
  line-height: 1.6;
  text-align: justify;
}

.team-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.team-actions a {
  display: inline-flex;
  padding: 8px;
  border-radius: 8px;
  background: #f5f7fb;
  border: 1px solid #eef2f7;
}

.team-actions a img {
  height: 24px;
}

.team-actions .blue-icon img {
  
  filter: brightness(0) saturate(100%) invert(20%) sepia(86%) saturate(1126%) hue-rotate(186deg) brightness(90%) contrast(95%);
}

.team-actions .blue-icon:hover img {
  
  filter: brightness(0) saturate(100%) invert(16%) sepia(87%) saturate(1826%) hue-rotate(190deg) brightness(82%) contrast(98%);
}

@media (max-width: 992px) {
  .team-card {
    gap: 14px;
    padding: 16px;
  }

  .team-logo {
    flex: 0 0 90px;
    height: 90px;
  }

  .team-logo img {
    max-width: 90px;
    max-height: 90px;
  }

  .team-title {
    font-size: 18px;
  }

  .team-subtitle {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .team-list {
    gap: 16px;
  }

  .team-card {
    flex-direction: column;
    align-items: center;
    padding: 16px;
    gap: 16px;
  }

  .team-logo {
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    align-self: center;
  }

  .team-logo img {
    max-width: 90px;
    max-height: 90px;
  }

  .team-content {
    width: 100%;
    text-align: center;
  }

  .team-title-row {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .team-title {
    font-size: 20px;
    text-align: center;
  }

  .team-subtitle {
    font-size: 14px;
    text-align: center;
  }

  .team-desc {
    text-align: justify;
    font-size: 15px;
  }

  .team-actions {
    justify-content: start;
    flex-wrap: wrap;
    gap: 8px;
  }

  .team-actions a {
    padding: 10px;
  }

  .team-actions a img {
    height: 22px;
  }
}

@media (max-width: 480px) {
  .team-list {
    gap: 12px;
  }

  .team-card {
    padding: 12px;
    gap: 12px;
  }

  .team-logo {
    width: 80px;
    height: 80px;
  }

  .team-logo img {
    max-width: 70px;
    max-height: 70px;
  }

  .team-title {
    font-size: 18px;
  }

  .team-subtitle {
    font-size: 13px;
  }

  .team-desc {
    font-size: 14px;
    line-height: 1.5;
  }

  .team-actions {
    gap: 6px;
  }

  .team-actions a {
    padding: 8px;
  }

  .team-actions a img {
    height: 20px;
  }
}
