@keyframes bounceDown {
  0% {
    transform: scale(1, 1) translateX(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateX(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-4px);
  }
  50% {
    transform: scale(1.05, 0.95) translateY(6px);
  }
  57% {
    transform: scale(1, 1) translateY(-2px);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes bounce2 {
  0% {
    transform: scale(1, 1) translateX(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateX(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateX(-4px);
  }
  50% {
    transform: scale(1.05, 0.95) translateX(2px);
  }
  57% {
    transform: scale(1, 1) translateX(-2px);
  }
  64% {
    transform: scale(1, 1) translateX(0);
  }
  100% {
    transform: scale(1, 1) translateX(0);
  }
}
@keyframes markBlue {
  0% {
    background-size: 0% 100%;
    color: inherit;
  }
  60% {
    color: inherit;
  }
  100% {
    background-size: 100% 100%;
    color: #1967D2;
  }
}
@keyframes markGreen {
  0% {
    background-size: 0% 100%;
  }
  60% {
    color: inherit;
  }
  100% {
    background-size: 100% 100%;
    color: #157c32;
  }
}
@keyframes markOrange {
  0% {
    background-size: 0% 100%;
    color: inherit;
  }
  60% {
    color: inherit;
  }
  100% {
    background-size: 100% 100%;
    color: #e4630a;
  }
}
/* Fonts */
.glossary__outline {
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.glossary__title {
  margin: 0;
  font-size: 32px;
  line-height: 48px;
  padding-right: 16px;
}
.glossary__head {
  padding: 64px 0 24px;
  background: #F1F5F9;
}
.glossary__search .form-group {
  position: relative;
  margin-bottom: 0;
}
.glossary__search .form-group .form-control {
  font-size: 14px;
  line-height: 20px;
  border: 1px solid #D0D6DD;
  border-radius: 6px;
  height: 48px;
  padding: 4px 100px 4px 12px;
  margin-bottom: 0;
}
.glossary__search .form-group .btn-black {
  position: absolute;
  right: 4px;
  top: 4px;
  background: #232933;
  color: #FFF;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 16px;
  line-height: 22px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.glossary__wrapper {
  position: relative;
}
.glossary__nav {
  background: #F1F5F9;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 3;
}
.glossary__nav ul#navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: #FFF;
  border-radius: 6px;
}
.glossary__nav ul#navbar li {
  display: inline-flex;
  padding: 4px;
  transition: all linear 0.2s;
}
.glossary__nav ul#navbar li a {
  display: flex;
  padding: 8px 13.2px;
  justify-content: center;
  align-items: center;
  color: #626B79;
  background: transparent;
  border-radius: 4px;
  transition: all linear 0.2s;
}
.glossary__nav ul#navbar li.active {
  transition: all linear 0.2s;
}
.glossary__nav ul#navbar li.active a {
  color: #1C44D5;
  background: #D5DEFF;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  transition: all linear 0.2s;
}
.glossary__nav ul#navbar li.disabled {
  pointer-events: none;
}
.glossary__nav ul#navbar li.disabled a {
  color: #D0D6DD;
  background: transparent;
}
.glossary__content {
  max-width: 100%;
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 80px;
  padding: 64px 0;
}
.glossary__content .group {
  flex: 0 0 100%;
  max-width: 100%;
}
.glossary__content .group .label {
  font-size: 32px;
  line-height: 48px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.glossary__content .group .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 24px;
}
.glossary__content .group .items .item {
  display: block;
  width: 100%;
  max-width: calc(33.3333333333% - 16px);
  flex: 0 0 100%;
}
.glossary__content .group .items .item__title {
  margin: 0 0 8px;
  font-weight: 600;
  position: relative;
  padding-right: 24px;
}
.glossary__content .group .items .item__more {
  position: absolute;
  top: 0;
  right: 0;
}
.glossary__content .group .items .item__desc {
  margin: 0 0 24px;
}
.glossary__content .group .items .item__action {
  opacity: 0;
  max-height: 0;
  visibility: visible;
  transition: all 0.2s ease;
}
.glossary__content .group .items .item__wrap {
  padding: 16px;
  height: 100%;
  border: 1px solid #D0D6DD;
  border-radius: 8px;
  display: block;
  transition: all linear 0.2s;
}
.glossary__content .group .items .item__wrap .item__title {
  color: #232933;
}
.glossary__content .group .items .item__wrap .item__desc {
  color: #626B79;
}
.glossary__content .group .items .item__wrap.link {
  background: #FFF;
  transition: all linear 0.2s;
}
.glossary__content .group .items .item__wrap.link .item__title {
  color: #4B61DD;
  text-decoration: none;
}
.glossary__content .group .items .item__wrap.link .item__desc {
  color: #626B79;
  text-decoration: none;
}
.glossary__content .group .items .item__wrap:hover {
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all linear 0.2s;
}
.glossary__content .group .items .item__wrap:hover.link {
  background: #E0EEFF;
  text-decoration: none;
  border-color: #4B61DD;
  transition: all linear 0.2s;
}
.glossary__content .group .items .item__wrap:hover.link .item__title,
.glossary__content .group .items .item__wrap:hover.link .item__desc {
  text-decoration: none;
}
.glossary__content .group .items .item__wrap:hover.link .item__more path {
  stroke: #4b61dd;
  transition: all linear 0.2s;
}
@media screen and (max-width: 1200px) {
  .glossary__nav ul#navbar li a {
    font-size: 14px;
    line-height: 20px;
    padding: 8px 13px;
  }
}
@media screen and (max-width: 991px) {
  .glossary__content .group .items .item {
    max-width: calc(50% - 12px);
  }
}
@media screen and (max-width: 575px) {
  .glossary__head {
    padding: 32px 0 16px 0;
    text-align: center;
  }
  .glossary__title {
    font-size: 28px;
    line-height: 36px;
  }
  .glossary__search {
    margin-top: 24px;
  }
  .glossary__search .btn {
    width: auto;
  }
  .glossary__nav {
    padding: 24px 0 32px;
  }
  .glossary__nav ul#navbar li a {
    padding: 2px 7px;
  }
  .glossary__content .group .items .item {
    max-width: 100%;
  }
}/*# sourceMappingURL=glossary.css.map */