.navbar-center {
    display: flex;
    justify-content: center;
    width: 100%;
}
.feature-image-size img {
    width: 430px;
    height: 215px;
}
.centered-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.lc-container {
    max-width: 1000px!important;
    margin-left: auto;
    margin-right: auto;
}

/* Media query for tablets and larger devices */
@media (min-width: 768px) {
    .lc-container {
        min-width: 750px;
    }
}

/* Media query for mobile devices */
@media (max-width: 767px) and (orientation: portrait) {
    .lc-container, .footer {
        min-width: 600px;
    }
    
    .call2action {
        min-width: 650px;
    }
}

.attention-wrapper {
  display: flex;
  overflow: hidden;
}

.slide {
  flex: 0 0 100%;
  transition: transform 1s ease;
}

.slider-container img {
    max-width: 1000px;
    height: auto;
}
#dynamic-tone {
    visibility: visible;
    opacity: 0;
    position: relative;
	transition: visibility 0s, opacity 0.8s linear;
}
.welcome-bonus {
	width: 75%;
	margin: auto;
	font-size: 1.1rem;
}
@media (max-width: 768px) {
    .welcome-bonus {
        width: 100%;
		margin: auto;
    }
}
.slider-container {
    position: relative;
    max-width: 100%;
    margin: 20px auto;
    overflow: hidden;
}
.slider-container {
    position: relative;
    max-width: 100%;
    margin: 20px auto;
    overflow: hidden;
}
.slides-wrapper {
    display: flex;
    transition: transform 0.8s ease;
}
.slide {
    min-width: 100%;
}
.slide img {
    width: 100%;
    vertical-align: middle;
}
.is-gold {
    background-color: #fd922a!important;
    color: #fff!important;
}
.is-headline {
    font-size:2.25rem;
}
.card-header.has-background-link-light .card-header-title {
  color: #3850b7!important;
}
.highlighted-title {
  position: relative;
  color: #363636;
}
.highlighted-title::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 90%;
  width: 600px;
  height: 50px;
  background: url('../images/highlight-stroke.svg');
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.75;
  transform: translate(-50%, -50%);
}

.confetti-container {
  position: absolute;
  top: -45px;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.confetti {
  position: absolute;
  width: 7px;
  height: 7px;
  opacity: 0.4;
  background-color: red;
  animation-name: fall, fade, sway;
  animation-timing-function: linear, ease-out, ease-in-out;
}

@keyframes fall {
  0% {
    top: 0%;
  }
  100% {
    top: 70%;
  }
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes sway {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

	
.navbar-item.is-tab:hover {
  color: hsl(217, 71%, 45%);
}
.custom-underline {
  position: relative;
  display: inline-block;
}
.custom-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 7px;
  background-color: #4a4a4a;
}
#faq-table th {
    width: 50%;
    min-width: 50%;
}
.faq-question {
    cursor: pointer;
}
#faq-table.is-striped tbody tr:nth-child(even) {
    background-color: #f6f6ea !important;
}
.scroll-container {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  height: 70px;
}
.scrolling-wrapper {
  white-space: nowrap;
  animation: scrolling 20s linear infinite;
}
.category {
  display: inline-block;
  padding: 0 10px;
  opacity: 0.5;
  transition: opacity 1s, transform 1s;
}
.clamp {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.has-text-custom-medium {
    color: #fd922a;
}
.has-background-custom-medium {
    background-color: #fd922a;
}
.button.has-background-custom-medium.is-hovered, .button.has-background-custom-medium:hover {
    background-color: #f68b23;
    border-color: transparent!important;
    color: #fff;
}
.is-divider {
  position: relative;
  height: 1px;
  background-color: #dbdbdb;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.is-divider::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 0 1rem;
  content: attr(data-content);
  font-weight: 600;
  font-size: 0.8em;
  color: hsl(0, 0%, 48%);
}
.speech-bubble {
  padding: 25px 25px;
  border-radius: 20px;
  position: relative;
}
.speech-bubble-left::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left-color: #ebfffc;
  border-right: 0;
  margin-top: -5px;
  margin-right: -10px;
}
.speech-bubble-left.has-background-warning-light::after {
  border-left-color: #fffaeb;
}
.speech-bubble-right::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-right-color: #eff1fa;
  border-left: 0;
  margin-top: -5px;
  margin-left: -10px;
}
.speech-bubble-left,
.speech-bubble-right {
  opacity: 0;
  transform: translateX(-100%);
}
.speech-bubble-right {
  transform: translateX(100%);
}
.slide-in-left {
  animation: slideInLeft 1s forwards;
}
.slide-in-right {
  animation: slideInRight 1s forwards;
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes moveUpDown {
  0%, 100% {
    transform: translateY(3px);
  }
  50% {
    transform: translateY(-3px);
  }
}
.animate-icon {
  transform: translateY(2px);
  animation: moveUpDown 1s linear infinite;
}
.article_title {
  line-height: 1.65em;
}
.slide-up {
  animation-name: slideUp;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-up2 {
  opacity: 0;
  animation-name: slideUp2;
  animation-duration: 1s;
  animation-delay: 5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes slideUp2 {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .hide-on-mobile img {
    display: none;
  }
}

#fireworkHero {
  position: relative;
  z-index: 1;
  background-color: white;
}

.firework-container {
  position: absolute;
  z-index: 0;
}

.mini-circle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  animation: bloom 1s ease-out;
}

@keyframes bloom {
  0% {
    width: 5px;
    height: 5px;
    opacity: 1;
    transform: scale(1);
  }
  100% {
    width: 50px;
    height: 50px;
    opacity: 0;
    transform: scale(10);
  }
}

.diamond {
  width: 8px;
  height: 8px;
  background-color: orangered;
  position: absolute;
  transform: rotate(45deg) scale(1);
  animation: twinkling 0.75s infinite alternate;
}

@keyframes twinkling {
  0% {
    transform: rotate(45deg) scale(0.5);
    opacity: 0.3;
  }
  100% {
    transform: rotate(45deg) scale(1.5);
    opacity: 0.7;
  }
}

.table-our-plugin,
.table-competitors {
  border-collapse: collapse;
  width: 100%;
}

.table-our-plugin th,
.table-our-plugin td,
.table-competitors th,
.table-competitors td {
  padding: 8px;
  text-align: left;
}

/* Lightly darker striped rows for .table-our-plugin */
.table-our-plugin tbody tr:nth-child(odd) {
  background-color: #00876f; /* Slightly darker */
}

.table-our-plugin tbody tr:nth-child(even) {
  background-color: #00947e;
}

.table-our-plugin th {
  background-color: #00947e;
  color: white;
  border-bottom: 1px solid white;
}

/* Lightly darker striped rows for .table-competitors */
.table-competitors tbody tr:nth-child(odd) {
  background-color: hsl(0, 0%, 92%);
}

.table-competitors tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}

.table-competitors th {
  color: #363636;
  border-bottom: 1px solid #363636;
}

.is-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.optin {
  font-size: 0.87rem;
}

.accordion-header {
    cursor: pointer;
}

.blackout {
	color: black!important;
}

.black-and-white img {
    filter: grayscale(100%);
}