.search {
  padding-top: 4.8rem;
  padding-bottom: 5.7rem;
  margin-bottom: 0.1rem;
  border-radius: 4rem;
  color: #292e38;
  font-size: 1.8rem;
  line-height: 150%;
  background-color: #fff;
}
.search-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
}
.search-form {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .search-form {
    width: auto;
    flex-grow: 1;
  }
}
.search-form-input {
  width: 100%;
  padding: 1.8rem 11rem 1.5rem 2.5rem;
  border-radius: 4rem;
  border: none;
  background-color: #eff3f7;
}
.search-form-input:focus {
  outline: 0.2rem solid #d24c27;
}
.search-form-submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 10.2rem;
  height: 6rem;
  background: #d24c27 url("../img/search.svg") no-repeat center;
}
.search-form-submit:hover {
  background-color: #2866e1;
}

.filter-toggle {
  padding: 1.6rem 6.8rem 1.6rem 3.8rem;
  background: #2866e1 url("../courses/img/filter.svg") no-repeat top 50% right 3.8rem;
}
@media screen and (min-width: 768px) {
  .filter-toggle {
    order: -1;
  }
}
.filter-form {
  margin-top: 4.1rem;
}
.filter-form .button {
  background-color: #d24c27;
}
.filter-form .button:hover {
  background-color: #2866e1;
}
.filter-form .link-more {
  background-color: transparent;
  border: none;
  padding-left: 0;
  padding-right: 0;
}
.filter-form .link-more:hover {
  color: #2866e1;
}
.filter-group-item {
  background-color: #eff3f7;
  overflow: hidden;
}
.filter-group-item:not(:last-child) {
  margin-bottom: 0.4rem;
}
.filter-group-item:first-child {
  border-radius: 4rem 4rem 0 0;
}
.filter-group-item:last-child {
  border-radius: 0 0 4rem 4rem;
}
.filter-label {
  padding: 1.6rem 0;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .filter-label {
    width: 50%;
  }
}
.filter-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 4rem;
  color: #72757b;
}

.results {
  padding-top: 6rem;
  padding-bottom: 6rem;
  border-radius: 6rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
  background-color: #fff;
  color: #72757b;
}
@media screen and (min-width: 576px) {
  .results {
    padding-top: 8.8rem;
    padding-bottom: 9.8rem;
  }
}

.promo-list {
  list-style: none;
  padding-top: 3.3rem;
  padding-left: 0;
  margin-bottom: 5rem;
  row-gap: 5rem;
}
.promo-list li:nth-child(1) .promo-item::before {
  background: rgba(40, 102, 225, 0.8);
}
.promo-list li:nth-child(2) .promo-item::before {
  background: rgba(70, 0, 185, 0.8);
}
.promo-list li:nth-child(3) .promo-item::before {
  background: rgba(210, 76, 39, 0.8);
}
.promo-item {
  position: relative;
  display: flex;
  width: 100%;
  border-radius: 4rem;
}
.promo-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4rem;
}
.promo-item::after {
  content: attr(data-type);
  position: absolute;
  left: 4.7rem;
  bottom: 100%;
  padding: 0.7rem 2rem;
  border-radius: 2rem 2rem 0rem 0rem;
  border: 1px solid #d24c27;
  border-bottom: none;
  background-color: #fff0e4;
  font-size: 1.4rem;
  line-height: 120%;
  text-align: center;
  color: #d24c27;
}
.promo-item:hover::before {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.promo-wrapper {
  position: relative;
  width: 100%;
  padding: 3rem 4rem 4rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.promo-wrapper::before {
  content: "";
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 2rem;
  height: 2rem;
  background-color: #fff;
  border-radius: 50%;
}
.promo-wrapper a {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 150%;
  color: #fff;
  text-decoration: none;
}
.promo-wrapper a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sort {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.3rem;
}
.sort-text {
  font-weight: 500;
}
.sort-list {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.sort-item a {
  text-decoration: none;
  transition: color 0.25s linear;
}
.sort-item a:hover {
  color: #d24c27;
}

.courses-item {
  position: relative;
  padding: 3rem 0.5rem;
  border-radius: 4rem;
  background-color: #eff3f7;
  margin-bottom: 2rem;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (min-width: 414px) {
  .courses-item {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.courses-item:hover {
  outline: 0.4rem solid #2866e1;
}
.courses-item .link-more {
  color: #2866e1;
}
.courses-item .link-more svg path {
  stroke: #2866e1;
}
.courses-item .link-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.courses-item .link-more:hover {
  color: #d24c27;
}
.courses-item .link-more:hover svg path {
  stroke: #d24c27;
}
.courses-item h3 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 150%;
  color: #292e38;
}
.courses-item-description {
  margin-bottom: 2rem;
}
.courses-item-description p {
  margin-bottom: 1rem;
}
.courses-item-price {
  margin-bottom: 0;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 150%;
  color: #2866e1;
}
.courses-meta-list {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-bottom: 2.4rem;
  font-size: 1.4rem;
  line-height: 120%;
}
.courses-meta-item {
  border-radius: 5rem;
  padding: 0.7rem;
  color: #fff;
}
.courses-meta-item.special {
  background-color: #9c2baf;
}
.courses-meta-item.basic {
  background-color: #2866e1;
}
.courses-meta-item.advanced {
  background-color: #292e38;
}
.courses-meta-item.date {
  color: #d24c27;
  background-color: #fff0e4;
}
.courses-meta-item.duration {
  color: #6437c5;
  background-color: #ede4ff;
}
.courses-meta-item.code {
  color: #9c2baf;
  background-color: #fce9ff;
}
.courses-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-bottom: 2.1rem;
  font-size: 1.4rem;
  line-height: 120%;
}
@media screen and (min-width: 768px) {
  .courses-tags-list {
    margin-bottom: 0;
  }
}
.courses-tags-item span {
  position: relative;
  display: block;
  padding: 0.7rem;
  border-radius: 5rem;
  color: #2866e1;
  background-color: #e8effd;
  /* text-decoration: none;
  z-index: 2;
  transition: background-color 0.25s linear;*/
}
/*.courses-tags-item a:hover {
  background-color: #d1dffb;
}*/
.courses-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.results .pagination {
  margin-top: 5.5rem;
}

.selectCustom.isActive .selectCustom-trigger {
  outline: none;
}

.selectWrapper {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .selectWrapper {
    width: 50%;
    border-left: 0.2rem solid #e0e7ed;
  }
}

.selectCustom-trigger {
  position: relative;
  padding: 1.6rem 0rem;
  cursor: pointer;
  color: #2866e1;
}
@media screen and (min-width: 576px) {
  .selectCustom-trigger {
    padding: 1.6rem 2.9rem;
  }
}

.selectCustom-trigger::after {
  content: "";
  position: absolute;
  top: 0.9rem;
  right: 0;
  width: 4.2rem;
  height: 4.2rem;
  background: url("../img/arrow-down.svg") no-repeat center;
}

.selectCustom.isActive .selectCustom-trigger::after {
  transform: rotate(180deg);
}

.selectCustom-options {
  width: 100%;
  display: none;
}

.selectCustom.isActive .selectCustom-options {
  display: block;
}

.selectCustom-option {
  position: relative;
  padding: 0.5rem 1.5rem;
  margin-left: -1.5rem;
}
@media screen and (min-width: 576px) {
  .selectCustom-option {
    padding-left: 2.9rem;
    margin-left: 0;
  }
}

.selectCustom-option.isHover::before,
.selectCustom-option:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: #e0e7ed;
  cursor: pointer;
}

.selectCustom-option.isActive::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: #e0e7ed;
  cursor: pointer;
}

.courses-page-tags {
  padding-left: 0;
  gap: 1.6rem;
  margin-bottom: 2.8rem;
}
.courses-page-tags .courses-tags-item a {
  background: rgba(232, 239, 253, 0.2);
  color: #fff;
}
.courses-page-tags .courses-tags-item.popular {
  padding: 0.7rem 2rem;
  color: #d24c27;
  border-radius: 2rem;
  border: 1px solid #d24c27;
  background-color: #fff0e4;
}
.courses-page-meta {
  padding-top: 3rem;
  margin-bottom: 3rem;
  border-top: 1px solid #fff;
}
.courses-page-meta-list {
  row-gap: 3rem;
}
.courses-page-meta dt {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}
.courses-page-meta .meta-table {
  display: flex;
  flex-wrap: wrap;
  row-gap: 2rem;
  padding-left: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .courses-page-meta .meta-table {
    display: table;
  }
}
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .courses-page-meta .meta-table {
    font-size: 1.6rem;
  }
}
.courses-page-meta .meta-table-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .courses-page-meta .meta-table-row {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .courses-page-meta .meta-table-row {
    display: table-row;
    border-bottom: none;
  }
}
.courses-page-meta .meta-table-cell {
  padding: 1rem 0;
}
.courses-page-meta .meta-table-cell:empty {
  padding: 0;
}
.courses-page-meta .meta-table-cell:last-child {
  margin-top: auto;
}
@media screen and (min-width: 768px) {
  .courses-page-meta .meta-table-cell {
    display: table-cell;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1rem 1.5rem;
  }
  .courses-page-meta .meta-table-cell:first-child {
    padding-left: 0;
  }
  .courses-page-meta .meta-table-cell:last-child {
    padding-right: 0;
  }
}
@media screen and (min-width: 992px) {
  .courses-page-meta .meta-table-cell {
    padding: 1rem 2.5rem;
  }
  .courses-page-meta .meta-table-cell:first-child {
    padding-left: 0;
  }
  .courses-page-meta .meta-table-cell:last-child {
    padding-right: 0;
  }
}
.courses-page-meta .meta-table-old-price {
  color: rgba(255, 255, 255, 0.5);
}
.courses-page-meta .meta-table-sale {
  margin-left: 3rem;
  font-size: 1.4rem;
  line-height: 120%;
  border-radius: 5rem;
  background: linear-gradient(135deg, #cf4b2d 26.88%, #ffe500 99.09%);
  padding: 0.7rem 2rem;
}
.courses-page-meta .button {
  background-color: #292e38;
}
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .courses-page-meta .button {
    font-size: 1.6rem;
  }
}
.courses-page-meta .button:hover {
  background-color: #d24c27;
}
.courses-page-programm .programm-list-item {
  padding-left: 3rem;
  padding-right: 3rem;
  font-size: 1.4rem;
  line-height: 120%;
  color: #bcbfc6;
}
.courses-page-programm .programm-list-item:not(.empty):hover {
  outline: 0.4rem solid #2866e1;
}
.courses-page-programm h3 {
  position: relative;
  min-height: 4rem;
  padding-left: 4rem;
  padding-right: 3.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 150%;
  color: #fff;
}
.courses-page-programm .programm-list-item:not(.empty) h3 {
	cursor: pointer;
}
@media screen and (min-width: 576px) {
  .courses-page-programm h3 {
    padding-left: 6.3rem;
    padding-right: 5rem;
  }
}
.courses-page-programm .programm-list-item:not(.empty) h3::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4.2rem;
  height: 4.2rem;
  background: url("../img/arrow-down.svg") no-repeat center;
  transform: rotate(180deg);
}
.courses-page-programm .programm-list-item:not(.empty) h3.collapsed::before {
  transform: rotate(0deg);
}
.courses-page-programm .programm-list-item:not(.empty) .programm-list-collapse {
  margin-top: 2.2rem;
}
.courses-page-programm .list-check li:not(:last-child) {
	margin-bottom: 1rem;
}

.links-list {
  list-style: none;
  padding-left: 0;
}
.links-list li {
  margin-bottom: 1rem;
}
.links-list a {
  text-decoration: none;
  transition: color 0.25s linear;
}
.links-list a:hover {
  color: #d24c27;
}

.more-read {
  padding-top: 6rem;
  padding-bottom: 6rem;
  border-radius: 6rem;
  background-color: #fff;
  color: #292e38;
}
.more-read .heading-2 {
  margin-bottom: 3rem;
  color: #292e38;
  font-size: 4rem;
  font-weight: 600;
  line-height: 100%;
}
.more-read .links-list {
  margin-bottom: 6rem;
}
.more-read .links-list a {
  color: #2866e1;
}
.more-read .links-list a:hover {
  color: #d24c27;
}

.reviews {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.reviews .heading-2 {
  margin-bottom: 0;
}
.reviews .success-stories-slider {
  margin-top: 5rem;
}
.reviews .success-stories__slider-item {
  padding-top: 0;
  padding-bottom: 0;
}
.reviews .slick-arrow {
  stroke: #fff;
}
.reviews .slick-arrow.slick-disabled {
  stroke: rgba(255, 255, 255, 0.5);
  cursor: auto;
}
.reviews .description {
  color: #72757b;
  font-size: 1.6rem;
  line-height: 150%;
}
.reviews .description p {
  margin-bottom: 1rem;
}
.reviews .rating {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.reviews .rating-star {
  width: 2rem;
  height: 2rem;
  background: url("../img/star.svg") no-repeat center;
}/*# sourceMappingURL=courses.css.map */