.course_content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 100px 25px 20px 25px;
}
.course_content .course_content_upper {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.course_content .course_content_upper .content_card {
  background: #fff;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 544.5px;
  padding: 60px;
  gap: 16px;
  border-radius: 25px;
  opacity: 0px;
  box-shadow: 0px 4px 9.8px 0px rgba(0, 0, 0, 0.1882352941);
  z-index: 11;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.course_content .course_content_upper .content_card .title {
  font-family: "Montserrat";
  font-size: 64px;
  font-weight: 600;
  line-height: 78.02px;
  text-align: left;
  color: #448dc9;
}
.course_content .course_content_upper .content_card .desc {
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  color: #4f5e71;
}
.course_content .course_content_upper .content_card_img_wrapper {
  width: 80%;
  position: relative;
  z-index: 10;
}
.course_content .course_content_upper .content_card_img_wrapper img {
  width: 100%;
  height: 100%;
}
.course_content .course_content_upper .content_card_img_wrapper::before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("../images/ui_video_home_attribute.svg") no-repeat right bottom/100%;
  z-index: 11;
}
.course_content .course_content_lower {
  display: flex;
  gap: 20px;
}
.course_content .course_content_lower .left,
.course_content .course_content_lower .right {
  box-shadow: 0px 4px 9.8px 0px rgba(0, 0, 0, 0.1882352941);
  padding: 10px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc((100% - 20px) / 2);
}
.course_content .course_content_lower .left .title,
.course_content .course_content_lower .right .title {
  font-family: "Montserrat";
  font-size: 48px;
  font-weight: 500;
  text-align: left;
  color: #448dc9;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 120px;
}
.course_content .course_content_lower .left img,
.course_content .course_content_lower .right img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
.course_content .course_content_lower .left .desc,
.course_content .course_content_lower .right .desc {
  font-family: "Montserrat";
  font-size: 15.42px;
  font-weight: 400;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 75px;
}
.course_content .course_content_lower .left .button_ctr,
.course_content .course_content_lower .right .button_ctr {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.course_content .course_content_lower .left .button_ctr a,
.course_content .course_content_lower .right .button_ctr a {
  width: 100%;
  padding: 6.61px 18.72px;
  gap: 0px;
  border-radius: 15px;
  opacity: 0px;
  text-decoration: none;
  border: none;
  background: #448dc9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.course_content .course_content_lower .left .button_ctr a p,
.course_content .course_content_lower .right .button_ctr a p {
  font-family: "Montserrat";
  font-size: 15.42px;
  font-weight: 700;
  line-height: 17.62px;
  letter-spacing: -0.006em;
  color: #ffffff;
}

@media (max-width: 1023px) {
  .course_content .course_content_upper .content_card {
    padding: 40px;
  }
  .course_content .course_content_upper .content_card .title {
    font-size: 40px;
    line-height: normal;
  }
  .course_content .course_content_upper .content_card .desc {
    font-size: 13px;
    line-height: normal;
  }
  .course_content .course_content_lower .left .title,
  .course_content .course_content_lower .right .title {
    font-size: 32px;
    line-height: normal;
    height: 75px;
  }
  .course_content .course_content_lower .left .desc,
  .course_content .course_content_lower .right .desc {
    font-size: 14px;
    line-height: normal;
    height: 68px;
  }
  .course_content .course_content_lower .left .button_ctr button p,
  .course_content .course_content_lower .right .button_ctr button p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .course_content .course_content_upper .content_card {
    padding: 20px;
    width: 80%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .course_content .course_content_upper .content_card .title {
    font-size: 26px;
  }
  .course_content .course_content_upper .content_card .desc {
    font-size: 9px;
    height: 65px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .course_content .course_content_upper .content_card_img_wrapper {
    width: 100%;
  }
  .course_content .course_content_lower {
    flex-direction: column;
  }
  .course_content .course_content_lower .left,
  .course_content .course_content_lower .right {
    width: 100%;
  }
}/*# sourceMappingURL=course.css.map */