body {
  background: url("../img/bg/headbg.png") right top/60% no-repeat, url("../img/bg/footbg.png") left bottom/50% no-repeat;
}

.sc_courses .switch_wrap {
  text-align: center;
  padding-bottom: 20px;
}

.sc_courses .switch_tabs {
  max-width: 50em;
}

.sc_courses .switch_tabs .tab img {
  max-width: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: -webkit-filter 500ms;
  transition: -webkit-filter 500ms;
  transition: filter 500ms;
  transition: filter 500ms, -webkit-filter 500ms;
}

.sc_courses .switch_tabs .tab:hover img {
  -webkit-filter: grayscale(30%);
  filter: grayscale(30%);
}

.sc_courses .switch_tabs .tab.is_active img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.courses__intro {
  margin: 0 100px 30px 100px;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.courses__intro-box1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.courses__intro-box2 {
  width: 50%;
}

.course_unit {
  max-width: 320px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 320px;
  flex: 0 0 320px;
  position: relative;
}

.award_pic {
  text-align: center;
  padding: 0 30px;
}

.award_pic img {
  max-width: 100%;
}

.award_pic .tit {
  margin-top: 12px;
  font-weight: 700;
  font-size: 1.25em;
}

.progress_bar {
  margin: 15px auto;
  padding: 6px;
  border-radius: 30px;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.progress_bar .bar_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: -webkit-gradient(linear, left top, right top, from(#ffb6c0), to(#ffd862));
  background: linear-gradient(90deg, #ffb6c0, #ffd862);
  border-radius: 30px;
  overflow: hidden;
}

.progress_bar .bar {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  padding: 10px;
  border-right: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.8);
}

.progress_bar .bar:last-child {
  border-right-width: 0;
}

.progress_bar .bar.checked {
  background-color: rgba(255, 255, 255, 0);
}

.test_box {
  text-align: center;
}

.test_box .bttn {
  display: inline-block;
  margin: 0 auto;
  font-size: 1em;
}

.course_wording {
  max-width: 800px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 30px;
  margin: 30px auto;
  font-size: 1em;
}

.course_wording p:last-child {
  margin-bottom: 0;
}

.courses_cnt .items {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.course_item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.3334%;
  flex: 0 0 33.3334%;
  margin-bottom: 25px;
  padding: 0 10px;
  display: flex;
}

.course_item.is_unopen .main {
  -webkit-box-shadow: 0 0;
  box-shadow: 0 0;
  border: 1px solid #eee;
  background-color: #f2f2f2;

}

.course_item.is_unopen .cnt_box .intro a.more {
  background: -webkit-gradient(linear, left top, right top, from(rgba(242, 242, 242, 0)), color-stop(2em, #f2f2f2));
  background: linear-gradient(90deg, rgba(242, 242, 242, 0), #f2f2f2 2em);
}

.course_item .main {
  border-radius: 1em;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
  color: #404040;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: stretch;
}

.course_item .img_box {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

.course_item .img_box .responsive {
  padding-top: 56.25%;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.course_item .img_box img {
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}

.course_item a:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.course_item .cnt_box {
  min-height: 108px;
  padding: 1em;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 1;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}

.course_item .cnt_box .subt {
  font-size: .875em;
  color: #0a59cf;
}

.course_item .cnt_box .title {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  font-size: 1.25em;
  font-weight: 700;
  color: #038b9a;
}

.course_item .cnt_box .intro {
  position: relative;
  margin-top: .5em;
  line-height: 1.5;
  max-height: 4.5em;
  overflow: hidden;
  font-size: .875em;
  text-align: justify;
}

.course_item .cnt_box .intro.un_collapse {
  max-height: 12em;
}

.course_item .cnt_box .intro a.more {
  position: absolute;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(1.5em, white));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), white 1.5em);
  padding-left: 2em;
  color: #6790cc;
  text-decoration: underline;
  cursor: pointer;
}

.course_item .cnt_box .intro a.more:hover {
  color: #038b9a;
}

.course_item .cnt_box .spend {
  display: inline-block;
  font-size: .75em;
  margin-top: .75em;
  margin-bottom: 1em;
  padding: .4em .8em;
  line-height: 1;
  color: #6790cc;
  border: 1px solid currentColor;
}

.course_item .link_box {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 0 1em 1em;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: flex-start;
}

.course_item .link_box .bttn {
  margin: 0;
  border-radius: 10px;
  font-size: 1em;
}

.course_item .link_circle {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 3em;
  flex: 0 0 3em;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.course_item .link_circle::after {
  content: '';
  position: absolute;
  right: 0;
  top: calc(50% - 1.5em);
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background: #fff url("../img/ui/arrow_right.svg") center/1.5em no-repeat;
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 500ms, -webkit-box-shadow 500ms;
  transition: -webkit-transform 500ms, -webkit-box-shadow 500ms;
  transition: transform 500ms, box-shadow 500ms;
  transition: transform 500ms, box-shadow 500ms, -webkit-transform 500ms, -webkit-box-shadow 500ms;
}

.course_item .link_circle:hover::after {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2);
}

.aside_cnt {
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 30px;
}

.aside_cnt .aside_tit {
  text-align: center;
  font-size: 1.5em;
  color: #038b9a;
}

.aside_cnt .items {
  margin-top: 15px;
  padding: 0 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.aside_cnt .bonus_item {
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(33.333% - 13px);
  flex: 0 0 calc(33.333% - 13px);
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 10px;
}

.aside_cnt .bonus_item .tit {
  font-weight: 700;
  color: #038b9a;
}

.aside_cnt .bonus_item .text {
  margin-top: .5em;
  font-size: .875em;
  line-height: 1.3;
}

@media screen and (max-width: 576px) {
  body {
    background: url("../img/bg/headbg.png") right 70px/60% no-repeat, url("../img/bg/footbg.png") left bottom/50% no-repeat;
  }

  .courses__intro {
    margin: 0 0 30px 0;
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .courses__intro-box1 {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .courses__intro-box2 {
    width: 100%;
  }

  .courses__intro .course_unit {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 0px;
    flex: 0 0 0;
  }

  .courses__intro .course_wording {
    margin-top: 15px;
    padding: 0 1em;
  }

  .course_item .main {
    display: block;
  }

  .course_item .cnt_box .spend {
    margin-bottom: 0;
  }

  .aside_cnt .bonus_item {
    margin-bottom: 1em;
  }
}

/*# sourceMappingURL=courses_en.css.map */