@font-face {
  font-family: 'DeutscheBank Medium';
  src: url('../fonts/DeutscheBankDisplay_W_Rg_n.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DeutscheBank Regular';
  src: url('../fonts/DeutscheBankText_W_Rg_n.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DeutscheBank Bold';
  src: url('../fonts/DeutscheBank_Bold.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-deep-blue: #1e2a78;
  --color-dark-blue-800: #16184e;
  --color-odyssey-blue-700: #0550d1;
  --color-odyssey-blue-800: #0d43b3;
  --color-odyssey-blue-900: #163796;
  --color-odyssey-blue-200: #e7f4fe;
  --color-odyssey-blue-300: #bfd5f7;
  --color-white: #fff;
  --color-neutral-100: #f0f0f0;
  --color-neutral-200: #e1e1e1;
  --color-neutral-300: #cbcbcb;
  --color-neutral-500: #a0a0a0;
  --color-text: var(--color-dark-blue-800);
  --color-link: var(--color-odyssey-blue-700);
  --color-link-hover: var(--color-odyssey-blue-800);
}

* {
  box-sizing: border-box;
}

.tab-panel {
  display: none !important;
}
.tab-panel.active {
  display: block !important;
}

body {
  font-family: 'DeutscheBank Regular', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  color: var(--color-dark-blue-800);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'DeutscheBank Medium', Arial, sans-serif;
  font-weight: 400;
  margin: 0;
}

h1 {
  font-size: 1.75rem;
  line-height: 2.25rem;
}

h2 {
  font-size: 1.75rem;
  line-height: 2.25rem;
}

h3 {
  font-size: 1.375rem;
  line-height: 1.875rem;
}

h4 {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

@media (min-width: 1024px) {
  h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  h2 {
    font-size: 2.125rem;
    line-height: 2.625rem;
  }

  h3 {
    font-size: 1.625rem;
    line-height: 2.125rem;
  }

  h4 {
    font-size: 1.375rem;
    line-height: 1.875rem;
  }
}

.skip-nav {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-nav:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 0.75rem;
  background: #fff;
  color: var(--color-odyssey-blue-700);
  z-index: 200;
}

header {
  background-color: var(--color-deep-blue);
  color: var(--color-white);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 30;
  height: 4rem;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-white);
}

.header-logo-link:hover {
  color: var(--color-white);
}

.header-logo-svg {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}

.header-title-group p {
  margin: 0;
  line-height: 1;
}

.header-name {
  font-weight: 700;
  font-size: 1rem;
}

.header-subsidiary {
  font-size: 1rem;
}

.burger-btn {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
}

.main-nav {
  display: none;
  background-color: var(--color-deep-blue);
  position: fixed;
  top: 4rem;
  left: 0;
  width: 100%;
  height: calc(100vh - 4rem);
  overflow-y: auto;
  z-index: 30;
}

.main-nav.open {
  display: block;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.main-nav a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--color-white);
  text-decoration: none;
  font-family: 'DeutscheBank Regular', Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.main-nav a:hover {
  text-decoration: underline;
}

.main-nav a.active {
  font-family: 'DeutscheBank Bold', Arial, sans-serif;
}

@media (min-width: 1024px) {
  header {
    height: 7rem;
    position: sticky;
  }

  .burger-btn {
    display: none;
  }

  .main-nav {
    display: flex;
    position: static;
    height: auto;
    background: none;
    width: auto;
    overflow: visible;
    align-items: center;
  }

  .main-nav ul {
    display: flex;
    gap: 1rem;
  }

  .main-nav li {
    border: none;
  }

  .main-nav a {
    font-size: 1rem;
    padding: 0.5rem 0;
    white-space: nowrap;
  }
}

.hero {
  margin-top: 4rem;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  color: var(--color-white);
}

@media (min-width: 1024px) {
  .hero {
    margin-top: 0;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 48, 102, 0.6), rgba(15, 48, 102, 0.35) 60%, rgba(15, 48, 102, 0.03) 80%, rgba(15, 48, 102, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem 1.5rem 3rem;
  text-align: center;
}

.hero h1 {
  font-size: 1.75rem;
  line-height: 2.25rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .hero p {
    font-size: 1.625rem;
    line-height: 2.125rem;
  }
}

.search-box-inline {
  max-width: 60%;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 0.25rem;
  padding: 1rem;
  color: var(--color-dark-blue-800);
  text-align: left;
}

@media (max-width: 770px) {
  .search-box-inline {
    max-width: 100%;
  }
}

.search-box-inline h4 {
  margin-bottom: 0.5rem;
}

.search-form {
  position: relative;
}

.search-form input {
  width: 100%;
  height: 3.125rem;
  padding: 0 3.125rem 0 0.625rem;
  border: 1px solid var(--color-odyssey-blue-700);
  border-radius: 0.25rem;
  font-size: 1rem;
  color: var(--color-dark-blue-800);
  outline: none !important;
}

.search-form input::placeholder {
  color: transparent;
}

.search-form input:focus::placeholder {
  color: #f0f0f0;
}

.search-form label {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: var(--color-dark-blue-800);
  pointer-events: none;
  transition: all 0.15s ease;
}

.search-form input:focus~label,
.search-form input:not(:placeholder-shown)~label {
  font-size: 0.6875rem;
  top: 26px;
}

.search-form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 3.125rem;
  width: 3.125rem;
  background: var(--color-odyssey-blue-700);
  border: none;
  border-radius: 0 0.25rem 0.25rem 0;
  color: var(--color-odyssey-blue-200);
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-form button:hover {
  background: var(--color-odyssey-blue-800);
}

.content-section {
  max-width: 1280px;
  margin: 2.5rem auto 0;
  padding: 0 1.5rem;
}

.tabs-section {
  margin-bottom: 2.5rem;
}

.tabs-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tab-btn {
  background: var(--color-neutral-100);
  border: none;
  border-bottom: 2px solid var(--color-neutral-500);
  padding: 0;
  cursor: pointer;
  text-align: center;
  font-family: 'DeutscheBank Medium', Arial, sans-serif;
  font-size: 1.125rem;
  color: var(--color-odyssey-blue-700);
  transition: all 0.2s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tab-btn:hover {
  background: var(--color-odyssey-blue-200);
  border-bottom-color: var(--color-odyssey-blue-700);
  padding-bottom: 2px;
}

.tab-btn.active {
  background: var(--color-odyssey-blue-300);
  border-bottom: 4px solid var(--color-odyssey-blue-700);
  color: var(--color-odyssey-blue-900);
  padding-bottom: 0;
}

.tab-btn-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.tab-btn:hover .tab-btn-img {
  transform: scale(1.02);
}

.tab-btn-label {
  padding: 0.75rem 1rem;
  display: block;
}

.tab-panel {
  display: none;
  padding: 1.5rem 0;
}

.tab-panel.active {
  display: block;
}

.tab-content-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 0.25rem;
}

@media (min-width: 768px) {
  .tab-content-wrapper {
    display: flex;
    gap: 1.5rem;
  }

  .tab-img-col {
    flex: 0 0 40%;
  }

  .tab-text-col {
    flex: 1;
  }

  .tab-content-img {
    margin-bottom: 0;
    height: 100%;
  }
}

@media (max-width: 767px) {
  .tab-btn {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
    .tabs-nav {
      grid-template-columns: 1fr 1fr;
    }
            .teaser-horizontal {
              grid-template-columns: 1fr !important;
            }


  .tab-btn-img {
    height: 100%;
  }

  .tab-btn-label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.section-dark {
  background: var(--color-deep-blue);
  color: var(--color-white);
  padding: 2.5rem 1.5rem;
  margin-top: 2.5rem;
}

.section-dark h2 {
  color: var(--color-white);
}

.news-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.news-card {
  background: var(--color-white);
  border-radius: 0.25rem;
  overflow: hidden;
  color: var(--color-dark-blue-800);
  display: flex;
  flex-direction: column;
}

.news-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.news-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-date {
  font-size: 0.875rem;
  color: var(--color-neutral-500);
  margin-bottom: 0.5rem;
}

.news-card h3 {
  margin-bottom: 0.75rem;
}

.news-card h3 a {
  color: var(--color-dark-blue-800);
  text-decoration: none;
}

.news-card h3 a:hover {
  color: var(--color-odyssey-blue-800);
}

.news-card p {
  flex: 1;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  font-family: 'DeutscheBank Regular', Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.375rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  border-radius: 0.1875rem;
  padding: 0.75rem 2rem;
}

.btn-primary {
  background: var(--color-odyssey-blue-700);
  color: var(--color-white);
  border-color: var(--color-odyssey-blue-700);
}

.btn-primary:hover {
  background: var(--color-odyssey-blue-800);
  border-color: var(--color-odyssey-blue-800);
  color: var(--color-white);
}

.btn-primary:active {
  background: var(--color-odyssey-blue-900);
  border-color: var(--color-odyssey-blue-900);
  color: var(--color-white);
}

.teaser-horizontal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  background: var(--color-deep-blue);
  margin-top: 2.5rem;
  border-radius: 0.25rem;
  overflow: hidden;
}
img {
  max-width: 100%;
}
.teaser-horizontal-img {
  min-height: 200px;
  object-fit: cover;
}

.teaser-horizontal-body {
  padding: 1.5rem;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.teaser-horizontal-body h3 {
  margin-bottom: 0.75rem;
}

.teaser-horizontal-body p {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .teaser-horizontal-img {
    min-height: 300px;
  }
}

footer {
  background: var(--color-dark-blue-800);
  color: var(--color-white);
  margin-top: 3.125rem;
  padding-top: 2.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-links li {
  display: flex;
  align-items: center;
}

.footer-links a {
  color: var(--color-odyssey-blue-300);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.3125rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--color-odyssey-blue-200);
}

.footer-links a::before {
  content: "\2192";
  font-size: 0.625rem;
}

.footer-disclaimer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 2.5rem;
  font-size: 0.6875rem;
  line-height: 1.0625rem;
  color: var(--color-white);
}

.sidebar-buttons {
  position: fixed;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 0.375rem;
  background: var(--color-neutral-200);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--color-odyssey-blue-700);
  font-size: 0.5625rem;
  line-height: 0.5rem;
  padding: 0.375rem 0 0;
}

.sidebar-btn:hover {
  background: var(--color-odyssey-blue-200);
  color: var(--color-odyssey-blue-800);
}

.sidebar-btn img,
.sidebar-btn svg {
  width: 1.375rem;
  height: 1.375rem;
  margin-bottom: 0.25rem;
}

.sidebar-btn span {
  display: block;
}

.sidebar-btn-scrolltop {
  width: 3rem;
  height: 3rem;
  border-radius: 0.375rem;
  background: var(--color-neutral-200);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--color-odyssey-blue-700);
  font-size: 1.5rem;
  text-decoration: none;
}

.sidebar-btn-scrolltop.visible {
  display: flex;
}

.sidebar-btn-scrolltop:hover {
  background: var(--color-odyssey-blue-200);
}

@media (min-width: 1109px) {
  .sidebar-buttons {
    right: 0.125rem;
    top: 16.1875rem;
    bottom: auto;
  }

  .sidebar-btn-scrolltop {
    display: flex;
  }
}
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 -2px 13px 0 rgba(0, 0, 0, .15);
  z-index: 160;
  padding: 1rem 1.5rem;
  transition: bottom 0.4s ease-in-out;
  transition-delay: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
}
.cookie-banner.show {
  bottom: 0;
}
.cookie-banner-container {
  max-width: 70rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}
.cookie-banner-text {
  color: #747474;
  font-size: 0.875rem;
  line-height: 1.57143;
  flex: 1;
  min-width: 200px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.btn-cookie {
  font-family: 'DeutscheBank Regular', Arial, sans-serif;
  font-size: 0.875rem;
  padding: 0.75rem 2rem;
  border-radius: 0.1875rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid var(--color-odyssey-blue-700);
  display: inline-block;
}
.btn-cookie-accept {
  background: var(--color-odyssey-blue-700);
  color: var(--color-white);
}
.btn-cookie-accept:hover {
  background: var(--color-odyssey-blue-800);
  border-color: var(--color-odyssey-blue-800);
  color: var(--color-white);
}
.btn-cookie-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-odyssey-blue-700);
  font-size: 1rem;
  padding: 0;
}
.btn-cookie-close:hover {
  color: var(--color-odyssey-blue-800);
}
@media (max-width: 767px) {
  .cookie-banner-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 576px) {
  .tabs-nav {
      grid-template-columns: 1fr;
    }
}