html {
  scrollbar-color: var(--bs-gray-700) var(--bs-gray-100);
  scrollbar-width: thin;
}

body {
  color: var(--bs-gray-800) !important;
  font-family: 'Anek Latin';
  font-size: 14pt;
}

::-webkit-scrollbar-thumb {
  background: var(--bs-gray-700);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bs-gray-100);
}

::selection {
  background: var(--bs-gray-700);
  color: var(--bs-light);
}

/* CUSTOM BACK TO TOP */

.scroll-top {
  background: var(--bs-secondary) url('../../assets/img/cd-top-arrow.svg?h=dd0938bc6ef39f53de722a1ba52999b1') no-repeat center 50%;
  color: #FFF;
  transition: all .5s;
  position: fixed;
  right: -70px;
  bottom: 20px;
  z-index: 1;
  display: none;
  cursor: pointer;
  border-radius: 0.5rem;
  box-shadow: 0 3px 10px -2px rgba(0, 0, 0, 0.5);
  height: 60px;
  width: 60px;
  opacity: 0.8;
  transition: all 0.5s;
}

.scroll-top:hover {
  opacity: 1;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
}

/* MENÜSÁV */

.navbar .nav-link, .navbar .nav-link:focus {
  color: var(--bs-gray-800);
}

.navbar .nav-link:hover {
  color: var(--bs-success);
}

.navbar .nav-item {
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .navbar .nav-item::after {
    content: '\2022';
    color: var(--bs-success);
    font-size: 24pt;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item:last-child::after {
    content: '';
  }
}

.navbar .navbar-brand img {
  width: 140px;
  height: auto;
}

/* FEJLÉC */

.fejlec {
  position: relative;
  z-index: 1;
  background: url('../../assets/img/tlmbk-kepek/training-bg.jpg?h=672dfd2e2de670c9b528c07cd51b53ed');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  margin-top: 60px;
}

@media (min-width: 300px) {
  .fejlec {
    height: 500px;
    padding: 10px 0;
  }
}

@media (min-width: 768px) {
  .fejlec {
    height: 475px;
    padding: 20px 0;
  }
}

@media (min-width: 992px) {
  .fejlec {
    height: 515px;
    /*padding: 100px 0;*/
  }
}

@media (min-width: 1400px) {
  .fejlec {
    height: 600px;
    /*padding: 100px 0;*/
  }
}

.fejlec::after {
  background: linear-gradient(to right, var(--bs-success) 0%, var(--bs-success) 100%) repeat scroll 0 0;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.85;
  z-index: -1;
}

.fejlec .shape-bottom {
  position: absolute;
  top: auto;
  bottom: -1px;
  left: 0;
  right: 0px;
  transform: scaleX(-1);
  z-index: 0;
}

.fejlec .shape-bottom .shape-path {
  fill: #FFF;
}

.fejlec .container {
  position: relative;
  z-index: 2;
}

.fejlec .diagram-kep {
  position: relative;
  left: 0;
  bottom: 0;
  animation: MoveUpDown 4s linear infinite;
}

.tartalom hr {
  background-image: linear-gradient(90deg, transparent, var(--bs-success), transparent);
  border: 0;
  height: 2px;
  opacity: 1;
}

.tartalom h1 {
  margin-bottom: 25px;
}

.tartalom h1::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background: var(--bs-success);
  margin-top: 10px;
}

.tartalom h1.kozep::after {
  margin: 10px auto 0;
}

.tartalom h2 {
  display: inline-block;
  background: var(--bs-success);
  color: white;
  margin: 25px 0 20px;
  padding: 5px 10px;
  border-radius: 15px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.tartalom .lottie-animation-left, .tartalom .lottie-animation-right {
  height: auto;
  position: absolute;
  z-index: -1;
  opacity: 0.4;
}

.tartalom .lottie-animation-left {
  width: 300px;
  top: 500px;
  left: 15px;
  transform: rotate(30deg);
}

.tartalom .lottie-animation-right {
  width: 350px;
  bottom: 1000px;
  right: 15px;
}

/* BEVEZETŐ SZÖVEG */

.bevezeto-szoveg, .zaro-szoveg {
  border-left: 5px solid var(--bs-success);
  padding-left: 15px;
}

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

.figure .figure-img {
  border-radius: 15px;
}

/* IRODALOMJEGYZÉK */

ol.irodalomjegyzek {
  list-style: none;
  counter-reset: szamlalo;
  padding-left: 55px;
  background: var(--bs-success);
  color: white;
  padding-top: 15px;
  padding-bottom: 15px;
  padding: 15px 15px 15px 50px;
  border: 5px solid #fff;
  border-radius: 15px;
  box-shadow: 0 1px 4px rgb(0 0 0 / 30%);
}

ol.irodalomjegyzek li {
  counter-increment: szamlalo;
  position: relative;
  margin-bottom: 10px;
}

ol.irodalomjegyzek li::before {
  content: "[" counter(szamlalo) "]";
  width: 40px;
  position: absolute;
  left: -40px;
  text-align: right;
  padding-right: 10px;
  font-weight: bold;
}

/* KÉRDÉSE VAN? */

@keyframes MoveUpDown {
  0%, 100% {
    bottom: 0;
  }
  50% {
    bottom: 30px;
  }
}

