/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

div.row_course {
    padding:8px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
div.row_course > h1 {
    margin-top:64px;
    text-align: center;
}
div.row_courses {
    margin:64px 0;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap:32px 16px;
}
div.row_courses > div.row_courses_block {
    cursor: pointer;
    position: relative;
    width:100%;
    height: 250px;
    background-color: #eee;
    border-radius: 16px;
}
div.row_courses_block_flex {
    position: absolute;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin:16px;
    padding:4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100%;
}
.small {
    margin-top:4px;
    font-size:12px;
}
div.row_courses_block_info {
    margin-left:12px;
}
div.row_courses_block_image {
    width:48px;
    height:48px;
    border-radius: 100%;
}
div.row_courses_block_image > img {
    width: 48px;
    height: 48px;
    border-radius: 100%;
}
div.row_courses_block_background {
    position: absolute;
    width:100%;
    height:100%;
    overflow: hidden;
}
div.row_courses_block_background:before {
    position: absolute;
    top: 0;
    left: -500px;
    content: "";
    width: 120px;
    height: 500px;
    background: rgba(255, 255, 255, 0.6);
    -webkit-transform: skew(-50deg);
        -ms-transform: skew(-50deg);
            transform: skew(-50deg);
    /* transition: 1s; */
    -webkit-animation: shine 3s ease infinite;
            animation: shine 3s ease infinite;
  }
  @-webkit-keyframes shine {
    from {left: -500px;}
    to {left: 655px;}
  }
  @keyframes shine {
    from {left: -500px;}
    to {left: 655px;}
  }
div.row_courses_block_background > img {
    width:100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 16px;
}
div.row_courses_block_main {
    padding-left:16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin:16px;
    bottom:0;
    position: absolute;
    width:90%;
    height:80px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
}
.nav {
    color:var(--brand-color);
}
.pink {
    color:hsl(1, 49%, 40%);
}
p.more {
    font-weight: 500;
    font-size:14px;
    margin-top:8px;
}
p.more:hover {
    color:hsl(1, 49%, 40%);
    text-decoration: underline;
}