

/* The card */
.coursecard {
  position: relative;
  height: 444px;
      top: -8px;
  width: 1083px;
  margin: 152px auto;
  background-color: #FFF;
  -webkit-box-shadow: 5px 5px 46px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 5px 5px 46px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 5px 5px 46px 0px rgba(0, 0, 0, 0.75);
}

/* Image on the left side */
.coursecard .thumbnail {
  float: left;
  position: relative;
  left: 30px;
  top: -30px;
  height: 331px;
  width: 536px;
  -webkit-box-shadow: 10px 10px 60px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 60px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 10px 10px 60px 0px rgba(0, 0, 0, 0.75);
  overflow: hidden;
}

/*object-fit: cover; */
/*object-position: center; */
.coursecard img.left {
  position: absolute;
  left: 50%;
  top: 50%;
  height: auto;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* Right side of the card */
.coursecard .right {
     margin-left: 602px;
    margin-right: 50px;
    position: relative;
    top: 23px;
}

.coursecard h1 {
  padding-top: 15px;
  font-size: 1.3rem;
  color: #4B4B4B;
}

.coursecard .author {
  background-color: #9ECAFF;
  height: 30px;
  width: 110px;
  border-radius: 20px;
}

.coursecard .author > img {
  padding-top: 5px;
  margin-left: 10px;
  float: left;
  height: 20px;
  width: 20px;
  border-radius: 50%;
}



.coursecard .separator {
  margin-top: 10px;
  border: 1px solid #C3C3C3;
}

.coursecard p {
  text-align: justify;
    font-size: 1.3rem;
    line-height: 150%;
    color: #4B4B4B;
    padding: 20px;
    position: relative;
    top: -55px;
}

/* DATE of release */
.coursecard h5 {
  position: absolute;
  left: 30px;
  bottom: 47px;
  font-size: 5rem;
  color: #666;
}

.coursecard h6 {
  position: absolute;
  left: 30px;
  bottom: 15px;
  font-size: 2rem;
  color: #a1a09e;
}

/* Those futur buttons */
.coursecard ul {
  margin-left: 250px;
}

.coursecard li {
  display: inline;
  list-style: none;
  padding-right: 40px;
  color: #7B7B7B;
}

/* Floating action button */
.coursecard .fab {
  position: absolute;
    right: 50px;
    bottom: -40px;
    box-sizing: border-box;
    padding-top: 19px;
    background-color: #3f51b5;
    width: 203px;
    height: 64px;
    FONT-WEIGHT: 400;
    LETTER-SPACING: 1PX;
    color: white;
    text-align: center;
    border-radius: 25PX;
  -webkit-box-shadow: 4px 3px 70px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 4px 3px 70px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 4px 3px 70px 0px rgba(0, 0, 0, 0.75);
}

a.fab:hover {
    border: 2px solid white!important;
}