
/*------------------------------------------------------------------------
# mod_mx_course Extension
# ------------------------------------------------------------------------
# author    mixwebtemplates
# copyright Copyright (C) 2019 mixwebtemplates.com. All Rights Reserved.
# @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
# Websites: http://www.mixwebtemplates.com
-------------------------------------------------------------------------*/

.la-member{
  position: relative;
}

.course-thumb {
    position: relative;
    overflow: hidden;
}

.course-thumb img {
    transition: all 2s ease;
    background-size: cover;
    width: 100%;
}

.course-thumb img:nth-child(1) {
    transform: translatex(50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.course-thumb img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
}

.course-single-box:hover .course-thumb img:nth-child(1) {
    transform: translatex(0) scalex(1);
    opacity: 1;
    filter: blur(0);
}

.course-single-box:hover .course-thumb img:nth-child(2) {
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.course-icon {
    position: absolute;
    top: 20px;
    right: 20px;
}

.course-icon a {
    color: #FFFFFF;
    background: rgba(23, 22, 47, 0.65);
    padding: 3px 10px
}

.course-rating {
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(23, 22, 47, 0.65);
    width: 100%;
    height: 64px;
    padding: 0 20px 0;
    z-index: 1;
}

.course-rating::before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    background: var(--thm15-black);
    left: 0;
    top: 0;
    z-index: -1;
    transition: 0.5s;
}

.course-single-box:hover .course-rating::before {
    width: 100%;
}

.course-admin {
    display: flex;
    align-items: center;
}

.course-shape {
    margin-right: 10px;
    width: 45px;
}

.course-shape-title h4 {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
}
.course-shape-title {
    display: flex;
}
.course-shape-title small {
    color: #FFF;
    margin-left: 7px
}
.course-shape-title small a{
    color: #FFF;
}

.course-star span {
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
}

.course-content {
    background: #FFF;
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.10);
    padding: 18px 22px 15px;
}

.course-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 27px;
}

.course-meta span {
    color: #747474;
    font-size: 16px;
    font-weight: 400;
}

.course-meta i {
    color: var(--thm15-base);
    font-size: 17px;
    margin-right: 5px;
}

.course-title {
    border-bottom: 1px solid #E9E9E9;
    padding: 0px 0 30px;
    margin-bottom: 14px;
}

.course-title h4 a {
    color: #002935;
    font-size: 22px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.5s;
}

.course-single-box:hover .course-title h4 a {
    color: var(--thm15-base);
}

.course-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.course-price span {
    color: #002935;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.course-cart a {
    display: inline-block;
    text-decoration: none;
    color: var(--thm15-base);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.course-cart a i {
    color: var(--thm15-base);
    font-size: 18px;
    margin-right: 5px;
}


 
:root {
  --thm15-base: #525FE1;
  --thm15-black: #231F40;
 }

