* {
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0;
  }

  .backGround {
    background-color: #101241;
  }

  /* TODO: Nav Bar CSS _ Kent */
  .navbar-brand img {
    width: 4em;
  }


  .navbar {
    background: #191C5C;
    /* background: rgba(0, 0, 0, 0.4); */
    backdrop-filter: blur(2.35589px);
  }
  

  /* TODO: Nav Bar CSS _ Kent */

  .badge {
    height: fit-content;
    background-color: #2D4059;
  }

  .fontColor {
    color: #E1B12C;
  }

  .paragraphCourse{
    text-align: justify;
  }

  .heartIcon {
    border-radius: 44.79px;
    border: 1px solid black;
    height: 45px;
    width: 50px;
    background-color: whitesmoke;
  }
  .LearnMoreBtn {
    border: 1px solid #008CF0;
    height: 45px;
    width: 140px;
    border-radius: 37px;
    background-color: #101241;
    animation: learnMoreBtnAnimation 872ms infinite linear;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 #008CF0;
    transition: ease-out 1s;
    outline: none;
    color: whitesmoke;
  }

  .LearnMoreBtn:hover {
    box-shadow: inset 300px 0 0 0 #E1B12C;
    border: 1px solid #101241;
    color: black;
  }


  @keyframes learnMoreBtnAnimation {
    to {
      font-size: 15px;
      font-weight: bolder;
      line-height: 0.2;
      letter-spacing: 2px;
    }
  }

  #learnMoreContent_1 {
    display: none;
    animation: myLearnMore 1s ease 0s 1 normal forwards;
    
  }

  @keyframes myLearnMore {
    0% {
      transform: scale(0);
      transform-origin: 50% 100%;
    }
  
    100% {
      transform: scale(1);
      transform-origin: 50% 100%;
    }
  }

  #learnMoreContent_2 {
    display: none;
    animation: myLearnMore2 1s ease 0s 1 normal forwards;
    
  }

  @keyframes myLearnMore2 {
    0% {
      transform: scale(0);
      transform-origin: 50% 100%;
    }
  
    100% {
      transform: scale(1);
      transform-origin: 50% 100%;
    }
  }

  #learnMoreContent_3 {
    display: none;
    animation: myLearnMore3 1s ease 0s 1 normal forwards;
  }

  @keyframes myLearnMore3 {
    0% {
      transform: scale(0);
      transform-origin: 50% 100%;
    }
  
    100% {
      transform: scale(1);
      transform-origin: 50% 100%;
    }
  }

  #learnMoreContent_4 {
    display: none;
    animation: myLearnMore4 1s ease 0s 1 normal forwards;
  }

  @keyframes myLearnMore4 {
    0% {
      transform: scale(0);
      transform-origin: 50% 100%;
    }
  
    100% {
      transform: scale(1);
      transform-origin: 50% 100%;
    }
  }

  #more {
    display: none;
    animation: myAnim 1s ease 0s 1 normal forwards;
  }

  @keyframes myAnim {
    0% {
      opacity: 0;
      transform: translateY(-250px);
    }
  
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

 

  .img_main{
    position: relative;
  }

  .img_course{
    width: 100%;
    display: block;
  }

  .info_overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #101241;
    /* background: rgba(0, 0, 0, 0.1); */
    color: whitesmoke;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    text-align: justify;
    /* padding-left: 30%; */
    backdrop-filter: blur(5px);
  }

  .info_overlay:hover{
    opacity: 1;
    transition: 1s;
  }

  .info_overlay > * {
    transform: translateY(100px);
    transition: transform 0.25s;
  }

  .info_overlay:hover >* {
    transform: translateY(0);
  }

  .loadMoreCourse{
    background-color: #E1B12C;
    height: 45px;
    width: 120px;
    border-radius: 10px ;
  }

  /* For JS code */
  .moreCourse {
    display: none;
  }

  .imgCarousel{
    width: 450px;
    border-radius: 10px;
  }
  
  .imgReview {
    border-radius: 50px;
  }

  .borderReview {
    border-radius: 16px;
    background-color: rgba(57, 57, 83, 0.40)
  }

  .iconPrice {
    color: #778beb;
  }

  .namePrice {
    color: #778beb;
    font-weight: bold;
  }
  

  .columnPricing {
    background-color: #101241;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 #008CF0;
    transition: ease-out 1s;
    outline: none;
  }

  .columnPricing:hover {
    transform: scale(1.2);
    z-index: 1;
    transition: 2s; 
    box-shadow: inset 0 500px 0 0 #E1B12C;
    
  }

  .footerCourse {
    background-color:#191C5C ;
  }

  


