/*!***************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./css/style.scss ***!
  \***************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
.blue {
  color: rgb(18, 74, 119);
}

.gray {
  color: rgb(164, 184, 185);
}

.teal {
  color: rgb(21, 183, 192);
}

a.teal:hover {
  color: rgb(18, 74, 119);
}

:root {
  --swiper-navigation-size: 26px !important; /* or any size you want */
}

body {
  font-family: "inter", sans-serif;
  overflow-x: hidden;
  position: relative;
  background-color: #f7fdfd;
}

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

a {
  color: #1a1a1a;
}

a:hover {
  text-decoration: none;
}

p,
ul,
ol {
  margin: 0 0 1.65em 0;
  color: #525866;
}

p,
li {
  line-height: 1.65;
}

a {
  text-decoration: none;
  color: #1a1a1a;
}

.text-container {
  padding: 20px;
}

.text-primary {
  color: rgb(18, 74, 119);
}

h2 {
  font-size: 20px;
  font-weight: 800;
}

header {
  box-shadow: 0px 0px 40px 0px rgba(18, 74, 119, 0.3);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  position: absolute;
  top: 0;
  z-index: 1000; /* Ensure it's above other content */
  width: calc(100% - 40px);
  margin: 20px 20px;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(217, 240, 241, 0.9) 0%, rgba(232, 247, 247, 0.5) 100%);
  min-height: 160px;
}

.page-banner {
  background-size: cover;
  background-position: center;
  height: 205px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}
@media (min-width: 991px) {
  .page-banner {
    height: 280px;
  }
}
@media (min-width: 1200px) {
  .page-banner {
    height: 340px;
  }
}
@media (min-width: 1480px) {
  .page-banner {
    height: 410px;
  }
}
@media (min-width: 1740px) {
  .page-banner {
    height: 500px;
  }
}

.page-banner__content {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

#page-wrapper {
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  #page-wrapper {
    padding-top: 90px;
  }
  header {
    min-height: 120px;
  }
}
.navbar-brand {
  padding: 0px;
  margin-bottom: 20px;
}

.navbar-brand img {
  max-height: 60px;
  max-width: 150px;
}

.navbar-nav .nav-link {
  font-size: 15px;
  font-weight: 500;
  font-family: "inter";
  padding-left: 35px !important;
  padding-right: 35px !important;
  color: rgb(18, 74, 119);
}
@media (min-width: 991px) {
  .navbar-nav .nav-link {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.navbar-nav .nav-link :first-of-type {
  padding-left: 0 !important;
}

.navbar-nav li:first-of-type .nav-link {
  padding-left: 0 !important;
}

.navbar .menu-item {
  margin: 0px 15px;
}

.navbar-nav .nav-link.active {
  color: #1a1a1a; /* Active link color */
}

.navbar-toggler {
  border: none;
}

.navbar {
  flex-direction: row;
}
.navbar .current_page_item a {
  color: #1a1a1a !important;
  font-weight: bold;
}
.navbar .menu-item {
  font-size: 16px;
}

@media (max-width: 991px) {
  .navbar {
    flex-direction: row;
  }
  header {
    min-height: 120px;
  }
}
@media (min-width: 991px) {
  .navbar {
    justify-content: space-between;
  }
}
.dropdown-menu::before,
.dropdown-menu::after {
  display: none !important;
}

.dropdown-menu {
  border-radius: 10px;
  border: none;
  padding: 12px 0;
  margin-top: 10px !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  min-width: 180px;
  transition: all 0.3s ease;
  animation: fadeInDropdown 0.3s ease-in-out;
}

@keyframes fadeInDropdown {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dropdown-menu .dropdown-item {
  padding: 10px 20px;
  font-size: 15px;
  color: #123c5f;
  transition: all 0.2s ease;
  font-weight: 500;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background-color: #f0f4f8;
  color: #0b5ed7;
}

#custom-search-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#custom-search-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.main-content {
  margin: 50px 0px;
}

.blue-blob {
  position: absolute;
  width: 600px;
  max-width: 50%;
  z-index: -1;
  height: 600px;
  background: linear-gradient(180deg, rgba(206, 252, 255, 0.2) 0%, rgba(21, 183, 192, 0.1) 100%);
  filter: blur(30px);
}
@media (max-width: 991px) {
  .blue-blob {
    display: none;
  }
}
.blue-blob-1 {
  top: 35%;
  left: -300px;
  border-radius: 50%;
}
.blue-blob-2 {
  top: 60%;
  right: -300px;
  border-radius: 50%;
}
.blue-blob-3 {
  bottom: -140%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 3;
}

@media (max-width: 991px) {
  .header-buttons,
  .search-trigger,
  .lexikon {
    display: none !important;
  }
  .navbar-nav li:first-of-type .nav-link {
    padding-left: 35px !important;
  }
  #page-wrapper {
    padding-top: 0px;
  }
  header {
    min-height: 90px;
    margin: 20px 0px;
    width: 100% !important;
    text-align: center;
  }
  .nav-link {
    text-align: center;
  }
  .navbar-toggler {
    position: relative;
    top: -15%;
    right: -12%;
  }
}
@media (max-width: 991px) and (min-width: 530px) {
  .navbar-toggler {
    top: -10%;
    right: -5%;
  }
}
@media (max-width: 991px) {
  .navbar-brand {
    position: relative;
    left: -8%;
  }
}
@media (max-width: 991px) and (min-width: 530px) {
  .navbar-brand {
    left: -5%;
  }
}
@media (max-width: 991px) {
  .kiemelt-hirek .overlay {
    top: 120px !important;
  }
}
@media (max-width: 991px) and (min-width: 991px) {
  .kiemelt-hirek .overlay {
    top: 160px !important;
  }
}
@media (max-width: 991px) {
  .kiemelt-hirek h2 {
    font-size: 22px !important;
    line-height: 28px !important;
  }
  .kiemelt-hirek .featured-post-content {
    margin-bottom: 50px;
  }
  .kiemelt-hirek .meta {
    font-size: 14px !important;
    display: flex;
    flex-direction: column;
  }
}
.page-banner {
  position: relative;
  z-index: 1;
  justify-content: start;
}
.page-banner ::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
.page-banner h1::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: -1;
}

.page-banner .page-title h1 {
  font-size: 26px;
  line-height: 44px;
  text-align: left;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  top: 80px;
  left: 10%;
  position: relative;
}
@media (min-width: 991px) {
  .page-banner .page-title h1 {
    position: absolute;
    top: 80%;
    left: 10%;
    font-size: 36px;
    line-height: 44px;
  }
}

.menu-item,
.nav-link,
.nav-link a span {
  cursor: pointer;
}

.btn-primary {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px 20px;
  color: rgb(18, 74, 119);
  border-radius: 16px;
  border: 0px solid transparent;
}
.btn-primary :hover,
.btn-primary :focus {
  background-color: rgb(255, 255, 255) !important;
}

.btn-secondary {
  background-color: rgba(21, 183, 192, 0.5);
  padding: 10px 20px;
  border-radius: 16px;
  border: 0px solid transparent;
}
.btn-secondary :hover,
.btn-secondary :focus {
  background-color: rgb(21, 183, 192);
}

.link {
  color: rgb(18, 74, 119);
  text-decoration: none;
}

#custom-search-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#custom-search-overlay.active {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 991px) {
  .kiemelt-hirek .image-wrapper {
    width: 50% !important;
    flex: 0 0 150px !important;
  }
  .kiemelt-hirek .image-wrapper img {
    min-height: 110px !important;
  }
  .kiemelt-hirek .featured-post {
    min-height: 300px !important;
  }
}
.kiemelt-hirek .featured-post {
  border-radius: 16px;
  min-height: 350px;
  overflow: hidden;
}
.kiemelt-hirek .overlay {
  position: relative;
  top: 125px;
}
.kiemelt-hirek .overlay p {
  font-size: 14px;
  margin-bottom: 10px;
}
.kiemelt-hirek h2 {
  font-weight: 800;
  font-size: 32px;
  line-height: 42px;
  padding-top: 10px;
}
.kiemelt-hirek .article-preview {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(183, 219, 221, 0.5);
}
.kiemelt-hirek .date {
  font-size: 14px;
  font-weight: 300;
}
.kiemelt-hirek .article-preview img {
  -o-object-fit: cover;
     object-fit: cover;
}
.kiemelt-hirek .featured-post-content {
  color: rgb(95, 123, 146);
  line-height: 24px;
  text-align: justify;
}
.kiemelt-hirek .image-wrapper img {
  border-radius: 6px;
}
.kiemelt-hirek .category {
  border: 1px solid white;
  border-radius: 12px;
  padding: 8px 15px;
  font-size: 12px;
}
.kiemelt-hirek .content-wrapper a {
  color: rgb(18, 74, 119);
}
.kiemelt-hirek .small-featured-post-title {
  font-weight: 600;
}
.kiemelt-hirek .meta {
  font-size: 10.4px;
}
.kiemelt-hirek .image-wrapper {
  overflow: hidden;
}
.kiemelt-hirek .article-preview {
  display: flex;
  align-items: stretch; /* stretch children to equal height */
  gap: 1rem; /* optional spacing */
}
.kiemelt-hirek .image-wrapper {
  flex: 0 0 120px; /* fixed width */
  overflow: hidden;
}
.kiemelt-hirek .image-wrapper img {
  height: 100%;
  width: auto;
  min-height: 83.5px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.kiemelt-hirek .featured-post {
  position: relative;
  overflow: hidden; /* hide overflow when scaling */
}
.kiemelt-hirek .featured-post .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 0; /* behind content */
}
.kiemelt-hirek .featured-post:hover .bg-image {
  transform: scale(1.1); /* zoom in */
}

.fooldal-kategoria {
  margin: 10px 0px;
}
.fooldal-kategoria h2 {
  font-size: 20px;
  font-weight: 800;
}
.fooldal-kategoria .category-image {
  border-radius: 8px;
}
.fooldal-kategoria .category-page-link {
  font-size: 14px;
}

.mb-article-link {
  position: relative;
  top: 10px;
}

/* Header with navigation */
.elemzoink-header {
  /* Custom pagination in header */
  /* Custom navigation arrows */
}
.elemzoink-header .elemzoink-controls {
  gap: 1rem;
}
.elemzoink-header .elemzoink-nav {
  gap: 0.5rem;
}
.elemzoink-header .analyst-pagination {
  gap: 0.5rem;
}
.elemzoink-header .analyst-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: rgb(202, 234, 236);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.elemzoink-header .analyst-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgb(21, 183, 192);
  /* Use your blue variable here */
  opacity: 1;
}
.elemzoink-header .analyst-prev,
.elemzoink-header .analyst-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  color: #003366;
}
.elemzoink-header .analyst-prev:hover,
.elemzoink-header .analyst-next:hover {
  background: #003366;
  border-color: #003366;
  color: white;
}
.elemzoink-header .analyst-prev.swiper-button-disabled,
.elemzoink-header .analyst-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.elemzoink-header .analyst-prev::after {
  content: "‹";
}
.elemzoink-header .analyst-next::after {
  content: "›";
}

.elemzoink-sidebar {
  margin-bottom: 50px;
}
.elemzoink-sidebar .analyst-swiper {
  position: relative;
  overflow: visible;
  height: auto;
  min-height: 400px;
}
.elemzoink-sidebar .analyst-swiper .swiper-wrapper {
  position: relative;
  height: auto;
}
.elemzoink-sidebar .analyst-swiper .swiper-slide {
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center center;
}
.elemzoink-sidebar .analyst-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}
.elemzoink-sidebar .analyst-avatar {
  border-radius: 15px;
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
.elemzoink-sidebar .analyst-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #003366;
  font-size: 18px;
}
.elemzoink-sidebar .analyst-name {
  font-size: 18px;
  font-weight: 700;
  margin-top: -10px;
}
.elemzoink-sidebar .analyst-posts {
  margin-top: 1.5rem;
}
.elemzoink-sidebar .analyst-post {
  border-top: 1px solid #e5e5e5;
  padding: 1rem 0;
}
.elemzoink-sidebar .post-link {
  text-decoration: none;
  color: #003366;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.elemzoink-sidebar .post-title {
  font-weight: 400;
}
.elemzoink-sidebar .post-meta {
  font-size: 0.875rem;
  color: rgb(164, 184, 185);
  position: relative;
}
.elemzoink-sidebar .post-arrow {
  position: absolute;
  right: 0;
}
.elemzoink-sidebar .swiper-slide {
  min-height: 450px;
}
.elemzoink-sidebar .swiper-slide-next {
  position: relative;
  left: 30px !important;
  opacity: 0.9 !important;
  z-index: -1;
}

#elemzok {
  padding-top: 200px;
}
#elemzok .elemzoink-title {
  background: linear-gradient(180deg, #16b8c1 0%, #164172 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
  color: transparent;
  font-size: 26px;
  text-transform: uppercase;
  padding-left: 20px;
}
#elemzok .elemzoink-sidebar .analyst-card {
  margin: 2rem 0rem;
}
@media (min-width: 991px) {
  #elemzok .elemzoink-sidebar .analyst-card {
    width: 30%;
    min-height: 470px;
    margin: 1rem 1rem;
  }
}
@media (min-width: 991px) and (min-width: 991px) {
  #elemzok {
    padding-top: 300px;
  }
}
@media (min-width: 991px) {
  #elemzok .analyst-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  #elemzok .elemzoink-title {
    font-size: 42px;
    padding-left: 0px;
  }
}

.single .article-wrapper {
  position: relative;
  top: 240px;
  min-height: 100vh;
  height: auto;
  padding-bottom: 240px;
}
.single .wp-block-quote {
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
  color: rgb(95, 123, 146);
  margin: 0 auto;
  max-width: 800px;
  border-left: 5px solid rgb(18, 74, 119);
  padding-left: 20px;
}
.single .featured-image {
  width: 100%;
  max-width: 1280px;
  height: 400px;
  background-size: cover !important;
  background-position: center center !important;
  margin-bottom: 20px;
  border-radius: 14px;
  position: relative;
}
.single .post-properties {
  position: absolute;
  bottom: 10%;
  left: 40px;
  width: 80%;
  max-width: 60%;
  color: white;
}
.single .post-properties .post-category a {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 5px 20px;
  border-radius: 8px;
}
@media (min-width: 991px) {
  .single .post-properties .post-category a {
    padding: 10px 40px;
  }
}
.single .post-properties .post-title {
  font-family: Inter;
  font-weight: 700;
  font-size: 38px;
  line-height: 46px;
  letter-spacing: 0%;
  text-align: left;
  margin-top: 40px;
}
.single .post-properties .post-date {
  font-family: Inter;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: justify;
  margin-top: 20px;
}
.single .post-container {
  max-width: 80%;
  margin: 0 auto;
}
.single .post-author {
  background-color: white;
  box-shadow: 0px 0px 40px 0px rgba(202, 234, 236, 0.3);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px;
  width: 600px;
  border-radius: 14px;
  max-width: 80%;
}
.single .author-image {
  margin-left: 30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single .author-name {
  margin-left: 20px;
  font-family: Inter;
  font-weight: 700;
  font-size: 16px;
  color: rgb(18, 74, 119);
}
.single .author-social img {
  width: 26px;
  height: 26px;
}
.single .tag-cloud-link {
  background: rgba(232, 247, 247, 0.5);
  border: 2px solid rgba(232, 247, 247, 0.5);
  color: rgb(95, 123, 146);
  font-size: 14px !important;
  padding: 8px 30px !important;
  margin: 8px 8px 0 0 !important;
}

@media (max-width: 991px) {
  .post-container {
    max-width: 100% !important;
  }
  .single .post-author {
    max-width: 100%;
  }
}
.tags {
  flex-wrap: wrap;
  display: flex;
  flex-direction: row;
}

.single .post-author {
  margin-bottom: 30px;
}

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

.pagination-wrapper .page-numbers {
  display: inline-block;
  margin: 0 6px;
  padding: 6px 12px;
  color: rgb(18, 74, 119);
  text-decoration: none;
  border: 1px solid rgb(18, 74, 119);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pagination-wrapper .page-numbers:hover {
  background-color: rgb(18, 74, 119);
  color: #fff;
}

.pagination-wrapper .page-numbers.current {
  background-color: rgb(18, 74, 119);
  color: #fff;
  font-weight: bold;
}

.page .container .page-content {
  padding-top: 240px;
}

.lexikon-bg {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0px;
  background: linear-gradient(135deg, #2c5aa0 0%, #4a90a4 100%);
  height: 300px;
}
@media (max-width: 991px) {
  .lexikon-bg {
    height: 250px;
    background: linear-gradient(90deg, #154172 0%, #155e85 45.19%, #15b7c0 100%);
  }
}

.lexikon-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-image: transparent;
}

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

.lexikon-title {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  position: relative;
  top: 120px;
  left: 5%;
  color: white;
}
@media (min-width: 991px) {
  .lexikon-title {
    margin-top: 80px;
    color: #2c5aa0;
  }
}
@media (max-width: 991px) {
  .lexikon-title {
    margin-bottom: 0px;
  }
}

.alphabet-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #2c5aa0 0%, #4a90a4 100%);
  border-radius: 10px;
  margin-top: 0px;
  display: none;
}
@media (min-width: 1200px) {
  .alphabet-nav {
    margin-top: 160px;
    display: block;
  }
}

.alphabet-nav a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  font-weight: 400;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 14px;
}

.alphabet-nav a:hover,
.alphabet-nav a.active {
  background: rgba(255, 255, 255, 0.9);
  color: #2c5aa0;
  transform: scale(1.1);
}

.alphabet-nav a.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.alphabet-nav a[data-letter=all] {
  width: auto;
  padding: 0 12px;
  border-radius: 17px;
  font-size: 12px;
  font-weight: 500;
}

.search-box {
  float: right;
  text-align: right;
  margin-bottom: 20px;
  top: 140px;
  right: 20px;
  position: relative;
  width: 280px;
}
@media (max-width: 991px) {
  .search-box {
    border: 1px solid rgb(183, 219, 221);
    border-radius: 30px;
    width: 90%;
    margin: 0 auto;
    background-color: rgba(254, 254, 254, 0.3);
  }
}

.search-box input {
  padding: 10px 45px 10px 15px;
  border: 0px solid #4a90a4;
  border-radius: 25px;
  width: 90%;
  font-size: 14px;
  background-color: transparent;
  color: white;
}

.search-box input::-moz-placeholder {
  color: white;
  opacity: 1;
}

.search-box input::placeholder {
  color: white;
  opacity: 1;
}

.search-box input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.1);
}

.lexikon-list {
  position: relative;
  overflow: hidden;
}

.lexikon-item {
  display: flex;
  padding: 45px 45px;
  transition: opacity 0.3s ease;
  position: relative;
  background-color: white;
  margin: 15px 0px;
  border-radius: 10px;
  border: 1px solid rgb(206, 252, 255);
  opacity: 1;
}

.lexikon-term {
  flex: 0 0 300px;
  padding-right: 30px;
  align-content: center;
}

.lexikon-term h3 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgb(18, 74, 119);
}

.lexikon-term a {
  text-decoration: none;
  color: inherit;
}

.lexikon-term a:hover h3 {
  color: #4a90a4;
}

.lexikon-definition {
  flex: 1;
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}

.lexikon-more {
  flex: 0 0 100px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.more-link {
  color: rgb(21, 183, 192);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  font-family: "inter";
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  transition: color 300ms ease-in-out;
}
.more-link svg {
  position: relative;
  top: 0px;
  left: 10px;
  transform: translateX(0);
  transition: transform 300ms ease-in-out, fill 300ms ease-in-out;
  fill: rgb(21, 183, 192);
}

.more-link:hover {
  color: #2c5aa0;
}
.more-link:hover svg {
  transform: translateX(5px);
  fill: #2c5aa0;
}

.letter-anchor {
  position: absolute;
  top: -100px;
  visibility: hidden;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-style: italic;
}

@media (max-width: 768px) {
  .lexikon-item {
    flex-direction: column;
  }
  .lexikon-term {
    flex: none;
    padding-right: 0;
    margin-bottom: 10px;
    align-content: center;
  }
  .lexikon-more {
    flex: none;
    text-align: left;
    margin-top: 10px;
  }
  .alphabet-nav {
    gap: 8px;
  }
  .alphabet-nav a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
  }
  .alphabet-nav a[data-letter=all] {
    width: auto;
    padding: 0 8px;
    font-size: 10px;
  }
  .search-box input {
    width: 100%;
    max-width: 90%;
  }
}
.back-btn {
  color: rgb(95, 123, 146);
}

.card {
  margin-top: 40px;
  padding-top: 20px;
  border: 0px solid transparent;
  border-radius: 8px;
  box-shadow: 0px 4px 40px 0px rgba(202, 234, 236, 0.3);
}

.nav-tabs .nav-link {
  font-size: 11px;
  border-radius: 8px;
  margin: 5px 5px;
  background: rgb(202, 234, 236);
  color: rgb(104, 158, 161);
}

.nav-tabs {
  border-radius: 8px;
}

.nav-tabs .nav-link.active {
  background-color: rgb(18, 74, 119) !important;
  color: white;
  font-weight: bold;
}

footer {
  position: relative;
}

.footer-container {
  border-radius: 20px;
  margin: 20px;
  position: relative;
  color: rgb(18, 74, 119);
  padding: 30px 50px;
  background-color: rgb(255, 255, 255);
  overflow: hidden;
  z-index: 1;
}
.footer-container p,
.footer-container a,
.footer-container .footer-description {
  color: rgb(95, 123, 146);
}
.footer-container .footer-description {
  max-width: 400px;
}
.footer-container .footer-logo {
  width: 100%;
  max-width: 205px;
}
.footer-container .list-unstyled li {
  line-height: 35px;
}

@media (max-width: 991px) {
  .footer-container {
    margin: 5px;
    padding: 20px;
    background: linear-gradient(180deg, white, rgba(21, 183, 192, 0.1) 100%);
  }
  .footer-heading {
    font-size: 14px;
    font-weight: bold;
    margin-top: 50px;
  }
  .list-unstyled {
    font-size: 14px;
  }
}

/*# sourceMappingURL=style-index.css.map*/