/*******
	Breakpoints / Layout / Grid
********/
/*******
	Typography
********/
/*******
	Backgrounds
********/
/*********
	Elements
********/
/* Breakpoints START */
/* Breakpoints END */
/* Spacings START */
/* Spacings END */
.whitepaper-listing-block {
  width: 100%;
  padding-top: 56px;
  padding-bottom: 56px;
}
.whitepaper-listing-block--title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.625rem;
}
@media (min-width: 1024px) {
  .whitepaper-listing-block--title {
    font-size: 2rem;
  }
}
.whitepaper-listing-block__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.whitepaper-listing-block__lister {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
@media (min-width: 1024px) {
  .whitepaper-listing-block__lister {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.whitepaper-listing-block__item {
  position: relative;
  display: flex;
  gap: 10px;
  flex-direction: column;
  background: #fff;
  color: #111111;
  overflow: hidden;
  height: auto;
  padding-top: 20px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 1024px) {
  .whitepaper-listing-block__item {
    gap: 20px;
    min-height: 400px;
  }
}
.whitepaper-listing-block__item--heading {
  font-size: 1.25rem;
  line-height: 23px;
  z-index: 2;
}
@media (min-width: 1024px) {
  .whitepaper-listing-block__item--heading {
    font-size: 2rem;
    line-height: 36px;
  }
}
.whitepaper-listing-block__item--description {
  font-size: 1rem;
  z-index: 2;
}
@media (min-width: 1024px) {
  .whitepaper-listing-block__item--description {
    font-size: 1.25rem;
  }
}
.whitepaper-listing-block__item .btn {
  margin-top: auto;
  width: fit-content;
}
.whitepaper-listing-block__item::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(0, 174, 239, 0.35);
  border-radius: 100%;
  transform: translate(60%, 80%);
  transition: transform 0.3s ease;
}
@media (min-width: 1024px) {
  .whitepaper-listing-block__item::before {
    transform: translate(40%, 60%);
  }
}
.whitepaper-listing-block__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(0, 174, 239, 0.15);
  border-radius: 100%;
  transform: translate(80%, 60%);
  transition: transform 0.3s ease;
}
@media (min-width: 1024px) {
  .whitepaper-listing-block__item::after {
    transform: translate(60%, 40%);
  }
}
.whitepaper-listing-block__item:hover::before {
  transform: translate(5%, 30%);
}
.whitepaper-listing-block__item:hover::after {
  transform: translate(35%, 10%);
}