CSS

.moving-ball {
    position: absolute;
    background: linear-gradient(to bottom right, #f8f8d0, #c98f06); /* Darker yellow colors */
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: moveBall 30s linear infinite;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

@keyframes moveBall 
    0% { top: 10px; left: 10px; transform: rotate(0deg); }
    25% { top: 10px; left: calc(100% - 30px); transform: rotate(90deg); }
    50% { top: calc(100% - 30px); left: calc(100% - 30px); transform: rotate(180deg); }
    75% { top: calc(100% - 30px); left: 10px; transform: rotate(270deg); }
    100% { top: 10px; left: 10px; transform: rotate(360deg); }
}

.wp-caption-text {
    padding: 0 20px;
}

.page-id- .wp-block-columns {
    height: 180vh;
    display: flex;
}

.page-id- .wp-block-column {
    overflow-y: auto;
}

.page-id- body{
    margin: 0;
}


/* Slide-up animation */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation to column */
.slide-up-column {
  animation: slideUp 0.8s ease-out forwards;
}



/* Initial state: hidden and below */
.scroll-slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

/* Final state: visible and in place */
.scroll-slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Slide-up keyframes */
@keyframes slideUpOnLoad {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Class to trigger slide-up */
.slide-up-on-load {
  animation: slideUpOnLoad 0.8s ease-out forwards;
}


.hover-link {
  color: #737373; 
  transition: color 0.3s ease;
  text-decoration: underline; 
}

.hover-link:hover {
  color: #bc8b54; 
  text-decoration: underline; 
}


.vertical-divider {
  width: 1px;
  height: 91%;
  background-color: #BC8B54;
  position: absolute;
	top: 38px; 
}

footer a {
  font-size: 13px;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: white; 
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer .emoji {
  font-size: 16px;
  line-height: 1;
}


@media only screen and (max-width: 767px) {
  .mobile-padding-10 {
    padding: 10px !important;
  }
}

.fixed-height-column {
  height: 250px;
  overflow: auto; 
}

.justify-paragraph {
  text-align: justify;
}

.text-10px {
  font-size: 10px;
}

@media (max-width: 768px) {
  .site-primary-footer-wrap[data-section="section-primary-footer-builder"] .ast-builder-grid-row {
    padding-right: 0px;
  }
}