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