/* stylelint-disable */
section:not(:nth-of-type(1)):not(:nth-of-type(2)) {
  margin-block-start: 100px;
}
@media only screen and (max-width: 768px) {
  section:not(:nth-of-type(1)):not(:nth-of-type(2)) {
    margin-block-start: 60px;
  }
}

.title {
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 48px;
  line-height: 112%;
  letter-spacing: -1.92px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .title {
    margin-bottom: 24px;
    font-size: 24px;
    letter-spacing: -0.96px;
    text-align: left;
  }
}

.catalog {
  width: 100%;
}
@media only screen and (max-width: 576px) {
  .catalog {
    margin: 0;
  }
}
.catalog .filter-list {
  margin-bottom: 0;
}
.catalog__title {
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .catalog__title {
    margin-bottom: 8px;
  }
}
.catalog__container {
  display: flex;
  margin-bottom: 24px;
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .catalog__container {
    flex-direction: column;
  }
}
.catalog__filter {
  flex-shrink: 0;
  width: 100%;
  max-width: 290px;
}
@media only screen and (max-width: 1230px) {
  .catalog__filter {
    display: none;
  }
}
.catalog__filter:has(.filter-list.open) {
  display: block;
}
.catalog__filter:has(.filter-list.open) .filter-overlay {
  opacity: 1;
  pointer-events: all;
}
.catalog__subtitle {
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .catalog__subtitle {
    margin-bottom: 16px;
    font-size: 14px;
    text-align: left;
  }
}
.catalog__result {
  min-height: 350px;
}
.catalog__result.loading {
  position: relative;
  opacity: 0.7;
  pointer-events: none;
}
.catalog__result.loading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  margin-top: -30px;
  margin-left: -30px;
  width: 60px;
  height: 60px;
  border: 4px solid #ff8f07;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.catalog__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 16px;
}
@media only screen and (max-width: 1230px) {
  .catalog__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 992px) {
  .catalog__items {
    grid-template-columns: 1fr;
  }
}
.catalog__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.catalog__head {
  margin-bottom: 24px;
}
.catalog__total {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  color: #181818;
}
.catalog__total strong {
  font-weight: 500;
}
.catalog__pagination {
  margin-top: 24px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.catalog-search {
  position: relative;
  margin-bottom: 12px;
}
.catalog-search__wrapper {
  display: flex;
}
.catalog-search__input {
  box-sizing: border-box;
  padding: 0 48px 0 16px;
  min-height: 48px;
  border: 1px solid #d6d6d6;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  color: #1f1f1f;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMC43NSAzLjVhNy4yNSA3LjI1IDAgMSAwIDQuNDUgMTIuOTc0bDQuMjY0IDQuMjYyYS45LjkgMCAxIDAgMS4yNzItMS4yNzJMMTYuNDc0IDE1LjJBNy4yNSA3LjI1IDAgMCAwIDEwLjc1IDMuNXptMCAxLjhhNS40NSA1LjQ1IDAgMSAwIDAgMTAuOSA1LjQ1IDUuNDUgMCAwIDAgMC0xMC45eiIgZmlsbD0iI0ZGOEYwNyIvPjwvc3ZnPg==");
  background-position: right 16px center;
  background-repeat: no-repeat;
}
.catalog-search__input:focus {
  outline: none;
}
.catalog-search__input::placeholder {
  color: #8a8f88;
}
.catalog-search__input.active {
  border-color: #ff8f07;
}
.catalog-search__buttons {
  position: absolute;
  right: 16px;
  top: 50%;
  display: flex;
  align-items: center;
  transform: translateY(-50%);
  gap: 8px;
}
.catalog-search__buttons .btn {
  background-color: #ff8f07;
}
.catalog-search__buttons .btn:hover {
  box-shadow: 0 3px 9px rgba(255, 143, 7, 0.5), inset 0 -2px 1px rgba(0, 0, 0, 0.28);
}
.catalog-search__clear-button {
  margin: 0;
  padding: 0;
  border: 0;
  background-color: #fff;
}
.catalog-search__clear-button img {
  display: block;
}
.catalog-search__result {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 99;
  padding: 20px 10px;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.6);
  background-color: #fff;
}

.catalog-empty {
  padding: 24px 0;
}
.catalog-empty__img {
  margin-bottom: 16px;
}
.catalog-empty__img img {
  display: block;
  margin: 0 auto;
}
.catalog-empty__title {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  text-align: center;
  color: #1f1f1f;
}
.catalog-empty__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: -0.28px;
  text-align: center;
  color: #1f1f1f;
}
.catalog-empty__text mark {
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: -0.28px;
  color: #ff8f07;
}
.catalog-empty__text mark:hover {
  text-decoration: underline;
  cursor: pointer;
}

.pager {
  all: unset;
}
.pager ul {
  display: flex;
  gap: 8px;
}
.pager li {
  all: unset;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  text-align: center;
  color: #1f1f1f;
}
.pager li a {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
@media only screen and (max-width: 576px) {
  .pager li a {
    width: 30px;
  }
}
.pager li a:hover {
  color: #ff8f07;
  cursor: pointer;
}
.pager li.selected {
  border: 1px solid #ff8f07;
  border-radius: 5px;
  background-color: transparent;
}
.pager li.selected:hover {
  background-color: #ff8f07;
}
.pager li.selected:hover a {
  color: #fff;
}
.pager li.selected a {
  color: #ff8f07;
}
.pager li.next, .pager li.last, .pager li.previous, .pager li.first {
  border: 1px solid #8a8f88;
  border-radius: 6px;
  color: #8a8f88;
}
.pager li.next:hover, .pager li.last:hover, .pager li.previous:hover, .pager li.first:hover {
  background-color: #fff;
}
.pager li.next:hover a, .pager li.last:hover a, .pager li.previous:hover a, .pager li.first:hover a {
  color: #000;
}
@media only screen and (max-width: 576px) {
  .pager li.next a, .pager li.last a, .pager li.previous a, .pager li.first a {
    width: 40px;
  }
}

.hero {
  margin-bottom: 80px;
  max-width: 1840px;
  border-radius: 40px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.6) 1px, transparent 2px), radial-gradient(75.79% 75.79% at 50% 24.21%, #fffbf6 45%, #ffd197 100%);
  background-size: 20px 20px, 100% 100%;
  background-color: #fff;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .hero {
    margin-bottom: 60px;
    border-radius: 32px;
    margin-block-start: 20px;
  }
}
.hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 10px 51px;
  background-image: url("../../../images/pages/kursy-org-main/hero/top-1-_RDs-Jc.svg"), url("../../../images/pages/kursy-org-main/hero/top-2-03Ju2Oo.svg");
  background-position: 30px 37px, calc(100% - 105px) 35px;
  background-size: 128px 128px, 90px 90px;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
  .hero__container {
    padding: 16px;
    padding-top: 24px;
    background-image: none;
  }
}
.hero__mark {
  display: block;
  margin-bottom: 32px;
  padding: 10px 20px;
  padding-left: 50px;
  width: fit-content;
  border-radius: 8px;
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.1);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.28px;
  text-align: center;
  text-transform: uppercase;
  color: #ff8f07;
  background-image: url("../../../images/pages/kursy-org-main/hero/stars-U9195mf.svg");
  background-position-x: 11px;
  background-repeat: no-repeat;
  background-color: #fff5e9;
}
@media only screen and (max-width: 768px) {
  .hero__mark {
    padding: 10px 16px;
    padding-left: 49px;
  }
}
.hero__title {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 88px;
  line-height: 112%;
  letter-spacing: -3.52px;
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .hero__title {
    font-size: 32px;
    letter-spacing: -1.28px;
  }
}
.hero__subtitle {
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.8px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .hero__subtitle {
    margin-bottom: 24px;
    font-size: 18px;
  }
}
@media only screen and (max-width: 576px) {
  .hero__subtitle {
    width: 100%;
  }
}
.hero__btn {
  margin-bottom: 80px;
  min-height: 60px;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -0.4px;
  padding-inline: 32px;
}
@media only screen and (max-width: 768px) {
  .hero__btn {
    margin-bottom: 40px;
    min-height: 50px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 576px) {
  .hero__btn {
    width: 100%;
  }
}
.hero__btn.a-load-button {
  background-color: #ff8f07 !important;
}
.hero__items {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 32px 40px;
  width: 100%;
  border-radius: 24px;
  background-color: #fff;
  gap: 33px;
}
@media only screen and (max-width: 768px) {
  .hero__items {
    border-radius: 16px;
  }
  .hero__items::after, .hero__items::before {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .hero__items {
    display: grid;
    grid-gap: 24px 16px;
    grid-template-columns: 1fr 1fr;
    padding: 20px 16px;
  }
}
.hero__items::before {
  content: "";
  position: absolute;
  right: 30px;
  top: -201px;
  width: 192px;
  height: 208px;
  background-image: url("../../../images/pages/kursy-org-main/hero/top-4-zjm653u.svg");
}
.hero__items::after {
  content: "";
  position: absolute;
  left: 221px;
  top: -90px;
  width: 85px;
  height: 85px;
  background-image: url("../../../images/pages/kursy-org-main/hero/top-3-2xRTD3H.svg");
}
.hero__item {
  position: relative;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.4px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .hero__item {
    font-size: 16px;
  }
}
.hero__item::before {
  content: "";
  position: absolute;
  right: -17px;
  top: 50%;
  width: 1px;
  height: 49px;
  border-radius: 10px;
  background-color: #d6d6d6;
  transform: translateY(-50%);
}
@media only screen and (max-width: 992px) {
  .hero__item::before {
    height: 40px;
  }
}
.hero__item:last-of-type::before {
  display: none;
}
.hero__item span {
  display: block;
  margin-bottom: 8px;
  width: 100%;
  font-weight: 400;
  font-size: 48px;
  line-height: 112%;
  letter-spacing: -1.92px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .hero__item span {
    margin-bottom: 4px;
    font-size: 24px;
  }
}

.statistic__container {
  display: flex;
  flex-direction: column;
  color: #1f1f1f;
}
.statistic__title {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .statistic__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 118%;
    letter-spacing: -0.96px;
    text-align: left;
  }
}
.statistic__cards {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .statistic__cards {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

.statistic-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  width: 394px;
  max-width: 394px;
  max-height: 457px;
  border-radius: 16px;
  text-align: center;
  background-color: #fff;
  gap: 64px;
}
@media only screen and (max-width: 768px) {
  .statistic-card {
    padding: 16px 16px 24px;
    width: 100%;
    gap: 16px;
  }
}
.statistic-card:nth-child(2) {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: transform 0.4s ease, opacity 0.4s ease;
  margin-block-end: 56px;
  padding-inline: 32px;
}
@media only screen and (max-width: 768px) {
  .statistic-card:nth-child(2) {
    opacity: 1;
    transition: none;
    margin-block-end: 0;
  }
}
.statistic-card:nth-child(2).in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.statistic-card__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.statistic-card__image {
  display: flex;
  max-width: 160px;
  max-height: 160px;
}
@media only screen and (max-width: 768px) {
  .statistic-card__image {
    max-width: 80px;
    max-height: 80px;
  }
}
.statistic-card__image img {
  display: block;
}
.statistic-card__number {
  font-weight: 500;
  font-size: 40px;
  line-height: 112%;
  letter-spacing: -1.6px;
}
@media only screen and (max-width: 768px) {
  .statistic-card__number {
    font-size: 24px;
    line-height: 118%;
    letter-spacing: -0.96px;
  }
}
.statistic-card__description {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.4px;
}
@media only screen and (max-width: 768px) {
  .statistic-card__description {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
}

.certificate {
  position: relative;
  display: flex;
  justify-content: center;
  margin-block-start: 100px;
  padding-block-start: 56px;
}
@media only screen and (max-width: 768px) {
  .certificate {
    margin-block-start: 60px;
    padding-block-start: initial;
  }
}
.certificate__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1228px;
  max-height: 400px;
  border-radius: 16px;
  color: #fff;
  background-image: linear-gradient(102deg, #ff8f07 6.05%, #fad800 84.17%);
  margin-inline: 16px;
  padding-inline: 32px;
  text-wrap: balance;
}
@media only screen and (max-width: 768px) {
  .certificate__container {
    flex-direction: column;
    max-height: 397px;
    overflow: hidden;
    background-image: none;
    background-color: #ff8f07;
    margin-inline: 16px;
    padding-inline: 16px;
  }
}
.certificate__text-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 362px;
  padding-block: 48px;
}
@media only screen and (max-width: 768px) {
  .certificate__text-container {
    padding-block-end: 20px;
    padding-block-start: 24px;
  }
}
.certificate__text-container .title {
  margin-bottom: 16px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .certificate__title {
    font-size: 24px;
    letter-spacing: -0.96px;
  }
}
.certificate__description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.certificate__text {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.72px;
}
@media only screen and (max-width: 768px) {
  .certificate__text {
    font-size: 20px;
    letter-spacing: -0.6px;
  }
}
.certificate__text--small {
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
}
@media only screen and (max-width: 768px) {
  .certificate__text--small {
    font-size: 14px;
    letter-spacing: -0.21px;
  }
}
.certificate__image {
  position: relative;
  align-self: end;
  width: 100%;
  max-width: 757px;
}
.certificate__image img {
  display: block;
  width: 100%;
  height: auto;
}

.why {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1840px;
  overflow: hidden;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 1px, transparent 2px), radial-gradient(at top, #fff, #ffe2bf);
  background-size: 20px 20px, 100% 100%;
  margin-block-start: 100px;
  margin-inline: auto;
  padding-block: 80px;
}
@media only screen and (max-width: 768px) {
  .why {
    background: none;
    margin-block-start: 60px;
    padding-block: 0;
  }
}
.why__title {
  margin-block-start: 0;
}
.why__img {
  position: absolute;
  z-index: 1;
  display: block;
}
@media only screen and (max-width: 768px) {
  .why__img {
    display: none;
  }
}
.why__img--1 {
  left: 97%;
  bottom: 92%;
}
.why__img--2 {
  left: 6%;
  bottom: 115%;
}
.why__img--3 {
  right: 94.5%;
  top: 92%;
}
.why__container {
  position: relative;
  display: flex;
  padding: 42px 40px;
  max-width: 1228px;
  border-radius: 16px;
  background-color: #fff;
  gap: 80px;
}
@media only screen and (max-width: 768px) {
  .why__container {
    flex-direction: column;
    padding: 24px 16px;
    gap: 24px;
  }
}
.why__list {
  display: flex;
  flex-direction: column;
  max-width: 534px;
  gap: 36px;
}
@media only screen and (max-width: 768px) {
  .why__list {
    gap: 24px;
  }
}

.item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-inline-start: 56px;
}
@media only screen and (max-width: 768px) {
  .item {
    padding-inline-start: 36px;
  }
}
.item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-image: url("../../../images/pages/kursy-org-main/why/check-97ETHUP.svg");
}
@media only screen and (max-width: 768px) {
  .item::before {
    width: 24px;
    height: 24px;
    background-image: url("../../../images/pages/kursy-org-main/why/check-min-r5xcoFO.svg");
  }
}
.item__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.4px;
  color: #1f1f1f;
}
.item__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  color: #1f1f1f;
}

.directions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .directions {
    margin-block: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .directions__title {
    font-size: 24px;
    letter-spacing: -0.96px;
  }
}
.directions__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: initial;
  max-width: 1228px;
}
.directions__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  column-gap: 8px;
  row-gap: 16px;
}
@media only screen and (max-width: 768px) {
  .directions__list {
    gap: 8px;
  }
}
.directions__item {
  box-sizing: border-box;
  display: block;
  padding: 8px 24px;
  overflow: hidden;
  border: 1px solid #ff8f07;
  border-radius: 100px;
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: -0.28px;
  white-space: nowrap;
  text-overflow: ellipsis;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 576px) {
  .directions__item {
    max-width: calc(100vw - 32px);
  }
}
.directions__item:hover {
  color: #fff;
  background-color: #ff8f07;
  transition: all 0.3s ease-in-out;
}
.directions__item a {
  width: 100%;
  height: 100%;
}
.directions__item--button {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 100px;
  font-weight: 500;
  white-space: nowrap;
  color: #fff;
  background-color: #ff8f07;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.directions__item--button:hover {
  background-color: #e87f00;
  transition: all 0.3s ease-in-out;
}

.quality {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .quality {
    align-items: flex-start;
  }
}
.quality__cards {
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .quality__cards {
    flex-direction: column;
    gap: 16px;
  }
}

.quality-card {
  position: relative;
  padding: 24px;
  height: 392px;
  max-width: 393px;
  max-height: 392px;
  overflow: hidden;
  border-radius: 16px;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .quality-card {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 16px;
    height: min-content;
    gap: 16px;
  }
}
.quality-card__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.quality-card__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 116%;
  letter-spacing: -0.24px;
  color: #ff8f07;
}
@media only screen and (max-width: 768px) {
  .quality-card__title {
    font-size: 20px;
    line-height: 112%; /* 26.88px */
  }
}
.quality-card__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  color: #8a8f88;
}
.quality-card__image {
  position: absolute;
  right: -44px;
  bottom: -36px;
  width: 254px;
  height: 262px;
}
@media only screen and (max-width: 768px) {
  .quality-card__image {
    position: static;
    width: 124px;
    height: 124px;
    aspect-ratio: 1/1;
  }
}

.our-authors__title {
  margin-bottom: 40px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .our-authors__title {
    margin-bottom: 24px;
    text-align: left;
  }
}
.our-authors__grid {
  display: grid;
  grid-auto-rows: minmax(98px, auto);
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 992px) {
  .our-authors__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .our-authors__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media only screen and (max-width: 576px) {
  .our-authors__grid {
    grid-template-columns: 1fr;
  }
}
.our-authors__feature {
  padding: 24px;
  border: 1px solid #ff8f07;
  border-radius: 16px;
  background-color: #f9f9f9;
  pointer-events: none;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .our-authors__feature {
    padding: 16px;
    gap: 16px;
  }
}
.our-authors__feature--main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 2;
  grid-row: span 2;
  padding: 20px;
  border: none;
  color: #fff;
  background-image: linear-gradient(102deg, #ff8f07 6.05%, #fad800 84.17%);
}
@media only screen and (max-width: 768px) {
  .our-authors__feature--main {
    grid-column: span 1;
    grid-row: span 1;
    height: initial;
    background-image: none;
    background-color: #ff8f07;
  }
}
.our-authors__feature--card {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .our-authors__feature--card {
    gap: 12px;
  }
}

.expert-count {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #fff;
  gap: 12px;
  padding-block-end: 22px;
}
.expert-count__number {
  font-weight: 500;
  font-size: 64px;
  line-height: 112%;
  letter-spacing: -2.56px;
}
@media only screen and (max-width: 768px) {
  .expert-count__number {
    font-size: 32px;
    letter-spacing: -1.28px;
  }
}
.expert-count__label {
  font-weight: 400;
  font-size: 24px;
  line-height: 116%;
  letter-spacing: -0.24px;
}
@media only screen and (max-width: 768px) {
  .expert-count__label {
    font-size: 20px;
    letter-spacing: -0.2px;
  }
}

.feature-content__title {
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.4px;
}
.feature-content__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: -0.28px;
}

.feature {
  color: #1f1f1f;
}
.feature__title {
  font-weight: 500;
  font-size: 30px;
  line-height: 120%;
  letter-spacing: -0.9px;
}
@media only screen and (max-width: 768px) {
  .feature__title {
    font-size: 22px;
    line-height: 116%;
    letter-spacing: -0.22px;
  }
}
.feature__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
}

.author-card {
  padding: 24px;
  border-radius: 16px;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .author-card {
    padding: 16px;
  }
}
.author-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}
.author-card p {
  pointer-events: none;
}
.author-card__header {
  display: flex;
  align-items: center;
  margin-block-end: 12px;
}
.author-card__avatar {
  margin-right: 12px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.author-card__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  color: #1f1f1f;
}
.author-card__bio {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.24px;
  color: #666;
}
@media only screen and (max-width: 576px) {
  .author-card__bio {
    font-size: 12px;
    line-height: 130%;
  }
}

.new-course__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .new-course__container {
    align-items: stretch;
  }
}
.new-course__list {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin-block-end: 40px;
}
@media only screen and (max-width: 1230px) {
  .new-course__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 576px) {
  .new-course__list {
    grid-template-columns: 1fr;
    margin-block-end: 24px;
  }
}
.new-course__btn {
  margin: 0 auto;
  min-height: 60px;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -0.4px;
  padding-inline: 32px;
}
@media only screen and (max-width: 768px) {
  .new-course__btn {
    width: 100%;
    min-height: 50px;
    font-size: 16px;
  }
}

.feedback .title {
  margin-block-end: 16px;
}
@media only screen and (max-width: 768px) {
  .feedback .title {
    margin-block-end: 8px;
  }
}
.feedback__container {
  margin-block-end: 100px;
}
@media only screen and (max-width: 768px) {
  .feedback__container {
    margin-block-end: 60px;
  }
}
.feedback__description {
  margin-right: -8px;
  padding-right: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  text-align: center;
  color: #1f1f1f;
}
@media only screen and (max-width: 768px) {
  .feedback__description {
    font-size: 14px;
    text-align: left;
  }
}
.feedback__swiper {
  width: 100%;
  overflow: hidden;
  margin-block: 40px 24px;
}
@media only screen and (max-width: 576px) {
  .feedback__swiper {
    margin-block: 24px;
  }
}
.feedback__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.swiper-wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.swiper-slide {
  flex: 0 0 auto;
  width: 399px;
  height: 272px;
  min-width: 288px;
}

.feedback-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  height: 100%;
  max-width: 399px;
  max-height: 240px;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(34, 34, 34, 0.04);
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .feedback-item {
    max-width: initial;
  }
}
.feedback-item__title {
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: -0.24px;
  color: #8a8f88;
  margin-block-end: 12px;
}
.feedback-item__description {
  margin-bottom: 24px;
  padding-right: 6px;
  max-height: 120px;
  overflow-y: auto;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  color: #1f1f1f;
  scrollbar-gutter: stable;
}
.feedback-item__description::-webkit-scrollbar {
  width: 6px;
}
.feedback-item__description::-webkit-scrollbar-track {
  background-color: transparent;
}
.feedback-item__description::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #e4e4e4;
}

.feedback-item-user {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: auto;
  pointer-events: none;
  gap: 12px;
}
.feedback-item-user__avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.feedback-item-user__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.feedback-item-user__name {
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.24px;
  color: #1f1f1f;
}
.feedback-item-user__rating-box {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.feedback-item-user__rating-box img {
  max-width: 70px;
  max-height: 14px;
}
.feedback-item-user__stars {
  display: flex;
  align-items: center;
  color: #ffa719;
}
.feedback-item-user__stars svg {
  display: block;
}
.feedback-item-user__date {
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: -0.24px;
  color: #8a8f88;
}

.feedback-button {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ff8f07;
  border-radius: 6px;
  color: #1f1f1f;
  background-color: transparent;
  transition: border-color 0.3s, color 0.3s, background-color 0.3s;
  cursor: pointer;
}
.feedback-button:hover {
  border-color: #ff8f07;
  color: #e87f00;
  background-color: #fff;
}

/*# sourceMappingURL=kursy-org-main.output.css.map */
