.custom-spacer {
    margin-top: 30px !important;
}
#mainContent a:hover {
    background-color: transparent !important;
}
.w_header .w_logo img {
    min-height:260px;
}
.w_developer { display:none !important; }
.w_footer img {
    max-width:230px;
    max-height: 200px;
}
.w_footer .w_block:first-child {
    min-width:29%;
} 

.course-practical-information {
    background-color:#eee;
    padding:10px;
    margin-bottom:30px;
    border: 1px solid #3CBAC9;
}
.course-registrations::before {
    content: "Signups is only visible for logged in admin user (right click to list and export):";
}

body.read-more #featured, body.read-more #featured .bxslider, body.read-more #featured .bx-wrapper, body.read-more #featured .bx-viewport, body.read-more #featured .bxslider li {
    min-height: 86vh !important;
}
.button-element.form-field-v2.outlined.level-2 {
    display:none !important;
}
.w_footer .w_logo img   {
    max-height: 110px !important;
}
.article-block h3,
.course-instructor-label,
.course-instructor,
.course-day-label,
.course-date-time,
.course-day,
.course-duration-label,
.course-duration {
    display:none;
}



/*  Fade in logo  */
.w_logo {
    animation: fadeIn 1.5s ease-in forwards; /* Name, duration, timing, and fill-mode */
}
@keyframes fadeIn {
    0% {
        opacity: 0.0;
    }
    100% {
        opacity: 1;
    }
}
    
    

/* Slide in footer images  */
.image-center-50 {
  opacity: 0; /* Start hidden */
  transform: translateX(-100%); /* Start off-screen to the left */
  animation: slideInFromLeft 1s forwards; /* Apply the animation */
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0); /* End at its original position */
  }
}



