.show_div_on_mobile {
    display: none;
}
@media screen and (max-width: 1200px) {
    .hide_div_on_mobile {
        display: none;
    }
    .show_div_on_mobile {
        display: block;
    }
}

.bottom_spacer {
  height: 100px;
}

.bottom_nspacer {
  margin-bottom: -100px;
}

.bottom_spacer1 {
  height: 10px;
}

.bottom_spacer2 {
  height: 20px;
}

.bottom_spacer3 {
  height: 30px;
}

.bottom_spacer4 {
  height: 40px;
}

.bottom_spacer5 {
  height: 50px;
}

.bottom_spacer6 {
  height: 60px;
}

.bottom_spacer7 {
  height: 70px;
}

.bottom_spacer8 {
  height: 80px;
}

.bottom_spacer9 {
  height: 90px;
}

.bottom_spacer10 {
  height: 100px;
}

.object_fitted {
    object-fit: cover;
}

.add_shadow {
    box-shadow: 0px 1px 9px 0px rgba(0,0,0,0.4);
    -webkit-box-shadow: 0px 1px 9px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 1px 9px 0px rgba(0,0,0,0.4);
}

.add_rounded_corners {
    border-radius: 25px;
}

.card_style {
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
}

.card_style {
    border-radius: 15px;
    background-color: #cccccc;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    padding: 20px;
    height: 350px;
    font-family: sans-serif;
    font-size: 25px;
    color: #FFF;
    box-shadow: 0px 0px 18px 2px rgba(0,0,0,0.39);
    -webkit-box-shadow: 0px 0px 18px 2px rgba(0,0,0,0.39);
    -moz-box-shadow: 0px 0px 18px 2px rgba(0,0,0,0.39);
}

.card_style:hover {
    border-radius: 15px;
    background-color: #cccccc;
    background-repeat: no-repeat;
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    padding: 20px;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    cursor: pointer;
    font-family: sans-serif;
    font-size: 30px;
    color: #FFF;
    box-shadow: 0px 0px 18px 2px rgba(0,0,0,0.39);
    -webkit-box-shadow: 0px 0px 18px 2px rgba(0,0,0,0.39);
    -moz-box-shadow: 0px 0px 18px 2px rgba(0,0,0,0.39);
}

.mini_card_style {
    border-radius: 15px;
    padding: 15px;
    border-top-style: solid;
    border-bottom-style: solid;
    border-color: #e3e3e3;
}

.course_branding {
    border-color: transparent;
    border-width: 0px;
    border-style: none;
    border-radius: 10px;
    box-shadow: 0px 0px 18px 2px rgba(0,0,0,0.39);
    -webkit-box-shadow: 0px 0px 18px 2px rgba(0,0,0,0.39);
    -moz-box-shadow: 0px 0px 18px 2px rgba(0,0,0,0.39);
}

.blur_image {
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

.div_image_portfolio {
    background: url("https://cdn.activelearning.world/images/AL_portfolio.jpg");
    background-position: center;
}

.div_image_courses {
    background: url("https://cdn.activelearning.world/images/AL_courses.jpg");
    background-position: center;
}

.div_image_profile {
    background: url("https://cdn.activelearning.world/images/AL_profile.jpg");
    background-position: center;
}

.position_content_to_bottom {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.home_top_nav {
    padding: 15px !important;
    text-align: left !important;
    background-color: #FFF !important;
    color: #000!important;
}

.nav-link,
.nav-link:hover,
.nav-link:active,
.nav-link:focus {
  color: #000 !important;
}

.home_bottom_nav {
    height: 70px !important;
    padding: 15px !important;
    background-color: #FFF !important;
}

.drop-container {
  position: relative;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
  padding: 20px;
  border-radius: 10px;
  border: 2px dashed #555;
  color: #444;
  cursor: pointer;
  transition: background .2s ease-in-out, border .2s ease-in-out;
}

.drop-container:hover {
  background: #eee;
  border-color: #111;
}

.drop-container:hover .drop-title {
  color: #222;
}

.drop-title {
  color: #444;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  transition: color .2s ease-in-out;
}

/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
    margin-bottom: 4rem;
}

.carousel-caption>h3 {
    bottom: 3rem;
    z-index: 10;
    text-align: left;
    font-size: 190%;
}

.carousel-caption>p {
    bottom: 3rem;
    z-index: 10;
    text-align: left;
    font-size: 170%;
}

.carousel-caption>a {
    bottom: 3rem;
    padding: 10px;
    z-index: 10;
    background-color: #444;
    color: #FFF;
    font-size: 20px;
}
    

.carousel-item {
    height: 80vh;
    background-color: #777;
    position: relative;
}

.carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

.section-div {

    padding-top: 50px;
    padding-bottom: 50px;
    max-height: auto;
    min-height: auto;
    background-color: #FFF;
    font-size: 20px;
}

.bottom_spacer {
    height: 50px;
}

/* Spacer to allow scroll space */
.spacer {
    height: 100vh;
  }
  
  /* Keyframes to animate opacity, transform AND visibility */
  @keyframes slideIn {
    0% {
      opacity: 0;
      transform: translateX(-50px);
      visibility: hidden;
    }
    1% {
      visibility: visible;
    }
    100% {
      opacity: 1;
      transform: translateX(0);
      visibility: visible;
    }
  }
  
  /* Apply the scroll-linked animation */
  .slide-in {
    opacity: 0;
    transform: translateX(-50px);
    visibility: hidden;
  
    animation-name: slideIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
    
    animation-timeline: view();
    animation-range: entry 80% cover 40%;
  }
  
  