.hero-anim-outer {
  height: 100vh;
  position: relative;
}
@media (max-width: 767.98px) {
  .hero-anim-outer {
    overflow: hidden;
  }
}

.sunlight {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.6),
    rgba(255, 165, 0, 0.2),
    rgba(0, 0, 0, 0)
  );
  filter: blur(80px);
  z-index: 1;
}

/* Comet style */
.comet {
  position: absolute;
  width: 6px;
  height: 100px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
  border-radius: 50%;
  box-shadow: 0px 0px 15px var(--color_07);
  transform: rotate(230deg); /* Tail is upwards */
  opacity: 0.8;
  animation-timing-function: linear;
  z-index: 100;
}

/* Tiny stars */
.star {
  position: absolute;
  background: var(--color_07);
  border-radius: 50%;
  box-shadow: 0px 0px 10px var(--color_07);
  animation: twinkle 2s infinite alternate ease-in-out;
}
.ti-hero.active .star,
.ti-hero.active .sunlight {
  display: none;
}

@keyframes twinkle {
  0% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.ti-hero {
  background: radial-gradient(circle at bottom, #0b1622, #000);
  position: relative;
}
.ti-hero .section-inner {
  height: 100vh;
}
.ti-hero.active {
  background: linear-gradient(
    to right,
    #131a22,
    #232f3e,
    rgb(55, 71, 90),
    #485769
  );
}

.ti-hero.active .particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.ti-hero.active .particle {
  position: absolute;
  border-radius: 50%;
  animation: float 6s infinite ease-in-out,
    glow 4s infinite alternate ease-in-out,
    colorChange 5s infinite alternate ease-in-out;
}

@keyframes float {
  0% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-40px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(255, 204, 0, 0.6);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 204, 0, 1);
  }
}

@keyframes colorChange {
  0% {
    background: rgba(255, 204, 0, 0.8);
  }
  50% {
    background: var(--color_07);
  }
  100% {
    background: rgba(255, 170, 0, 0.8);
  }
}
.hero-content {
  position: absolute;
  left: 0;
  top: calc(50% + 150px);
  transform: translate(0, -50%);
  text-align: center;
  width: 100%;
}
.hero-content.small-height .h1 {
  color: var(--white);
}
.hero-content .h1 {
  color: var(--white);
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  z-index: 10;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
}
@media (max-width: 767.98px) {
  .hero-content .h1 {
    font-size: 1.8rem;
    line-height: 3rem !important;
    margin: 0 0 0.5rem;
  }
}
.hero-content .category-info {
  font-size: 1.25rem;
  color: var(--white);
  margin: 0 0 3.75rem;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 10px rgba(128, 201, 244, 0.7);
}
@media (max-width: 767.98px) {
  .hero-content .category-info {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
.hero-content .category-info .category-label {
  font-weight: 700;
  height: 0px;
  transition: all 0.5s;
  display: inline-block;
  overflow: hidden;
  opacity: 0;
}
.hero-content .category-info .category-label.show {
  height: 24px;
  text-align: right;
  display: flex;
  align-items: center;
  opacity: 1;
}
.hero-content .button-section {
  gap: 24px;
}
@media (max-width: 767.98px) {
  .hero-content .button-section {
    gap: 14px;
    padding: 0 1rem;
  }
  .hero-content .button-section .hero-btn1 {
    width: 50%;
  }
}
.hero-content .button-section .btn {
  width: 13rem;
}
@media (max-width: 767.98px) {
  .hero-content .button-section .btn {
    width: 100%;
    font-size: 0.75rem;
    line-height: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.hero-category {
  position: absolute;
  top: 0;
  left: 0;
  width: 470px;
  height: 470px;
  transition: height 1s ease, width 2s ease;
}
.hero-category.add-trasition .category-item {
  transition: all 1s ease;
}
.hero-category .category-item {
  position: absolute;
  top: 0;
  width: 4.375rem;
  height: 4.375rem;
}
.hero-category .category-item img {
  max-width: 100%;
  display: block;
}
.hero-category .category-item.cat-1 {
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-category .category-item.cat-2 {
  top: 67%;
  left: 0;
}
.hero-category .category-item.cat-3 {
  top: 18%;
  left: 0;
}
.hero-category .category-item.cat-4 {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-category .category-item.cat-5 {
  top: 18%;
  right: 0;
  left: auto;
  transform: translate(0, 0);
}
.hero-category .category-item.cat-6 {
  top: 67%;
  left: auto;
  right: 0;
  transform: translate(0, 0);
}
.hero-category .cat-label {
  position: absolute;
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
  display: inline-block;
  top: 50%;
  transform: translate(0, -50%);
  --item-space: 82px;
}
.hero-category .cat-label.label-1 {
  top: var(--item-space);
  left: 50%;
  transform: translate(-50%, 0);
}
.hero-category .cat-label.label-2 {
  right: var(--item-space);
}
.hero-category .cat-label.label-3 {
  right: var(--item-space);
}
.hero-category .cat-label.label-4 {
  bottom: var(--item-space);
  left: 50%;
  transform: translate(-50%, 0);
  top: auto;
}
.hero-category .cat-label.label-5 {
  top: 50%;
  left: var(--item-space);
}
.hero-category .cat-label.label-6 {
  left: var(--item-space);
}
.hero-category.active {
  left: 50%;
  transform: translate(-50%, -10%);
  width: 230px;
  height: 200px;
}
.hero-category.active .cat-label {
  display: none;
}
.hero-category.active .category-item {
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 5.625rem;
  height: 5.625rem;
  transform-origin: center center !important;
  transform: scale(0.5) !important;
}
.hero-category.active .category-item.cat-1 {
  transform: scale(0.5);
  left: 35%;
  top: 37%;
}
.hero-category.active .category-item.cat-2 {
  left: 3px;
  top: 56%;
  transform: scale(0.9) !important;
  z-index: 1;
}
.hero-category.active .category-item.cat-3 {
  left: 14px;
  top: 17px;
  z-index: 1;
  transform: scale(0.63) !important;
}
.hero-category.active .category-item.cat-4 {
  left: 70%;
  top: 0;
  z-index: 1;
  transform: none;
}
.hero-category.active .category-item.cat-5 {
  left: 47%;
  top: -12px;
  z-index: 1;
  transform: scale(0.21) !important;
}
.hero-category.active .category-item.cat-6 {
  left: 74%;
  top: 73%;
  z-index: 1;
  transform: scale(0.25) !important;
}

.hero-category[data-category="category1"].active .cat-1,
.hero-category[data-category="category2"].active .cat-2,
.hero-category[data-category="category3"].active .cat-3,
.hero-category[data-category="category4"].active .cat-4,
.hero-category[data-category="category5"].active .cat-5,
.hero-category[data-category="category6"].active .cat-6 {
  transform: scale(1.64) !important;
  z-index: 9 !important;
}

.hero-category[data-category="category1"].active .category-item.cat-1 {
  transform: scale(0.5);
  left: 35%;
  top: 37%;
}
.hero-category[data-category="category1"].active .category-item.cat-2 {
  left: 3px;
  top: 56%;
  transform: scale(0.9) !important;
  z-index: 1;
}
.hero-category[data-category="category1"].active .category-item.cat-3 {
  left: 14px;
  top: 17px;
  z-index: 1;
  transform: scale(0.63) !important;
}
.hero-category[data-category="category1"].active .category-item.cat-4 {
  left: 70%;
  top: 0;
  z-index: 1;
  transform: none;
}
.hero-category[data-category="category1"].active .category-item.cat-5 {
  left: 47%;
  top: -12px;
  z-index: 1;
  transform: scale(0.21) !important;
}
.hero-category[data-category="category1"].active .category-item.cat-6 {
  left: 74%;
  top: 73%;
  z-index: 1;
  transform: scale(0.25) !important;
}

.hero-category[data-category="category2"].active .category-item.cat-2 {
  transform: scale(0.5);
  left: 35%;
  top: 37%;
}
.hero-category[data-category="category2"].active .category-item.cat-1 {
  left: 3px;
  top: 56%;
  transform: scale(0.9) !important;
  z-index: 1;
}

.hero-category[data-category="category3"].active .category-item.cat-3 {
  transform: scale(0.5);
  left: 35%;
  top: 37%;
}
.hero-category[data-category="category3"].active .category-item.cat-1 {
  left: 14px;
  top: 17px;
  z-index: 1;
  transform: scale(0.63) !important;
}

.hero-category[data-category="category4"].active .category-item.cat-4 {
  transform: scale(0.5);
  left: 35%;
  top: 37%;
}
.hero-category[data-category="category4"].active .category-item.cat-3 {
  left: 70%;
  top: 0;
  z-index: 1;
}
.hero-category[data-category="category4"].active .category-item.cat-1 {
  left: 14px;
  top: 17px;
  z-index: 1;
  transform: scale(0.63) !important;
}

.hero-category[data-category="category5"].active .category-item.cat-5 {
  transform: scale(0.5);
  left: 35%;
  top: 37%;
}
.hero-category[data-category="category5"].active .category-item.cat-3 {
  left: 70%;
  top: 0;
  z-index: 1;
}
.hero-category[data-category="category5"].active .category-item.cat-1 {
  left: 14px;
  top: 17px;
  z-index: 1;
  transform: scale(0.63) !important;
}
.hero-category[data-category="category5"].active .category-item.cat-4 {
  left: 47%;
  top: -12px;
  z-index: 1;
  transform: scale(0.21) !important;
}

.hero-category[data-category="category6"].active .category-item.cat-6 {
  transform: scale(0.5);
  left: 35%;
  top: 37%;
}
.hero-category[data-category="category6"].active .category-item.cat-3 {
  left: 70%;
  top: 0;
  z-index: 1;
}
.hero-category[data-category="category6"].active .category-item.cat-1 {
  left: 14px;
  top: 17px;
  z-index: 1;
  transform: scale(0.63) !important;
}
.hero-category[data-category="category6"].active .category-item.cat-4 {
  left: 47%;
  top: -12px;
  z-index: 1;
  transform: scale(0.21) !important;
}
.hero-category[data-category="category6"].active .category-item.cat-5 {
  left: 74%;
  top: 73%;
  z-index: 1;
  transform: scale(0.25) !important;
}
.hero-anim {
  height: 470px;
  width: 470px;
  margin: 0 auto;
  /* background: red; */
  border-radius: 50%;
  text-align: center;
  position: relative;
  transition: height 0.5s;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 767.98px) {
  .hero-anim {
    transform: translate(-50%, -50%) scale(0.5);
  }
}
.hero-anim.small-height {
  height: 200px;
  top: calc(50% - 70px);
}
@media (max-width: 767.98px) {
  .hero-anim.small-height {
    transform: translate(-50%, -50%) scale(1);
  }
}
.hero-anim.small-height .svg-img {
  opacity: 0 !important;
}

.hero-anim-logo {
  height: 120%;
  display: inline-block;
  transform-origin: center center;
  position: relative;
  z-index: 9;
  margin-top: -10%;
  opacity: 0;
  pointer-events: none;
  width: 106px;
  text-align: left;
}
.hero-anim-logo .logo-shadow {
  content: "";
  background: url(../images/stock_image/circle.svg) no-repeat 0 0;
  height: 228px;
  width: 140px;
  position: absolute;
  transform: rotate(56deg);
  top: -30px;
  left: -104px;
  transform-origin: center center;
  opacity: 0;
}

.hero-logo {
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  left: calc(50% - 52px);
  width: 105px;
  display: flex;
  align-items: center;
  transform-origin: 50% 200px;
}

.svg-img {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.hero-heading span {
  display: inline-block;
  margin: 0 -4px;
}
@media (max-width: 767.98px) {
  .hero-heading span {
    margin: 0;
  }
}

.category-label-outer {
  height: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  margin-right: 6px;
}

.article-body__list_sep {
  margin-left: 10px;
}
.slice-container.person-wrapper {
  margin-bottom: 20px;
  margin-top: 20px;
}

.person--separator {
  border-bottom: 1px solid var(--white_bark_a);
  border-top: 1px solid var(--white_bark_a);
  padding-bottom: 20px;
  padding-top: 20px;
}
.person {
  display: grid;
  grid-template:
    "person-avatar person-heading"
    "person-bio person-bio";
  grid-template-columns: auto 1fr;
  grid-template-rows: 70px auto;
}
.person__avatar-block {
  grid-area: person-avatar;
  margin-right: 15px;
}
.person__avatar-block figure {
  margin-bottom: 0 !important;
}
.image-wrapped__wrapper {
  display: block;
  line-height: 0;
}
.person__avatar-block .image-wrapped__widthsetter {
  width: 70px;
  height: 70px;
}
.image-wrapped__widthsetter {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
}
.person__avatar-block .image-wrapped__widthsetter .person__avatar {
  border-radius: 50px;
  -o-object-fit: cover;
  object-fit: cover;
}
.image__image {
  vertical-align: middle;
  width: 100%;
}
.image-wrapped__image {
  height: 100%;
  left: 0;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}
.person__heading {
  align-self: center;
  grid-area: person-heading;
  text-align: left;
}
.person__name-socials {
  margin-bottom: 2px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}
.person__role {
  font-size: 14px;
  align-self: baseline;
  grid-area: person-role;
  text-align: left;
}
.person__name {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  margin-right: 8px;
}
.button-social-group {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.person__social-buttons {
  vertical-align: middle;
}
.button-social {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  border-bottom: 0 !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  text-decoration: none;
}
.person__social-buttons .button-social__icon {
  font-size: 16px;
  height: 24px;
  width: 24px;
}
.button-social__icon {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 1.5em;
  justify-content: center;
  line-height: 0.875em;
  position: relative;
  width: 1.5em;
}
.person__bio {
  font-size: 16px;
  line-height: 1.5;
}
.person__bio {
  grid-area: person-bio;
  margin-top: 10px;
}
@media screen and (max-width: 700px) {
  .person__role {
    font-size: 0.8125rem;
    line-height: 1.25rem;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .person__name {
    display: inline;
    font-size: 20px;
  }

  .slice-container-person {
    margin-left: -1.25rem;
    width: 100vw;
    margin-bottom: 2.5rem;
  }
  .slice-container-person .person {
    margin-bottom: 1.25rem;
    grid-template-rows: auto;
    padding: 1.25rem;
  }

  .person {
    grid-template-columns: auto 1fr;
    grid-template-rows: 60px auto;
  }
  .person__avatar-block .image-wrapped__widthsetter {
    width: 60px;
	height: 60px
  }
  .person__social-buttons {
    margin-bottom: 1rem;
  }
  .button-social {
    margin-right: 0.625rem;
    min-height: 24px;
    min-width: 24px;
  }
}
.redearth {
  position: absolute;
  height: 400px;
  top: 10px;
  left: 40px;
  width: 400px;
  pointer-events: none;
}
.hero-anim.small-height .redearth {
  opacity: 0 !important;
}
.hero-anim .redearth img {
  height: 400px;
  width: 400px;
}
#premium_display_block {
  background-color: var(--ora-btn-color);
}
