@charset "UTF-8";

@font-face {
  font-family: icons;
  font-display: swap;
  src: url("/f/icons.woff2") format("woff2"), url("/f/icons.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

[class*=_icon-]:before {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class*=_icon-]:before {
  display: block;
}

._icon-tooltip:before {
  content: "\e90a";
}

._icon-filter:before {
  content: "\e909";
}

._icon-arrows:before {
  content: "\e908";
}

._icon-share:before {
  content: "\e907";
}

._icon-search-32:before {
  content: "\e906";
}

._icon-arrow-right:before {
  content: "\e900";
}

._icon-check:before {
  content: "\e901";
}

._icon-check-broken:before {
  content: "\e902";
}

._icon-chevron-right-16:before {
  content: "\e903";
}

._icon-cross:before {
  content: "\e904";
}

._icon-mini-cross:before {
  content: "\e905";
}

:root {
  --primary: #0a9396;
  --secondary: #94d2bd;
  --accent: #1876ee;
  --accent-hover: #6ca3eb;
  --inverse: #187600;
  --bg-primary: #242423;
  --bg-secondary: #7678ed;
  --bg-accent: #c1ef09;
  --bg-inverse: #2d00f7;
  --text-primary: #fbfffe;
  --text-secondary: #080708;
  --text-accent: #e8eddf;
  --text-inverse: #e8eddf;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #171719;
  line-height: 1;
  font-family: "Montserrat";
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Montserrat";
  font-size: inherit;
  line-height: inherit;
  outline: none;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: transparent;
}

a {
  color: inherit !important;
  text-decoration: none !important;
}

ul li {
  list-style: none;
}
ul {
  margin: 0 !important;
  padding: 0 !important;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  background-color: #FBFCFE;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.text-center {
  text-align: center;
}

.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}

.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
  border-radius: .25rem;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/*
(i) Стили будут применяться ко
всем классам, содержащим *__container
Например header__container, main__container и т.п.
Сниппет (HTML): cnt
*/

[class*=__container] {
  max-width: 89.9375rem;
  margin: 0 auto;
  padding: 0 3rem;
}

.online-courses-page-container {
  max-width: 72.75rem;
}

.news-internal-page-container {
  max-width: 86rem;
}

.news-page-container {
  max-width: 72.75rem;
}

.rating-page-container {
  max-width: 62.25rem;
}

.reviews-page-container {
  max-width: 62.25rem;
}

.courses-page-container {
  max-width: 72.75rem;
}

.course-page-container {
  max-width: 72.75rem;
}

.reviews-page2-container {
  max-width: 75.75rem;
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  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;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.25rem;
  border: 1px solid rgb(243, 245, 251);
}

.lock .popup__content {
  visibility: visible;
}

.tariffs-detai__content {
  position: relative;
  padding: 1.5rem 3rem 3rem 3rem;
}

.tariffs-detai__close-box {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #6C7CA8;
  font-size: 1.5rem;
}

.detai-content-tariffs__subtitle {
  line-height: 1.875;
}

.detai-content-tariffs__title {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.625;
}

.detai-content-tariffs__column-name {
  color: #606F97;
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.625rem;
}

.detai-content-tariffs__tariffs-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.detai-content-tariffs__tariffs-table > :not(:last-child) {
  border-bottom: 1px solid rgba(96, 111, 151, 0.2);
}

.detai-content-tariffs__tariff-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  min-height: 4.25rem;
  min-width: 27.3125rem;
}

.detai-content-tariffs__tariff-item-number {
  font-size: 3rem;
  line-height: 1.2083333333;
  font-weight: 600;
}

.detai-content-tariffs__tariff-item-number_mini-text {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.375;
}

.detai-content-tariffs__tariff-item-text {
  line-height: 1.875;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg--contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

.animated-button {
  position: relative;
  background-color: #1876EE;
  border-radius: 0.25rem;
  padding: 0.875rem;
  color: #fff;
  min-width: 9.5625rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  display: inline-block;
  width: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}

.animated-button__animated-item {
  font-size: 0.5rem;
  font-weight: 600;
  line-height: 2.5;
  color: #171719;
  padding: 0.125rem 0.5rem;
  background-color: #C1EF09;
  border-radius: 0.125rem;
  position: absolute;
  top: -16px;
  right: -10px;
  -webkit-transform: rotate(7deg);
      -ms-transform: rotate(7deg);
          transform: rotate(7deg);
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.animated-button:active {
  background-color: #0564DD;
}

.animated-button:active .animated-button__animated-item {
  top: -14px;
  right: -20px;
}

.patdy-form-input {
  position: relative;
  width: 100%;
  min-height: 3.375rem;
  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: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.patdy-form-input__label {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.patdy-form-input__input {
  width: 100%;
  border-bottom: 0.0625rem solid #E1E6F4;
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 500;
  caret-color: #1876ee;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
}

.patdy-form-input__input:focus {
  border-color: #1876ee;
  background-color: #fff;
  outline: none;
}

.patdy-form-input__textarea {
  width: 100%;
  border-bottom: 0.0625rem solid #E1E6F4;
  font-size: 1rem;
  line-height: 1.875;
  font-weight: 500;
  caret-color: #1876ee;
  field-sizing: content;
  resize: none;
  padding-right: 1.875rem;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
}

.patdy-form-input__textarea:focus {
  border-color: #1876ee;
  background-color: #fff;
  outline: none;
}

.patdy-form-input__icon-box {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #606F97;
  border-radius: 50%;
  height: 1rem;
  width: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.patdy-form-input__icon {
  color: #fff;
  font-size: 0.875rem;
}

.patdy-form-input__error {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  display: none;
  margin-top: 0.375rem;
  color: #EB5757;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.1428571429;
}

.patdy-form-input.error-active .patdy-form-input__label {
  color: #EB5757;
}

.patdy-form-input.error-active .patdy-form-input__error {
  display: block;
}

.patdy-form-input.error-active .patdy-form-input__input {
  border-bottom: 0.0625rem solid #EB5757;
  caret-color: #EB5757;
}

.search-input {
  position: relative;
}

.search-input__top-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  margin-right: 0.875rem;
  margin-left: 0.875rem;
}

.search-input__icon-open {
  display: none;
  font-size: 2rem;
}

.search-input__icon-close {
  display: none;
  font-size: 2rem;
  color: #6C7CA8;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.search-input__input-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 22.5rem;
  padding: 0.75rem 0.625rem;
  border-bottom: 0.0625rem solid #1876EE;
}

.search-input__icon-search {
  font-size: 2rem;
  margin-right: 0.25rem;
}

.search-input__input {
  caret-color: #1876ee;
  padding-right: 2.125rem;
  width: 100%;
}

.search-input__icon-clear-box {
  position: absolute;
  top: 50%;
  right: 0.625rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #606F97;
  border-radius: 50%;
  height: 1rem;
  width: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.search-input__icon-clear {
  color: #fff;
  font-size: 0.875rem;
}

.search-input__found-box {
  display: none;
  position: absolute;
  z-index: 100;
  top: calc(100% + 9px);
  left: 0;
  width: 100%;
  background-color: #fff;
  border-radius: 0.25rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
          box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
}

.search-input__found-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: 32.5rem;
  overflow-y: auto;
  padding: 1rem 0rem;
}

.search-input__found-box ul li {
  min-width: 100%;
  padding: 0.875rem 1rem;
}

.search-input__found-item {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.patdy-form-checkbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.patdy-form-checkbox__input {
  position: absolute;
  opacity: 0;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

.patdy-form-checkbox__custom {
  position: relative;
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  background-color: #E1E6F4;
  border: 0.0625rem solid #E1E6F4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  z-index: 1;
}

.patdy-form-checkbox__icon {
  font-size: 1rem;
  color: #1876ee;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.patdy-form-checkbox__text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2857142857;
}

.patdy-form-checkbox__text_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.patdy-form-checkbox__text_flex :last-child {
  color: #6C7CA8;
}

.patdy-form-checkbox__text a {
  color: #1876EE;
}

.patdy-form-checkbox__error {
  display: none;
  color: #EB5757;
  margin-top: -1.5rem;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  font-weight: 500;
}

.patdy-form-checkbox__input:checked + .patdy-form-checkbox__custom .patdy-form-checkbox__icon {
  opacity: 1;
}

.patdy-form-checkbox.error-active .patdy-form-checkbox__custom {
  border: 0.0625rem solid #EB5757;
}

.patdy-form-checkbox__error.error-active {
  display: block;
}

.patdy-form-btn {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  background-color: #1876EE;
  padding: 0.875rem;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}

.patdy-form-btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.online-courses-title {
  font-size: 3rem;
  line-height: 1.2083333333;
  font-weight: 600;
}

.gradient-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  padding: 0.625rem 0.875rem;
  border: 0.0625rem solid #EDF0F8;
  border-radius: 0.25rem;
  background-color: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04);
          box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04);
  -webkit-box-shadow: 0 1px 1px 0 rgba(41, 47, 65, 0.04);
          box-shadow: 0 1px 1px 0 rgba(41, 47, 65, 0.04);
  -webkit-box-shadow: 0 3px 3px 0 rgba(42, 51, 73, 0.04);
          box-shadow: 0 3px 3px 0 rgba(42, 51, 73, 0.04);
}

.gradient-btn__bg-hover,
.gradient-btn__bg-active {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.gradient-btn__bg-hover img,
.gradient-btn__bg-active img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.link-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.link-btn_box {
  background-color: #fff;
  border-radius: 0.25rem;
  padding: 0.625rem 0.875rem;
}

.link-btn__text {
  color: #1876EE;
  line-height: 1.5;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.link-btn__icon {
  font-size: 1rem;
  color: #1876EE;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.main-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.625rem 0.875rem;
  background-color: #1876EE;
  border-radius: 0.25rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.main-btn__text {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
}

.swiper-pagination {
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: rgba(24, 117, 238, 0.3215686275);
  opacity: 0.5;
  margin: 0 4px;
  -webkit-transition: background 0.3s, opacity 0.3s;
  transition: background 0.3s, opacity 0.3s;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: #1876EE;
  opacity: 1;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.rating-star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.rating-star__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0.5rem;
}

.rating-star__stars svg {
  width: 1.5rem;
  height: 1.5rem;
}

.rating-stars-container:hover 
.rating-star__stars svg {
  cursor: pointer;
  filter: drop-shadow(0 0 2px #949392cc);
  transform: scale(1.1);
}

.rating-star__score {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.form-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 5px;
  max-width: 8.5625rem;
  cursor: pointer;
}

.form-rating span {
  font-size: 1.75rem;
  color: #ccc;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.form-rating span.active,
.form-rating span:hover,
.form-rating span:hover ~ span {
  color: #ffcc00;
}

.breadcrumbs {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.breadcrumbs__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}

.breadcrumbs__btn {
  font-size: 1.5rem;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.breadcrumbs__crumbs-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.375rem;
}

.breadcrumbs__crumbs-box > :last-child {
  color: #6C7CA8;
}

.breadcrumbs__crumbs-box > :not(:last-child) {
  position: relative;
}

.breadcrumbs__crumbs-box > :not(:last-child)::after {
  position: absolute;
  content: "/";
  top: 50%;
  right: -1.375rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #DADBE7;
}

.breadcrumbs__crumbs-box a {
  line-height: 1.5;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.breadcrumbs-bg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #1876EE;
}

.breadcrumbs-bg__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}

.breadcrumbs-bg__btn {
  font-size: 1.5rem;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
  color: #fff;
}

.breadcrumbs-bg__crumbs-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.375rem;
  color: #fff;
}

.breadcrumbs-bg__crumbs-box > :last-child {
  opacity: 0.6;
}

.breadcrumbs-bg__crumbs-box > :not(:last-child) {
  position: relative;
}

.breadcrumbs-bg__crumbs-box > :not(:last-child)::after {
  position: absolute;
  content: "/";
  top: 50%;
  right: -1.375rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  opacity: 0.4;
}

.breadcrumbs-bg__crumbs-box a {
  line-height: 1.5;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.share-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}

.share-btn__icon {
  color: #1876EE;
  font-size: 1.5rem;
  -webkit-transition: color 0.2s ease 0s;
  transition: color 0.2s ease 0s;
}

.share-btn__text {
  color: #1876EE;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-transition: color 0.2s ease 0s;
  transition: color 0.2s ease 0s;
}

.banner {
  background-color: #1876EE;
  overflow: hidden;
}

.banner_no-bg {
  background-color: unset;
  overflow: hidden;
}

.banner_no-bg .banner__left-content {
  color: unset;
}

.banner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  height: 100%;
  min-height: 20rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.banner__left-content {
  position: relative;
  z-index: 2;
  height: 100%;
  color: #fff;
  max-width: 35rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.banner__title {
  font-size: 3rem;
  line-height: 1.2083333333;
  font-weight: 600;
}

.banner__info {
  line-height: 1.5;
}

.banner__right-content {
  position: relative;
  z-index: 1;
  min-height: 18.75rem;
  width: 21.875rem;
}

.banner__image-desktop-ibg {
  position: absolute;
  top: 1.25rem;
  right: -2.75rem;
  height: 26.5625rem;
  width: 26.375rem;
}

.banner__image-mobile-ibg {
  position: absolute;
  top: 2.125rem;
  right: -0.875rem;
  width: 19.5rem;
  height: 19.6875rem;
  display: none;
}

.left-banner-content {
  border-radius: 0.25rem;
  border: 0.0625rem solid #F3F5FB;
  background-color: #fff;
  color: #171719;
  padding: 2.5rem;
  width: 100%;
  max-width: 42rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2.5rem;
  margin-top: 2.375rem;
  margin-bottom: 2.375rem;
}

.left-banner-content__left-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.left-banner-content__right-box {
  min-width: 9.75rem;
}

.left-banner-content__top-info {
  line-height: 1.5;
}

.left-banner-content__title {
  font-size: 3rem;
  line-height: 1.2083333333;
  font-weight: 600;
}

.left-banner-content__bottom-box {
  color: #1876EE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.filter-news {
  margin-bottom: 8rem;
}

.filter-news__title {
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
}

.filter-news__filter {
  margin-top: 2.5rem;
}

.filter-news__filter-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}

.filter-news__filter-item-btn.active-filter {
  color: #fff;
  background-color: #1876EE;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.filter-news__filter-item-text {
  position: relative;
  z-index: 2;
}

.filter-news__courses-items {
  margin-top: 2rem;
}

.filter-news__link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.filter-news__link {
  margin-top: 2rem;
}

.pagination-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.pagination-page__previous-btn {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.pagination-page__nuber-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.pagination-page__nuber-page {
  color: #6C7CA8;
  height: 1.5rem;
  width: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  font-weight: 600;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.pagination-page__nuber-page.active-page {
  color: #1876EE;
}

.pagination-page__previous-btn,
.pagination-page__next-btn {
  height: 2rem;
  width: 2rem;
  font-size: 1.5rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.pagination-page__previous-btn.last-page,
.pagination-page__next-btn.last-page {
  color: #6C7CA8;
}

.sort-select__sort-icon {
  display: none;
  font-size: 2rem;
  color: #6C7CA8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.sort-select__dropdown {
  position: relative;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.sort-select__dropdown.open-dropdown .sort-select__dropdown-list {
  display: block;
}

.sort-select__dropdown.open-dropdown .sort-select__icon-arrow {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.left-banner-content {
  border-radius: 0.25rem;
  border: 0.0625rem solid #F3F5FB;
  background-color: #fff;
  color: #171719;
  padding: 2.5rem;
  width: 100%;
  max-width: 42rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2.5rem;
  margin-top: 2.375rem;
  margin-bottom: 2.375rem;
}

.left-banner-content__left-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.left-banner-content__right-box {
  min-width: 9.75rem;
}

.left-banner-content__top-info {
  line-height: 1.5;
}

.sort-select__dropdown.open-select {
  display: block;
}

.sort-select__dropdown-header {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.sort-select__dropdown-header :nth-child(2) {
  color: #6C7CA8;
  line-height: 1.875;
  margin-right: 0.5rem;
}

.left-banner-content__title {
  font-size: 3rem;
  line-height: 1.2083333333;
  font-weight: 600;
}

.left-banner-content__bottom-box {
  color: #1876EE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.reviews-content__navigation {
  border: 0.0625rem solid rgba(210, 219, 245, 0.4);
  border-radius: 0.25rem;
  background-color: rgba(96, 111, 151, 0.04);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.reviews-content__title {
  color: #606F97;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.reviews-content__title._tab-active .reviews-content__title-wrapper {
  color: #171719;
  background-color: #fff;
  -webkit-box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04);
          box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04);
}

.reviews-content__title-wrapper {
  margin: 0.125rem;
  padding: 0.625rem 1.5rem;
  border-radius: 0.25rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.reviews-content__content {
  margin-top: 1.5rem;
}

.sort-select__dropdown.open-dropdown .sort-select__icon-arrow {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.sort-select__dropdown.open-select {
  display: block;
}

.sort-select__dropdown-header {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.sort-select__dropdown-header :nth-child(2) {
  color: #6C7CA8;
  line-height: 1.875;
  margin-right: 0.5rem;
}

.sort-select__sort-close-icon {
  display: none;
  color: #6C7CA8;
  font-size: 1.5rem;
  height: 2rem;
  width: 2rem;
  margin-right: 0.25rem;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.sort-select__icon-arrow {
  margin-left: 0.25rem;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.sort-select__dropdown-list {
  display: none;
  position: absolute;
  z-index: 30;
  min-width: 14.375rem;
  top: calc(100% + 4px);
  right: 0;
  background-color: #fff;
  border-radius: 0.25rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  overflow: auto;
  -webkit-box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
          box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
}

.sort-select__dropdown-item {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.875rem 1rem;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.sort-select__dropdown-item.selected {
  background-color: #F3F5FB;
}

.sort-select__dropdown-item.selected .sort-select__dropdown-item-icon {
  opacity: 1;
}

.sort-select__dropdown-item-text {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
}

.sort-select__dropdown-item-icon {
  color: #1876EE;
  font-size: 0.875rem;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease 0s;
  transition: opacity 0.2s ease 0s;
}
.sort-select__sort-close-icon {
  display: none;
  color: #6C7CA8;
  font-size: 1.5rem;
  height: 2rem;
  width: 2rem;
  margin-right: 0.25rem;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.sort-select__icon-arrow {
  margin-left: 0.25rem;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.sort-select__dropdown-list {
  display: none;
  position: absolute;
  z-index: 30;
  min-width: 14.375rem;
  top: calc(100% + 4px);
  right: 0;
  background-color: #fff;
  border-radius: 0.25rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  overflow: auto;
  -webkit-box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
          box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
}

.sort-select__dropdown-item {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.875rem 1rem;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.sort-select__dropdown-item.selected {
  background-color: #F3F5FB;
}

.sort-select__dropdown-item.selected .sort-select__dropdown-item-icon {
  opacity: 1;
}

.sort-select__dropdown-item-text {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
}

.sort-select__dropdown-item-icon {
  color: #1876EE;
  font-size: 0.875rem;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease 0s;
  transition: opacity 0.2s ease 0s;
}

.form-select__sort-btn {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border-bottom: 0.0625rem solid #DADBE7;
  width: 100%;
  height: 3.375rem;
}

.form-select__sort-icon {
  display: none;
  font-size: 2rem;
  color: #6C7CA8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.form-select__dropdown {
  position: relative;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border-bottom: 0.0625rem solid #DADBE7;
}

.form-select__dropdown.open-dropdown {
  border-bottom: 0.0625rem solid #1876EE;
}

.form-select__dropdown.open-dropdown .form-select__dropdown-list {
  display: block;
}

.form-select__dropdown.open-dropdown .form-select__icon-arrow {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.form-select__dropdown.open-select {
  display: block;
}

.form-select__dropdown-header {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 3.375rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.form-select__sort-close-icon {
  display: none;
  color: #6C7CA8;
  font-size: 1.5rem;
  height: 2rem;
  width: 2rem;
  margin-right: 0.25rem;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.form-select__icon-arrow {
  margin-left: 0.25rem;
  margin-right: 0.375rem;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.form-select__dropdown-list {
  display: none;
  position: absolute;
  z-index: 30;
  min-width: 14.375rem;
  width: 100%;
  top: calc(100% + 4px);
  right: 0;
  background-color: #fff;
  border-radius: 0.25rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  overflow: auto;
  -webkit-box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
          box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
}

.form-select__dropdown-item {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.875rem 1rem;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.form-select__dropdown-item.selected {
  background-color: #F3F5FB;
}

.form-select__dropdown-item.selected .form-select__dropdown-item-icon {
  opacity: 1;
}

.form-select__dropdown-item-text {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
}

.form-select__dropdown-item-icon {
  color: #1876EE;
  font-size: 0.875rem;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease 0s;
  transition: opacity 0.2s ease 0s;
}

.tooltip {
  position: relative;
  cursor: pointer;
  opacity: 1;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.tooltip:active .tooltip__dropdown {
  display: block;
}

.tooltip__dropdown {
  position: absolute;
  z-index: 30;
  display: none;
  top: calc(100% + 20px);
  right: -1.125rem;
  padding: 1rem;
  background-color: #EDF0F8;
  border-radius: 0.25rem;
}

.tooltip__dropdown::before {
  content: "";
  position: absolute;
  top: -0.4375rem;
  right: 1.25rem;
  height: 1.25rem;
  width: 1.25rem;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 0.1875rem;
  background-color: #EDF0F8;
}

.menu {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
}

.menu__left-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}

.menu__logo-box {
  position: relative;
  z-index: 4;
  padding: 1.5rem 0;
  background-color: #fff;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.menu__logo-image {
  width: 6.875rem;
  height: 2.0625rem;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.menu__menu-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.menu__menu-btn.desktop-menu-open {
  color: #0564DD;
}

.menu__menu-btn.desktop-menu-open .menu__menu-btn-icon {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.menu__menu-btn-text {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.menu__menu-btn-icon {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.menu__body-desktop {
  position: fixed;
  z-index: -5;
  top: 5.0625rem;
  left: -100%;
  background-color: #fff;
  width: 100%;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.menu__body-desktop.desktop-menu-open {
  z-index: 30;
  left: 0%;
  opacity: 1;
}

.menu__body {
  display: none;
}

.menu__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
}

.menu__item {
  width: 100%;
  border-radius: 0.25rem;
}

.menu__item.active {
  background-color: #F3F5FB;
}

.menu__item.active .menu__item-submenu {
  display: block;
}

.menu__item.active .menu__item-title-btn-icon {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.menu__item-title-btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.875rem 1rem;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.menu__item-title-btn-text {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
}

.menu__item-title-btn-icon {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.menu__item-submenu {
  display: none;
  padding: 0.5rem 0 1rem 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  max-height: 21.25rem;
  overflow-y: auto;
}

.menu__lessons-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.menu__lesson-title-section {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 700;
  padding: 0.5rem 1rem;
}

.menu__lesson-item {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
  width: 100%;
  padding: 0.875rem 1rem;
}

.menu__right-box-desctop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}

.menu__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  background-color: #fff;
  padding: 0.8125rem 0 1rem 0;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.menu__body-bottom-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.875rem;
}

.menu__profile-mobile {
  display: none;
}

.menu__profile-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0%;
}

.menu__solutions-mobile {
  display: none;
}

.desktop-menu {
  height: 100%;
}

.desktop-menu__box-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 89.9375rem;
  margin: 0 auto;
  padding-top: 2rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

.desktop-menu__topics-list {
  padding-right: 1.5rem;
}

.desktop-menu__topics-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  max-height: calc(100vh - 113px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.desktop-menu__topics-list ul li {
  list-style-type: none;
}

.desktop-menu__topic-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.625rem;
  width: 22.25rem;
  padding: 0.875rem 0.75rem 0.875rem 1rem;
  border-radius: 0.25rem;
  -webkit-transition: all 0.1s ease 0s;
  transition: all 0.1s ease 0s;
}

.desktop-menu__topic-item.active-section {
  background-color: #F3F5FB;
}

.desktop-menu__topic-item-text {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
}

.desktop-menu__lessons-list {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

.desktop-menu__lessons-list ul {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-height: calc(100vh - 113px);
  overflow-y: auto;
  scrollbar-width: thin;
}
.desktop-menu__lessons-section {
  display: none;
}

.desktop-menu__lessons-section.active-topic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.desktop-menu__lesson-title-section {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 700;
  width: 100%;
  padding: 0.875rem 1rem;
}

.desktop-menu__lesson-item {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 0.25rem;
  -webkit-transition: all 0.1s ease 0s;
  transition: all 0.1s ease 0s;
}

/* Для Webkit-скролла (Chrome, Safari) */

.desktop-menu__lessons-list ul::-webkit-scrollbar,
.desktop-menu__topics-list ul::-webkit-scrollbar {
  width: 6px;
  background: #f0f0f0;
}

.desktop-menu__lessons-list ul::-webkit-scrollbar-thumb,
.desktop-menu__topics-list ul::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.menu__icon-box {
  display: none;
}

.icon-menu {
  display: none;
}

.footer {
  margin-top: 3rem;
  margin-bottom: 3.75rem;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3rem;
}

.footer__logo-ibg {
  width: 6.875rem;
  height: 2.0625rem;
}

.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}

.footer__double-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}

.footer__column-title {
  margin-bottom: 0.5rem;
  line-height: 1.875;
  font-weight: 700;
}

.footer__column-link {
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.footer__second-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}

.footer__third-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}

.footer__first-column,
.footer__second-column,
.footer__third-column {
  min-width: 15rem;
}

.footer__first-column div ul,
.footer__second-column div ul,
.footer__third-column div ul {
  line-height: 1.875;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.main-features {
  margin-top: 4.6875rem;
  margin-bottom: 7.9375rem;
}

.main-features__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5.3125rem;
}

.main-features__content-image-tablet {
  display: none;
}

.main-features__content-features {
  max-width: 41.375rem;
}

.features-image__image-ibg {
  margin-left: -0.375rem;
  margin-top: 5.0625rem;
  height: 30.875rem;
  width: 37.1875rem;
}

.content-features-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}

.content-features-main__titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.content-features-main__sub-title {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.625;
}

.content-features-main__title {
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.2083333333;
}

.features-content-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.features-content-main__left {
  min-width: 20rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.features-content-main__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.features-content-main__item-icon {
  color: #1876EE;
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.features-content-main__item-text {
  color: #606F97;
  line-height: 1.875;
}

.features-content-main__right {
  min-width: 20rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.bankcards {
  overflow: hidden;
  position: relative;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  margin-bottom: 5rem;
}

.bankcards__container {
  white-space: nowrap;
}

.bankcards__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
}

.bankcards__item-image-ibg {
  width: 7.75rem;
  height: 5rem;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.animation-item {
  display: none;
}

.tariffs-prices-pc__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 7.5rem;
}

.tariffs-prices-pc__content {
  padding: 3rem 5rem 4rem 5rem;
  min-height: 40.375rem;
  min-width: 59rem;
  border-radius: 0.25rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
          box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
}

.tariffs-prices-pc__title {
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.2083333333;
  text-align: center;
  margin-bottom: 2rem;
}

.tabs-tariffs-prices__navigation {
  border: 0.0625rem solid rgba(210, 219, 245, 0.4);
  border-radius: 0.25rem;
  background-color: rgba(96, 111, 151, 0.04);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.tabs-tariffs-prices__title-wrapper {
  margin: 0.125rem;
  padding: 0.625rem 1.5rem;
  border-radius: 0.25rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.tabs-tariffs-prices__title {
  color: #606F97;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.tabs-tariffs-prices__title._tab-active .tabs-tariffs-prices__title-wrapper {
  color: #171719;
  background-color: #fff;
  -webkit-box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04);
          box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04);
}

.tabs-tariffs-prices__body-box {
  height: 24.625rem;
  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;
}

.tabs-tariffs-prices__numbers {
  text-align: center;
  font-size: 5.25rem;
  font-weight: 600;
  line-height: 1;
}

.tabs-tariffs-prices__info {
  text-align: center;
  line-height: 1.875;
  margin-top: 0.9375rem;
}

.tabs-slider__top-box {
  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;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

.tabs-slider__numbers {
  text-align: center;
  font-weight: 600;
}

.tabs-slider__info {
  font-size: 1.5rem;
  line-height: 1.25;
  margin-top: 1rem;
}

.tabs-slider__slidecontainer {
  position: relative;
  width: 34.6875rem;
  height: 3.125rem;
  margin-top: 2.5rem;
}

.tabs-slider__track {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: calc(100% + 50px);
  height: 3.125rem;
  background-color: #F5F6FA;
  border-radius: 5.625rem;
  z-index: 1;
  margin-left: -1.5625rem;
}

.tabs-slider__progress {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 3.125rem;
  background: -webkit-gradient(linear, left top, right top, from(rgb(193, 239, 9)), color-stop(55%, rgb(81, 193, 165)), to(rgb(24, 118, 238)));
  background: linear-gradient(to right, rgb(193, 239, 9) 0%, rgb(81, 193, 165) 55%, rgb(24, 118, 238) 100%);
  border-radius: 5.625rem;
  width: 0%;
  z-index: 2;
  margin-left: -1.5625rem;
  -webkit-box-shadow: 0 4px 12px 0 rgba(96, 111, 151, 0.2);
          box-shadow: 0 4px 12px 0 rgba(96, 111, 151, 0.2);
}

.tabs-slider__thumb {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 2.75rem;
  height: 2.75rem;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
}

.tabs-slider__thumb-image-ibg {
  height: 0.625rem;
  width: 0.625rem;
}

.tabs-slider__marks {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.625rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.tabs-slider__mark {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.tabs-slider__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0.25rem;
  width: 0.25rem;
  background-color: #DADBE7;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.tabs-slider__more {
  margin-top: 4.5rem;
  color: #1876EE;
  line-height: 1.875;
}

.slider-number {
  font-size: 5.25rem;
  ine-height: 1;
}

.slider-personal {
  font-size: 3rem;
  line-height: 1.2083333333;
}
.slider-personal.lh-1-75 {
  line-height: 1.75;
}

.tariffs-prices-tablet {
  display: none;
  margin-bottom: 3rem;
}

.tariffs-prices-tablet__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  padding: 3rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
          box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
}

.detai-content-tariffs-tablet__subtitle {
  color: #606F97;
  line-height: 1.5;
}

.detai-content-tariffs-tablet__title {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  font-weight: 600;
}

.detai-content-tariffs-tablet__column-name {
  color: #606F97;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  line-height: 2.1428571429;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.detai-content-tariffs-tablet__tariffs-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.detai-content-tariffs-tablet__tariff-item {
  padding-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.detai-content-tariffs-tablet__tariff-item-number {
  font-weight: 700;
  line-height: 1.5;
}

.detai-content-tariffs-tablet__tariff-item-text {
  line-height: 1.5;
}

.detai-content-tariffs-tablet__simple-number {
  margin-top: 1rem;
  margin-bottom: 0.625rem;
  font-weight: 700;
  line-height: 1.5;
}

.detai-content-tariffs-tablet__simple-text {
  margin-bottom: 0.5rem;
}

.course-sales__content {
  position: relative;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 4200px;
}

.course-sales__move-container-pc {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
}

.course-sales__trigger2 {
  height: 3.125rem;
  width: 100%;
}

.course-sales__trigger3 {
  height: 3.125rem;
  width: 100%;
  margin-bottom: 62.5rem;
}

.course-sales__move-container-tablet {
  display: none;
}

.course-sales__subtitle {
  text-align: center;
  color: #6C7CA8;
  line-height: 1.875;
  margin-bottom: 1.5rem;
}

.course-sales__title {
  text-align: center;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.2083333333;
  max-width: 49rem;
}

.course-sales__card-box {
  position: relative;
  height: 37.5rem;
  overflow: hidden;
  margin-top: -3.125rem;
}

.course-sales__card {
  position: absolute;
  overflow: hidden;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1;
  left: 50%;
  font-size: 1.25rem;
  padding: 2rem 2rem 3rem 2rem;
  height: 20rem;
  width: 27.3125rem;
  border: 0.125rem solid #fff;
  border-radius: 0.25rem;
  -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  -webkit-box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
          box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
}

.course-sales__card_1 {
  top: 600px;
}

.course-sales__card_2 {
  top: 600px;
}

.course-sales__card_3 {
  top: 600px;
}

.course-sales__card-bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

.course-sales__card-subtitle {
  position: relative;
  z-index: 2;
  font-size: 1rem;
  line-height: 1.875;
}

.course-sales__card-title {
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.05;
}

.course-sales__white-gradient {
  position: relative;
  z-index: 3;
  margin-top: -9.375rem;
  height: 9.375rem;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(251, 252, 254, 0)), to(rgb(251, 252, 254)));
  background: linear-gradient(to bottom, rgba(251, 252, 254, 0), rgb(251, 252, 254));
}

.tablet-course-sales {
  width: 100%;
}

.tablet-course-sales__subtitle {
  color: #6C7CA8;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  text-align: center;
  margin-bottom: 1.5rem;
}

.tablet-course-sales__title {
  text-align: center;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.3333333333;
}

.tablet-course-sales__card-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
  height: auto;
  min-width: 100%;
  margin-top: 1.5rem;
}

.tablet-course-sales__card {
  position: relative;
  padding: 2rem;
  height: 14.875rem;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 0.125rem solid #fff;
  border-radius: 0.25rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
          box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
}

.tablet-course-sales__card-bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tablet-course-sales__card-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.tablet-course-sales__card-subtitle {
  position: relative;
  z-index: 2;
  text-align: center;
  line-height: 1.875;
  max-width: 9.5rem;
}

.tablet-course-sales__card-title {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3333333333;
}

.grid-info {
  margin-bottom: 7.5rem;
}

.grid-info__subtitle {
  text-align: center;
  color: #6C7CA8;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.875;
  margin-bottom: 2rem;
}

.info-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.info-grid__item {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 0.125rem solid #F5F6FA;
  border-radius: 0.25rem;
  background-color: #fff;
  padding: 2rem 2rem 3rem 2rem;
  min-height: 25rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.info-grid__item_last {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 1rem;
}

.info-grid__item_last .info-grid__item-bottom-box {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.info-grid__item-top-box {
  width: 100%;
}

.info-grid__item-top-text {
  line-height: 1.875;
}

.info-grid__item-bottom-box {
  min-height: 8.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.info-grid__item-bottom-plug {
  height: 0.1875rem;
}

.info-grid__item-bottom-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.078125;
}

.info-grid__item-bottom-title_mobile {
  display: none;
}

.info-grid__item-bottom-text {
  line-height: 1.875;
}

.info-grid__item-bottom-text_border {
  border-top: 0.0625rem solid #DADBE7;
  padding-top: 0.625rem;
}

.info-grid__item-bottom-subtitle {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.875;
}

.info-grid__item-bottom-subtitle_mobile {
  display: none;
}

.info-grid__item-top-title {
  line-height: 1.875;
  font-weight: 700;
}

.info-grid__item-top-grid {
  margin-top: 0.5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}

.info-grid__item-top-item {
  font-size: 1rem;
  line-height: 1.875;
}

.info-grid__item-bottom-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.info-grid__item-bottom-grid-column-1 {
  min-width: 100%;
}

.info-grid__item-bottom-grid-column-2 {
  min-width: 100%;
}

.info-grid__item-bottom-item {
  line-height: 1.875;
}

.expert-slider {
  margin-bottom: 7.5rem;
}

.expert-slider__slider-container {
  max-width: 137.5rem;
  margin: 0 auto;
}

.expert-slider__subtitle {
  text-align: center;
  line-height: 1.875;
}

.expert-slider__title {
  text-align: center;
  font-size: 3rem;
  line-height: 1.2083333333;
  font-weight: 700;
  margin-bottom: 1rem;
}

.expert-slider__slider {
  padding-left: 3rem;
  padding-right: 3rem;
}

.expert-slider__slide-image-ibg {
  overflow: hidden;
  border-radius: 0.25rem;
  width: 100%;
  height: 23.75rem;
}

.expert-slider__slide-min-image {
  height: 21.4375rem;
}

.expert-slider__slide-info-box {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
}

.expert-slider__slide-name {
  font-weight: 700;
  line-height: 1.5;
}

.expert-slider__slide-description {
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.expert-slider__slide-description br {
  display: none;
}

.expert-slider__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.expert-slider__navigation-button-prev-icon {
  font-size: 1.5rem;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.expert-slider__navigation-button-next-icon {
  font-size: 1.5rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.expert-slider__navigation-button-prev.swiper-button-disabled .expert-slider__navigation-button-prev-icon {
  color: #606F97;
}

.expert-slider__navigation-button-next.swiper-button-disabled .expert-slider__navigation-button-next-icon {
  color: #606F97;
}

.expert-slider__slide-description br {
  display: none !important;
}

.send-request-form {
  margin-bottom: 3.75rem;
}

.send-request-form__content {
  position: relative;
  padding: 4.3125rem 5rem;
}

.send-request-form__bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.send-request-form__bg-image-ibg {
  min-height: 18.75rem;
  height: 100%;
}

.send-request-form__form-box {
  position: relative;
  z-index: 2;
}

.form-send-request {
  padding: 2.5rem 3rem;
  background-color: #fff;
  max-width: 34.375rem;
}

.form-send-request__title {
  font-size: 3rem;
  line-height: 1.2083333333;
  font-weight: 600;
}

.form-send-request__text {
  line-height: 1.875;
  margin-bottom: 0.5rem;
}

.form-send-request__form {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.form-send-request__form-submit-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-send-request__form-telegram-link {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  font-weight: 500;
}

.form-send-request__form-telegram-link a {
  color: #1876EE;
}

.online-courses-main {
  margin-top: 4.6875rem;
  margin-bottom: 5rem;
}

.online-courses-top-content {
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  max-width: 34.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.online-courses-top-content > :nth-child(1),
.online-courses-top-content :nth-child(2),
.online-courses-top-content :nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.online-courses-top-content__deco-line {
  content: "";
  min-height: calc(100% - 2px);
  width: 0.125rem;
  background-color: #DADBE7;
}

.online-courses-top-content__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.online-courses-top-content__number {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  font-weight: 700;
}

.online-courses-top-content__text {
  color: #6C7CA8;
  line-height: 1.5;
}

.online-courses-bottom-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
}

.online-courses-bottom-content__left {
  position: relative;
  z-index: 2;
  max-width: 34.4375rem;
}

.online-courses-bottom-content__left-subtitle {
  margin-top: 1rem;
  font-size: 1.5rem;
  line-height: 1.625;
}

.online-courses-bottom-content__left-text {
  margin-top: 1rem;
  color: #6C7CA8;
  line-height: 1.5;
}

.online-courses-bottom-content__left-box-links {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  min-height: 14rem;
}

.online-courses-bottom-content__left-link-text {
  position: relative;
  z-index: 2;
}

.online-courses-bottom-content__left-link-icon {
  position: relative;
  z-index: 2;
  font-size: 1rem;
}
.online-courses-bottom-content__left-link{
  height: fit-content;
}

.online-courses-bottom-content__right {
  position: relative;
  z-index: 1;
  width: 30.75rem;
}

.online-courses-bottom-content__right-image-ibg {
  position: absolute;
  top: -5.1875rem;
  right: -14.625rem;
  height: 44.6875rem;
  width: 43.25rem;
}

.online-courses-courses {
  margin-bottom: 8rem;
}

.online-courses-courses__title {
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
}

.online-courses-courses__filter {
  margin-top: 2.5rem;
}

.online-courses-courses__filter-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}

.online-courses-courses__filter-item-btn.active-filter {
  color: #fff;
  background-color: #1876EE;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.online-courses-courses__filter-item-text {
  position: relative;
  z-index: 2;
}

.online-courses-courses__courses-items {
  margin-top: 2rem;
}

.online-courses-courses__link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.online-courses-courses__link {
  margin-top: 2rem;
}

.online-items-courses {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.online-items-courses__item {
  position: relative;
  border: 0.125rem solid #fff;
  border-radius: 0.25rem;
  overflow: hidden;
  padding: 2rem;
  min-height: 10.875rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
          box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
}

.online-items-courses__item.hidden {
  display: none;
}

.online-items-courses__item-box {
  position: relative;
  z-index: 2;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.25rem;
  height: 100%;
}

.online-items-courses__item-title {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  font-weight: 600;
}

.online-items-courses__item-text {
  font-size: 1rem;
  line-height: 1.875;
  word-break: break-all;
}

.online-items-courses__item-bg-hover,
.online-items-courses__item-bg-active {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.online-items-courses__item-bg-hover img,
.online-items-courses__item-bg-active img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.online-courses-news {
  margin-bottom: 8rem;
}

.online-courses-news__slider {
  position: relative;
  margin-top: 2.5rem;
  overflow: unset !important;
}

.online-courses-news__link-box {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news__slider-pagination {
  margin-top: 3.3125rem;
  display: none;
}

.slide-news {
  border: 0.0625rem solid #F3F5FB;
  border-radius: 0 0 0.25rem 0.25rem;
  background-color: #fff;
  -webkit-transition: -webkit-box-shadow 0.3s ease 0s;
  transition: -webkit-box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
}

.slide-news__image-ibg {
  height: 14.5rem;
}

.slide-news__content {
  padding: 1.5rem;
}

.slide-news__title {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 600;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.slide-news__text {
  margin-top: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slide-news__date {
  margin-top: 1rem;
  color: #6C7CA8;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.online-courses-rating {
  /* margin-bottom: 3.125rem; */
  padding: 2rem 0 3rem 0;
  background-color: #F3F5FB;
}

.online-courses-rating__slider {
  position: relative;
  margin-top: 2.5rem;
  overflow: unset !important;
}

.online-courses-rating__slider-pagination {
  margin-top: 3.3125rem;
  display: none;
}

.online-courses-rating__link-box {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slide-rating__box {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.5rem 2rem 2rem 2rem;
  background-color: #FFF;
  min-height: 15rem;
}

.slide-rating__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}

.slide-rating__logo-image-ibg {
  height: 2.5rem;
  width: 2.5rem;
  min-width: 2.5rem;
}

.slide-rating__title {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  font-weight: 600;
}

.slide-rating__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.online-courses-reviews {
  background-color: #1876EE;
  padding-top: 5rem;
  padding-bottom: 3rem;
  overflow: hidden;
}

.online-reviews__slider {
  position: relative;
  overflow: unset !important;
}

.online-reviews__slider-info-box {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.online-reviews__bg {
  position: absolute;
  z-index: 1;
  top: -6.25rem;
  left: -375rem;
  height: 37.5rem;
  width: 400.625rem;
  background-color: #1876EE;
}

.online-reviews__bg-image-ibg {
  position: absolute;
  z-index: 2;
  left: 3.125rem;
  bottom: -18.75rem;
  width: 22.5rem;
  height: 24.375rem;
}

.online-reviews__title {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 600;
}

.online-reviews__link-box {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.online-reviews__link {
  margin-top: 1rem;
}

.online-reviews__btns-box {
  position: relative;
  z-index: 3;
  margin-top: 3.5rem;
  max-width: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.online-reviews__prev {
  height: 2rem;
  width: 2rem;
}

.online-reviews__prev div {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  font-size: 1.625rem;
  color: #fff;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.online-reviews__next {
  height: 2rem;
  width: 2rem;
}

.online-reviews__next div {
  font-size: 1.625rem;
  color: #fff;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.online-reviews__wrapper {
  padding-left: 9.375rem;
}

.online-reviews__pagination {
  position: relative;
  z-index: 10;
  display: none;
  margin-top: 1rem;
}

.online-reviews__pagination .swiper-pagination-bullet {
  background: #fff;
}

.slide-reviews-online {
  background-color: #fff;
  border: 0.125rem solid #F3F5FB;
  border-radius: 0.25rem;
  padding: 2.5rem 2rem;
}

.slide-reviews-online__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.625rem;
}

.slide-reviews-online__star-rating {
  margin-top: 0.5rem;
}

.slide-reviews-online__logo-course-ibg {
  height: 2.5rem;
  width: 2.5rem;
}

.slide-reviews-online__middle {
  margin-top: 2.5rem;
}

.slide-reviews-online__text {
  line-height: 1.6875;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slide-reviews-online__link {
  margin-top: 1rem;
}

.slide-reviews-online__bottom {
  margin-top: 2rem;
  font-weight: 700;
  line-height: 1.875;
}

.slide-reviews-online.swiper-slide-active .slide-reviews-online__text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-content {
  margin-top: 3rem;
  margin-bottom: 5rem;
}

.news-content__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.5rem;
}

.news-content__news-box {
  width: 26.875rem;
  min-width: 26.875rem;
}

.content-news :last-child {
  margin-bottom: unset;
}

.content-news__box-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}

.content-news__date {
  font-size: 1rem;
  line-height: 1.6875;
  font-weight: 500;
  color: #6C7CA8;
}

.content-news__title-h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1666666667;
  margin-bottom: 1rem;
}

.content-news__text-big {
  font-size: 1.125rem;
  line-height: 1.6666666667;
  margin-bottom: 2rem;
}

.content-news__text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.content-news__image-ibg {
  margin-top: 2rem;
  margin-bottom: 2rem;
  height: 32.5rem;
}

.content-news__title-h3 {
  font-size: 1.75rem;
  line-height: 1.1428571429;
  font-weight: 600;
  margin-bottom: 1rem;
}

.content-news__title-h4 {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 1rem;
}

.content-news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.content-news__list li {
  position: relative;
  margin-left: 1.5rem;
}

.content-news__list li a {
  color: #1876EE;
  -webkit-transition: color 0.2s ease 0s;
  transition: color 0.2s ease 0s;
}

.content-news__list li::before {
  position: absolute;
  content: "";
  top: 0.4375rem;
  left: -0.75rem;
  height: 0.1875rem;
  width: 0.1875rem;
  border-radius: 50%;
  background-color: #171719;
}

.content-news__title-h5 {
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 700;
  margin-bottom: 1rem;
}

.box-news__pagination {
  display: none;
  margin-top: 1.5rem;
}

.box-news__wrapper {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

.box-news__image-ibg {
  height: 17.25rem;
}

.box-news__info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: #fff;
  border-bottom: 0.0625rem solid #F3F5FB;
  border-left: 0.0625rem solid #F3F5FB;
  border-right: 0.0625rem solid #F3F5FB;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.box-news__info-title {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 600;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.box-news__info-text {
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.box-news__date {
  color: #6C7CA8;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.news-list {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.news-list__filter {
  margin-bottom: 1.5rem;
}

.news-list__search-sort-box {
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-list__search .search-input__input-box {
  width: 16.25rem;
  padding-left: unset;
  border-bottom: 0.0625rem solid #DADBE7;
}

.news-list__search.search-input.open-search {
  height: 100%;
}

.news-list__page-pagination {
  margin-top: 2.5rem;
}

.list-news {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  row-gap: 1.5rem;
}

.list-news__item {
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.list-news__image-ibg {
  height: 14.5rem;
}

.list-news__item-content {
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  background-color: #fff;
  border-bottom: 0.0625rem solid #F3F5FB;
  border-left: 0.0625rem solid #F3F5FB;
  border-right: 0.0625rem solid #F3F5FB;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.list-news__item-title {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 600;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}

.list-news__item-text {
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.list-news__item-date {
  color: #6C7CA8;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}

.ratings-list {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.ratings-list__filter {
  margin-bottom: 1.5rem;
}

.ratings-list__search-sort-box {
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ratings-list__search .search-input__input-box {
  width: 16.25rem;
  padding-left: unset;
  border-bottom: 0.0625rem solid #DADBE7;
}

.ratings-list__search.search-input.open-search {
  height: 100%;
}

.ratings-list__page-pagination {
  margin-top: 2.5rem;
}

.ratings-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.ratings-news__item {
  padding: 2.5rem 3.75rem;
  background-color: #fff;
  border: 0.0625rem solid #F3F5FB;
  border-radius: 0.25rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.ratings-news__item-top-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 0.625rem;
}

.ratings-news__item-title {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ratings-news__image-ibg {
  height: 2.5rem;
  width: 2.5rem;
}

.ratings-news__item-info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.ratings-news__item-link {
  margin-top: 2rem;
}

.reviews-list {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.reviews-list__content.not-found .reviews-list__list,
.reviews-list__content.not-found .reviews-list__page-pagination,
.courses-list__content.not-found .courses-list__list,
.courses-list__content.not-found .courses-list__page-pagination,
.ratings-list__content.not-found .ratings-list__list,
.ratings-list__content.not-found .ratings-list__page-pagination,
.news-list__content.not-found .news-list__list,
.news-list__content.not-found .news-list__page-pagination{
  display: none;
}

.reviews-list__content.not-found .reviews-list__not-found,
.courses-list__content.not-found .reviews-list__not-found,
.ratings-list__content.not-found .reviews-list__not-found,
.news-list__content.not-found .reviews-list__not-found{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.reviews-list__filter {
  margin-bottom: 1.5rem;
}

.reviews-list__search-sort-box {
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reviews-list__search .search-input__input-box {
  width: 16.25rem;
  padding-left: unset;
  border-bottom: 0.0625rem solid #DADBE7;
}

.reviews-list__search.search-input.open-search {
  height: 100%;
}

.reviews-list__not-found {
  margin-top: 3rem;
  -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;
  display: none;
}

.reviews-list__not-found-image-ibg {
  height: 18.75rem;
  width: 18.75rem;
  margin-bottom: 3rem;
}

.reviews-list__not-found-title {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  max-width: 25rem;
}

.reviews-list__not-found-subtitle {
  text-align: center;
  margin-top: 1rem;
  line-height: 1.875;
  max-width: 25rem;
}

.reviews-list__not-found-link {
  margin-top: 3rem;
}

.reviews-list__page-pagination {
  margin-top: 2.5rem;
}

.list-review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.list-review__item {
  padding: 2.5rem 3.75rem;
  background-color: #fff;
  border: 0.0625rem solid #F3F5FB;
  border-radius: 0.25rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.list-review__item-top-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 0.625rem;
}

.list-review__item-title {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.list-review__image-ibg {
  height: 2.5rem;
  width: 2.5rem;
}

.list-review__item-info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.list-review__item-review-text {
  margin-top: 2.5rem;
  line-height: 1.6875;
}

.list-review__item-link {
  margin-top: 2rem;
}

.swiper {
  overflow: hidden;
}

.swiper-initialized {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

.content-news__body {
  p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  h2 {
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  h3 {
    font-size: 1.75rem;
    line-height: 1.1428571429;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  h4 {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  h5 {
    font-size: 1rem;
    line-height: 1.625;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .875rem;
    margin-bottom: 2rem;
  }
  li {
    position: relative;
    margin-left: 1.5rem;
  }
  li::before {
    position: absolute;
    content: "";
    top: .4375rem;
    left: -.75rem;
    height: .1875rem;
    width: .1875rem;
    border-radius: 50%;
    background-color: #171719;
  }
  ul li {
    list-style: none;
  }
  a {
    color: #1876ee;
  -webkit-transition: color .2s ease 0s;
  transition: color .2s ease 0s;
  }
  img {
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100% !important;
    height: auto !important;
  }
}

.search-results {
  position: absolute;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
}

.search-results a {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s;
}

.search-results a:hover {
  background: #f5f5f5;
}

.filter-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.filter-news__filter-item {
  position: relative;}

.courses-list {
  margin-bottom: 3rem;
}

.courses-list__filter {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.list-courses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.list-courses__filter {
  width: 17.5rem;
  min-width: 17.5rem;
}

.filter-list-courses__popup-close {
  position: absolute;
  display: none;
  font-size: 2rem;
  top: 1.25rem;
  right: 1.4375rem;
}

.filter-list-courses__box {
  border: 0.0625rem solid #F3F5FB;
  background-color: #fff;
  border-radius: 0.25rem;
  padding: 1.5rem;
}

.filter-list-courses__box-filter {
  overflow-y: auto;
}

.filter-list-courses__title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.filter-list-courses__title {
  font-weight: 700;
  line-height: 1.875;
}

.filter-list-courses__clean-btn {
  line-height: 1.5;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.filter-list-courses__title-checkboxs {
  font-size: 0.875rem;
  line-height: 2.1428571429;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
}

.filter-list-courses__checkbox {
  height: 2.5rem;
}

.filter-list-courses__btns-box {
  display: none;
}

.filter-list-courses__btn-cancel {
  color: #1876EE;
}

.filter-list-courses.open-filter {
  left: 0%;
}

.list-courses-list__sort-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.list-courses-list__sort-info {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  font-weight: 600;
}

.list-courses-list__sort-box-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.list-courses-list__filter-btn-popup {
  color: #6C7CA8;
  font-size: 2rem;
  display: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.list-courses-list__pagination {
  margin-top: 2.75rem;
}

.courses-list-elements {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.courses-list-elements__item {
  min-height: 15rem;
  border: 0.0625rem solid #F3F5FB;
  background-color: #fff;
  border-radius: 0.25rem;
  padding: 2rem;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
  height: 100%;
}
.courses-list-elements__item:hover {
  box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.courses-list-elements__name-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.courses-list-elements__image-ibg {
  height: 2.5rem;
  width: 2.5rem;
}

.courses-list-elements__name {
  font-weight: 600;
  white-space: normal;
}

.courses-list-elements__rating {
  margin-top: 1rem;
}

.courses-list-elements__info {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.course-content{
  margin-bottom: 3rem;
}

.course-content__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3rem;
}

.left-content-course {
  width: 100%;
  background-color: #fff;
  border-radius: 0.25rem;
  border: 0.0625rem solid #F3F5FB;
}

.left-content-course__image-ibg {
  height: 28.125rem;
}

.left-content-course__content-box {
  padding: 2rem 2rem 3rem 2rem;
}

.left-content-course__owner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.left-content-course__owner-image-ibg {
  height: 2.5rem;
  width: 2.5rem;
}

.left-content-course__owner-name {
  font-weight: 600;
}

.left-content-course__name-course {
  font-size: 1.75rem;
  line-height: 1.1428571429;
  font-weight: 700;
  margin-bottom: 1rem;
}

.left-content-course__title-description {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.left-content-course__description {
  line-height: 1.625;
}

.right-content-course__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  padding: 3rem 2rem;
  width: 23rem;
  background-color: #fff;
  border-radius: 0.25rem;
  border: 0.0625rem solid #F3F5FB;
  -webkit-box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
          box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
}

.right-content-course__price {
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}

.right-content-course__bottom-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.right-content-course__info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  color: #6C7CA8;
}

.right-content-course__info-tooltip {
  font-size: 1.5rem;
}

.right-content-course__info-tooltip-dropdown {
  color: #171719;
  font-size: 1rem;
  line-height: 1.75;
  padding-right: 1.875rem;
  width: 21.25rem;
}

.right-content-course__info-tooltip-dropdown span {
  font-weight: 600;
}

.similar-courses__title {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  font-weight: 600;
  margin-bottom: 1rem;
}

.courses-similar {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.courses-similar__item {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.875rem;
  background-color: #fff;
  border-radius: 0.25rem;
  border: 0.0625rem solid #F3F5FB;
  padding: 2rem;
  min-height: 15rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.courses-similar__owner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.courses-similar__owner-image-ibg {
  height: 2.5rem;
  width: 2.5rem;
}

.courses-similar__name {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  font-weight: 600;
}

.reviews {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.reviews-content__navigation {
  border: 0.0625rem solid rgba(210, 219, 245, 0.4);
  border-radius: 0.25rem;
  background-color: rgba(96, 111, 151, 0.04);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.reviews-content__title {
  color: #606F97;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.reviews-content__title._tab-active .reviews-content__title-wrapper {
  color: #171719;
  background-color: #fff;
  -webkit-box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04);
          box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04);
}

.reviews-content__title-wrapper {
  margin: 0.125rem;
  padding: 0.625rem 1.5rem;
  border-radius: 0.25rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.reviews-content__content {
  margin-top: 1.5rem;
}

.about-reviews {
  margin-left: -0.875rem;
  margin-right: -0.875rem;
}

.about-reviews__box {
  padding: 2.5rem 2rem;
  background-color: #fff;
  border: 0.0625rem solid #F3F5FB;
  border-radius: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.about-reviews__owner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.about-reviews__image-ibg {
  height: 2.5rem;
  width: 2.5rem;
}

.about-reviews__owner-name {
  font-size: 1.5rem;
  line-height: 0.7619047619;
  font-weight: 600;
}

.about-reviews__description {
  line-height: 1.625;
}

.about-reviews__info-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 5.625rem 1fr;
  grid-template-columns: 5.625rem 1fr;
  gap: 1rem;
}

.about-reviews__info-item {
  line-height: 1.625;
}

.about-reviews__info-item span {
  font-weight: 700;
}

.content-reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.content-reviews__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.review-item {
  padding: 2.5rem 2rem;
  border-radius: 0.25rem;
  background-color: #fff;
  border: 0.0625rem solid #F3F5FB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.review-item__top-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.review-item__name {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  font-weight: 600;
}

.review-item__text {
  line-height: 1.6875;
}

.review-item__reviewer-name {
  line-height: 1.875;
  font-weight: 700;
}

.review-item__date {
  color: #6C7CA8;
  line-height: 1.6875;
}

.form-review {
  padding: 2.5rem 3rem;
  border: 0.0625rem solid #F3F5FB;
  border-radius: 0.25rem;
  background-color: #fff;
}

.form-review__title {
  font-size: 2rem;
  line-height: 1.8125;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-review__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.form-review__rating {
  position: relative;
}

.form-review__rating.error-active .form-review__rating-error {
  display: block;
}

.form-review__rating-label {
  margin-bottom: 0.5rem;
  line-height: 1.875;
}

.form-review__rating-error {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  display: none;
  margin-top: 0.375rem;
  color: #EB5757;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.1428571429;
}

.form-review__input-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.form-review__form-input-review {
  min-width: 100%;
  max-width: 100%;
}

.form-review__form-input-icon-box-review.patdy-form-input__icon-box {
  top: 1.6875rem;
}

.other-schools {
  margin-bottom: 3rem;
}

.other-schools__title {
  font-size: 3rem;
  line-height: 1.2083333333;
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.other-schools__pagination {
  display: none;
}

.other-schools__link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
}

.slide-other-schools__box {
  border-radius: 0.25rem;
  background-color: #F3F5FB;
  padding: 1.5rem 2rem 2rem 2rem;
  min-height: 15rem;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.slide-other-schools__owner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.slide-other-schools__image-ibg {
  height: 2.5rem;
  width: 2.5rem;
  min-height: 2.5rem;
  min-width: 2.5rem;
  max-height: 2.5rem;
  max-width: 2.5rem;
}

.slide-other-schools__owner-name {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  font-weight: 600;
}

.slide-other-schools__bottom-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.slide-other-schools__numbers {
  line-height: 1.5;
}

.swiper {
  overflow: hidden;
}

.swiper-initialized {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

.filter-list-courses__price-range {
  margin-top: 15px;
  padding: 12px;
  /* background: #f8f9fa; */
  /* border-radius: 8px; */
  /* border: 1px solid #e9ecef; */
}

.filter-list-courses__range-inputs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.filter-list-courses__range-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.filter-list-courses__range-input:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.filter-list-courses__range-separator {
  color: #6c757d;
  font-weight: 500;
  min-width: 10px;
  text-align: center;
}

.filter-list-courses__apply-btn {
  width: 100%;
  padding: 8px 16px;
  background: none;
  border: none;
  color: #007bff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-align: center;
}

.filter-list-courses__apply-btn:hover {
  background-color: rgba(0, 123, 255, 0.1);
  color: #0056b3;
}

.filter-list-courses__apply-btn:active {
  background-color: rgba(0, 123, 255, 0.2);
}

/* Стили для чекбокса "Бесплатные" когда активен */
.filter-list-courses__checkbox.active .patdy-form-checkbox__text {
  color: #007bff;
  font-weight: 500;
}
@media (min-width: 47.99875em) {
  .filter-list-courses__range-inputs {
    flex-direction: column;
    gap: 6px;
  }

  .filter-list-courses__range-separator {
    display: none;
  }

  .filter-list-courses__range-input {
    width: 100%;
  }

  .reviews-content__content {
    margin-top: 3.5rem;
  }}

@media (max-width: 75em) {
  .menu__menu-btn {
    display: none;
  }

  .menu__body {
    padding: 6.75rem 5.75rem 4.1875rem 5.75rem;
    position: fixed;
    z-index: 3;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    overflow: auto;
    background-color: #fff;
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .menu-open .menu__body {
    left: 0;
  }

  .menu__list {
    -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: start;
  }

  .menu__profile {
    display: none;
  }

  .menu__solutions {
    display: none;
  }

  .menu__profile-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.375rem;
  }

  .menu__solutions-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.375rem;
  }

  .menu__icon-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    height: 3.125rem;
    width: 3.125rem;
    background-color: #fff;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 1rem;
    height: 0.875rem;
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    border-radius: 2px;
    background-color: #000;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .info-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .course-content {
    margin-bottom: 1.5rem;
  }

  .course-content__content {
    gap: 1.5rem;
  }
}

@media (max-width: 75em) and (max-width: 47.99875em) {
  .menu__body {
    padding: 8rem 2rem 2.5625rem 2rem;
  }
}

@media (max-width: 75em) and (max-width: 29.99875em) {
  .menu__body {
    padding: 5.0625rem 0 1.5rem 0;
  }
}

@media (max-width: 75em) and (any-hover: none) {
  .icon-menu {
    cursor: default;
  }
}

@media (max-width: 40em) {
  .expert-slider__title {
    margin-bottom: 2rem;
  }

  .expert-slider__navigation {
    display: none;
  }
}

@media (max-width: 35em) {
  .features-image__image-ibg {
    margin-left: -0.625rem;
    height: 19.375rem;
    width: 23.4375rem;
  }
}

@media (max-width: 87.5em) {
  .main-features {
    margin-bottom: 2.8125rem;
  }

  .main-features__content-image-pc {
    display: none;
  }

  .main-features__content-image-tablet {
    display: block;
  }

  .main-features__content-features {
    max-width: none;
  }

  .features-image__image-ibg {
    margin-left: unset;
    margin-top: -3.6875rem;
    height: 25.9375rem;
    width: 31.25rem;
  }

  .features-content-main {
    margin-top: 1.875rem;
  }

  .bankcards {
    margin-bottom: 3rem;
  }

  .bankcards__content {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-animation: marquee 120s linear infinite;
            animation: marquee 120s linear infinite;
  }

  .bankcards__item-image-ibg img {
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
    opacity: 0.6;
  }

  .bankcards__item-image-ibg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin: 0 48px;
  }

  .animation-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .online-courses-bottom-content__right-image-ibg {
    top: 0;
    width: 30.1875rem;
    height: 31.25rem;
    right: -6.25rem;
  }
  .online-courses-bottom-content__left-box-links {
    min-height: 4rem;
  }
}

@media (max-width: 81.25em) {
  .desktop-menu__topic-item {
    width: 18.75rem;
  }
}

@media (max-width: 75.0625em) {
  .online-courses-bottom-content__right-image-ibg {
    right: 0;
  }
}

@media (max-width: 71.875em) {
  .online-reviews__slider-info-box {
    position: relative;
  }

  .online-reviews__bg {
    display: none;
  }

  .online-reviews__bg-image-ibg {
    display: none;
  }

  .online-reviews__btns-box {
    margin-bottom: 1rem;
  }

  .online-reviews__wrapper {
    padding-left: unset;
  }
}

@media (max-width: 68.75em) {
  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .online-courses-top-content {
    max-width: unset;
  }

  .online-courses-top-content__item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .online-courses-bottom-content__left {
    margin-top: 3.5rem;
  }

  .news-content__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .news-content__news-box {
    width: unset;
    min-width: unset;
  }

  .box-news__wrapper {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-list-courses {
    position: fixed;
    z-index: 30;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .filter-list-courses__popup-close {
    display: block;
  }

  .filter-list-courses__box {
    padding-top: 8.75rem;
    padding-bottom: 3rem;
    height: 100%;
    width: 100%;
    max-width: 26.25rem;
    border: unset;
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .filter-list-courses__btns-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.125rem;
  }

  .list-courses-list__sort-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }

  .list-courses-list__filter-btn-popup {
    display: block;
  }

  .other-schools__slider {
    margin-left: -3rem;
    margin-right: -3rem;
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

@media (max-width: 68.8125em) {
  .online-courses-bottom-content__right-image-ibg {
    position: relative;
  }
}

@media (max-width: 65.625em) {
  .online-courses-top-content {
    margin-bottom: 2.5rem;
  }

  .online-courses-bottom-content__left {
    min-width: 18.5625rem;
  }

  .online-courses-bottom-content__left-title {
    font-size: 2rem;
    line-height: 1.3125;
    font-weight: 600;
  }

  .online-courses-bottom-content__left-subtitle {
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }

  .online-courses-bottom-content__left-text {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }

  .online-courses-bottom-content__left-box-links {
    display: none;
  }

  .online-courses-bottom-content__right-image-ibg {
    width: 23.3125rem;
    height: 24.1875rem;
  }
}

@media (max-width: 61.99875em) {
  [class*=__container] {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .footer__right {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .footer__double-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .tariffs-prices-pc {
    display: none;
  }

  .tariffs-prices-tablet {
    display: block;
  }

  .course-sales {
    margin-bottom: 3rem;
  }

  .course-sales__content {
    height: unset;
  }

  .course-sales__move-container-pc {
    display: none;
  }

  .course-sales__trigger2 {
    display: none;
  }

  .course-sales__trigger3 {
    display: none;
  }

  .course-sales__move-container-tablet {
    display: block;
  }

  .grid-info {
    margin-bottom: 3rem;
  }

  .info-grid__item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 17.25rem;
    padding: 2rem 1.5rem;
    border: unset;
    -webkit-box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
            box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
  }

  .info-grid__item-top-text {
    text-align: center;
  }

  .info-grid__item-bottom-box {
    width: 100%;
    min-height: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .info-grid__item-bottom-plug {
    display: none;
  }

  .info-grid__item-bottom-title {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }

  .info-grid__item-bottom-text {
    font-size: 0.75rem;
    line-height: 1.6666666667;
  }

  .info-grid__item-bottom-subtitle {
    text-align: center;
  }

  .info-grid__item-top-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .info-grid__item-bottom-grid {
    width: 100%;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .expert-slider {
    margin-bottom: 3rem;
  }

  .expert-slider__title {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    margin-right: 0.625rem;
    margin-left: 0.625rem;
  }

  .expert-slider__slider {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .send-request-form {
    margin-bottom: unset;
  }

  .online-items-courses {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .news__slider-pagination {
    display: block;
  }

  .online-courses-rating__slider-pagination {
    display: block;
  }

  .list-news {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1rem;
  }

  .course-content__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }

  .left-content-course {
    border: unset;
    background-color: unset;
  }

  .left-content-course__image-ibg {
    margin-bottom: 2rem;
  }

  .left-content-course__content-box {
    padding: unset;
  }

  .right-content-course__box {
    width: 100%;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    padding: unset;
    background-color: unset;
    border: unset;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .right-content-course__bottom-box {
    gap: 1rem;
    min-width: 19rem;
  }

  .similar-courses {
    display: none;
  }
}

@media (max-width: 47.99875em) {
  .banner_2 .banner__right-content {
    display: none;
  }

  .banner__left-content {
    max-width: 23.25rem;
  }

  .banner__title {
    font-size: 2rem;
    line-height: 1.3125;
  }

  .banner__image-desktop-ibg {
    display: none;
  }

  .banner__image-mobile-ibg {
    display: block;
  }

  .left-banner-content {
    max-width: unset;
    padding: 2rem;
    margin-top: 0.875rem;
    margin-bottom: 0.875rem;
  }

  .left-banner-content__title {
    font-size: 2rem;
    line-height: 1.3125;
    font-weight: 600;
  }

  .filter-news {
    margin-bottom: 5.5rem;
  }

  .filter-news__courses-items {
    margin-top: 2.5rem;
  }

  .main-features {
    margin-top: 2rem;
  }

  .bankcards__content {
    gap: 0.9375rem;
  }

  .bankcards__item-image-ibg {
    margin: 0 10px;
    width: 5.625rem;
    height: 3.125rem;
  }

  .send-request-form__content {
    padding: 2.9375rem 0rem 2rem 0rem;
  }

  .send-request-form__bg-image-ibg {
    display: none;
  }

  .form-send-request {
    max-width: unset;
  }

  .online-courses-main {
    margin-bottom: 3rem;
    margin-top: 2rem;
  }

  .online-courses-courses {
    margin-bottom: 5.5rem;
  }

  .online-courses-courses__courses-items {
    margin-top: 2.5rem;
  }

  .online-items-courses {
    gap: 0.625rem;
  }

  .online-courses-news {
    margin-bottom: 5.5rem;
  }

  .online-courses-rating {
    /* margin-bottom: 2.5rem; */
  }

  .news-content {
    margin-bottom: 3rem;
  }

  .content-news__image-ibg {
    height: 27.25rem;
  }

  .box-news__wrapper {
    gap: 1rem;
  }

  .box-news__image-ibg {
    height: 14.5rem;
  }

  .news-list__filter {
    margin-bottom: 2rem;
  }

  .ratings-list__filter {
    margin-bottom: 2rem;
  }

  .reviews-list__filter {
    margin-bottom: 2rem;
  }

  .content-reviews {
    gap: 1rem;
  }

  .content-reviews__box {
    gap: 1rem;
  }

  .other-schools__title {
    font-size: 2rem;
    line-height: 1.3125;
  }
}

@media (max-width: 46.25em) {
  .breadcrumbs__btn {
    display: none;
  }

  .breadcrumbs__crumbs-box > :last-child {
    max-width: 7.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .breadcrumbs__crumbs-box a {
    font-size: 0.75rem;
    line-height: 1.6666666667;
  }

  .breadcrumbs-bg__btn {
    display: none;
  }

  .breadcrumbs-bg__crumbs-box > :last-child {
    max-width: 7.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .breadcrumbs-bg__crumbs-box a {
    font-size: 0.75rem;
    line-height: 1.6666666667;
  }
}

@media (max-width: 45.625em) {
  .online-courses-bottom-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: unset;
  }

  .online-courses-bottom-content__left {
    margin-top: -1.875rem;
  }

  .online-courses-bottom-content__right {
    width: unset;
  }

  .online-courses-bottom-content__right-image-ibg {
    position: relative;
    left: -0.3125rem;
  }

  .form-review__input-box {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 44.9375em) {
  .features-content-main {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 44.375em) {
  .courses-list-elements {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 43.125em) {
  .news__slider-pagination {
    margin-top: 2.125rem;
  }

  .online-courses-rating__slider-pagination {
    margin-top: 2.125rem;
  }
}

@media (max-width: 43.75em) {
  .ratings-news__image-ibg {
    display: none;
  }

  .list-review__image-ibg {
    display: none;
  }
}

@media (max-width: 41.25em) {
  .search-input {
    z-index: 6;
    width: 100%;
    top: 0;
    left: 0%;
    background-color: #fbfcfe;
  }

  .search-input.open-search {
    position: fixed;
  }

  .search-input.open-search .search-input__top-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .search-input.open-search .search-input__icon-open {
    display: none;
  }

  .search-input__top-box {
    display: none;
  }

  .search-input__icon-open {
    display: block;
  }

  .search-input__icon-close {
    display: block;
  }

  .search-input__input-box {
    width: 100%;
  }

  .search-input__input {
    background-color: #fbfcfe;
  }

  .search-input__found-box {
    position: relative;
    background-color: #fbfcfe;
  }

  .sort-select__sort-icon {
    display: block;
  }

  .sort-select__dropdown {
    display: none;
    position: fixed;
    z-index: 30;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #FBFCFE;
  }

  .sort-select__dropdown .sort-select__dropdown-list {
    display: block;
    position: relative;
    top: unset;
    right: unset;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    padding-left: 2.125rem;
    padding-right: 2.125rem;
  }

  .sort-select__dropdown-header :nth-child(2) {
    color: unset;
  }

  .sort-select__dropdown-header {
    padding: 0.75rem 0.875rem;
    line-height: 2;
    font-weight: 600;
  }

  .sort-select__sort-close-icon {
    display: block;
  }

  .sort-select__icon-arrow {
    display: none;
  }

  .sort-select__dropdown-item-icon {
    color: unset;
  }

  .form-select__sort-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .form-select__sort-icon {
    display: block;
  }

  .form-select__dropdown {
    display: none;
    position: fixed;
    z-index: 30;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #FBFCFE;
  }

  .form-select__dropdown .form-select__dropdown-list {
    display: block;
    position: relative;
    top: unset;
    right: unset;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    padding-left: 2.125rem;
    padding-right: 2.125rem;
  }

  .form-select__dropdown-header {
    padding: 0.75rem 0.875rem;
    line-height: 2;
    font-weight: 600;
  }

  .form-select__sort-close-icon {
    display: block;
  }

  .form-select__icon-arrow {
    display: none;
  }

  .form-select__dropdown-item-icon {
    color: unset;
  }

  .list-news {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }

  .ratings-news__item {
    padding: 2rem;
  }

  .list-review__item {
    padding: 2rem;
  }
}

@media (max-width: 40.625em) {
  .tablet-course-sales__card-box {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }

  .form-send-request {
    padding: unset;
  }
}

@media (max-width: 39.375em) {
  .tariffs-prices-tablet__container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 38.125em) {
  .online-courses-top-content {
    padding: 0 2.125rem;
  }

  .online-courses-top-content__deco-line {
    display: none;
  }

  .online-courses-top-content__item {
    display: none;
  }
}

@media (max-width: 37.5em) {
  .left-banner-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }

  .box-news__pagination {
    display: block;
  }

  .box-news__wrapper {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-grid-columns: unset;
    grid-template-columns: unset;
    gap: unset;
  }

  .right-content-course__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 36.875em) {
  .footer__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 36.25em) {
  .info-grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }

  .info-grid__item {
    min-height: 13.125rem;
  }

  .info-grid__item_mobile {
    display: none;
  }

  .info-grid__item-bottom-title_mobile {
    display: block;
  }

  .info-grid__item-bottom-text {
    text-align: center;
  }

  .info-grid__item-bottom-text_border {
    text-align: start;
  }

  .info-grid__item-bottom-subtitle_mobile {
    display: block;
  }
}

@media (max-width: 34.375em) {
  .online-items-courses {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5rem;
  }
}

@media (max-width: 31.875em) {
  .expert-slider__slide-image-ibg {
    height: 18.75rem;
  }

  .expert-slider__slide-min-image {
    height: 18.75rem;
  }
}

@media (max-width: 29.99875em) {
  [class*=__container] {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .news-internal-page-container {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .news-page-container {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .rating-page-container {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .reviews-page-container {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .courses-page-container {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .course-page-container {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .reviews-page2-container {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  .breadcrumbs {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .breadcrumbs-bg {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .banner__content {
    min-height: 9.75rem;
  }

  .banner__info {
    display: none;
  }

  .banner__right-content {
    display: none;
  }

  .left-banner-content {
    padding: 1.5rem;
  }

  .filter-news {
    margin-bottom: 3rem;
  }

  .filter-news__container {
    padding: 0 0;
  }

  .filter-news__title {
    text-align: center;
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 700;
  }

  .filter-news__filter {
    margin-top: 1.5rem;
  }

  .filter-news__filter-wrapper {
    gap: 0.625rem;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .filter-news__filter-wrapper::-webkit-scrollbar {
    display: none;
  }

  .filter-news__filter-wrapper > :first-child {
    margin-left: 0.875rem;
  }

  .filter-news__filter-wrapper > :last-child {
    margin-right: 0.875rem;
  }

  .filter-news__courses-items {
    margin-top: 1rem;
  }

  .tooltip__dropdown {
    max-width: 20rem;
  }

  .menu__body-bottom-box {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .menu__profile-mobile {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .main-features {
    margin-top: 1rem;
  }

  .main-features__container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .features-image__image-ibg {
    margin-left: -0.625rem;
    margin-top: -2rem;
    height: 15rem;
    width: 18.0625rem;
  }

  .content-features-main {
    gap: 3rem;
  }

  .content-features-main__sub-title {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }

  .content-features-main__title {
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1.3636363636;
  }

  .content-features-main__btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 3rem;
  }

  .content-features-main__btn {
    margin-left: 0.375rem;
    margin-right: 0.375rem;
  }

  .features-content-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .features-content-main__left {
    min-width: unset;
  }

  .features-content-main__item-icon {
    margin-right: 1.25rem;
  }

  .features-content-main__item-text {
    line-height: 1.5;
  }

  .features-content-main__right {
    min-width: unset;
  }

  .tariffs-prices-tablet__content {
    padding: 3rem 1rem;
  }

  .tablet-course-sales__card-box {
    gap: 0.625rem;
  }

  .tablet-course-sales__card {
    height: 10.75rem;
  }

  .tablet-course-sales__card-subtitle {
    max-width: 13.6875rem;
  }

  .info-grid {
    gap: 0.625rem;
  }

  .info-grid__item {
    padding: 2rem 1rem;
  }

  .expert-slider__slider {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .expert-slider__slide-info-box {
    padding: 1rem 0.625rem 0rem 0.625rem;
  }

  .send-request-form__container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .form-send-request__title {
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }

  .form-send-request__text {
    font-size: 0.875rem;
    line-height: 1.5714285714;
  }

  .form-send-request__form-submit-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }

  .form-send-request__form-submit-btn {
    width: 100%;
  }

  .form-send-request__form-pdp-error {
    text-align: center;
  }

  .online-courses-main {
    margin-top: 1rem;
  }

  .online-courses-top-content {
    padding: 0 1.5rem;
  }

  .online-courses-bottom-content__left-title {
    text-align: center;
    font-size: 1.875rem;
    line-height: 1.2;
  }

  .online-courses-bottom-content__left-subtitle {
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
  }

  .online-courses-bottom-content__left-text {
    text-align: center;
  }

  .online-courses-courses {
    margin-bottom: 3rem;
  }

  .online-courses-courses__container {
    padding: 0 0;
  }

  .online-courses-courses__title {
    text-align: center;
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 700;
  }

  .online-courses-courses__filter {
    margin-top: 1.5rem;
  }

  .online-courses-courses__filter-wrapper {
    gap: 0.625rem;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .online-courses-courses__filter-wrapper::-webkit-scrollbar {
    display: none;
  }

  .online-courses-courses__filter-wrapper > :first-child {
    margin-left: 0.875rem;
  }

  .online-courses-courses__filter-wrapper > :last-child {
    margin-right: 0.875rem;
  }

  .online-courses-courses__courses-items {
    margin-top: 1rem;
  }

  .online-courses-news {
    margin-bottom: 3rem;
  }

  .online-courses-news__title {
    text-align: center;
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 700;
  }

  .slide-news__text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5714285714;
  }

  .online-courses-rating {
    /* margin-bottom: 3rem; */
  }

  .online-courses-rating__title {
    text-align: center;
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 700;
  }

  .online-reviews__pagination {
    display: block;
  }

  .slide-reviews-online.swiper-slide-active .slide-reviews-online__text {
    -webkit-line-clamp: 2;
  }

  .news-content {
    margin-top: 1rem;
    margin-bottom: 2rem;
  }

  .content-news__date {
    font-size: 0.875rem;
  }

  .content-news__share-btn .share-btn__text {
    display: none;
  }

  .content-news__title-h1 {
    font-size: 2rem;
    line-height: 1.3125;
  }

  .content-news__text-big {
    font-size: 1rem;
    line-height: 1.5;
  }

  .content-news__image-ibg {
    height: 11.75rem;
  }

  .content-news__title-h3 {
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }

  .news-list {
    margin-top: 1.5rem;
  }

  .news-list__filter {
    margin-bottom: 1.5rem;
  }

  .news-list__search-sort-box {
    margin-bottom: 0.75rem;
  }

  .ratings-list {
    margin-top: 1.5rem;
  }

  .ratings-list__filter {
    margin-bottom: 1.5rem;
  }

  .ratings-list__search-sort-box {
    margin-bottom: 0.75rem;
  }

  .ratings-news {
    gap: 0.625rem;
  }

  .reviews-list {
    margin-top: 1.5rem;
  }

  .reviews-list__filter {
    margin-bottom: 1.5rem;
  }

  .reviews-list__search-sort-box {
    margin-bottom: 0.75rem;
  }

  .reviews-list__not-found-image-ibg {
    height: 12.5rem;
    width: 12.5rem;
  }

  .list-review {
    gap: 0.625rem;
  }

  .list-review__item-review-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .courses-list {
    margin-bottom: unset;
  }

  .courses-list__filter {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .filter-list-courses__box {
    padding: 4.5rem 0.875rem 1.5rem 0.875rem;
  }

  .list-courses-list__pagination {
    margin-top: 2.5rem;
  }

  .courses-list-elements__item {
    padding: 1.5rem;
  }

  .courses-list-elements__info {
    -webkit-line-clamp: 3;
    font-size: 1.375rem;
  }

  .left-content-course__image-ibg {
    height: 12.8125rem;
  }

  .right-content-course__price {
    text-align: start;
  }

  .right-content-course__bottom-box {
    min-width: unset;
  }

  .reviews {
    margin-top: 1rem;
  }

  .reviews-content__content {
    margin-top: 2.5rem;
  }

  .about-reviews__box {
    padding: 1.5rem 0.875rem 2rem 0.875rem;
  }

  .about-reviews__info-box {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: unset;
  }

  .about-reviews__info-box :not(:last-child) {
    margin-bottom: 1rem;
  }

  .about-reviews__info-box :not(:last-child):has(span) {
    margin-bottom: 0.5rem;
  }

  .content-reviews__box {
    margin-left: -0.875rem;
    margin-right: -0.875rem;
  }

  .review-item {
    padding: 2.5rem 0.875rem;
  }

  .form-review {
    margin-left: -0.875rem;
    margin-right: -0.875rem;
    padding: 2.5rem 0.875rem;
  }

  .form-review__title {
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }

  .other-schools__title {
    text-align: center;
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 700;
  }

  .other-schools__pagination {
    display: block;
    margin-top: 0.625rem;
  }
}

@media (max-width: 25.0625em) {
  .online-courses-bottom-content__right-image-ibg {
    width: 18.9375rem;
    height: 19.375rem;
  }
}

@media (max-width: 23.125em) {
  .expert-slider__slide-image-ibg {
    height: 12.5rem;
  }

  .expert-slider__slide-min-image {
    height: 12.5rem;
  }
}

@media (any-hover: hover) {
  .animated-button:hover {
    background-color: rgba(24, 118, 238, 0.8);
  }

  .animated-button:hover .animated-button__animated-item {
    top: -24px;
    right: -20px;
  }

  .patdy-form-input__icon-box:hover {
    background-color: rgba(96, 111, 151, 0.7058823529);
  }

  .search-input__icon-clear-box:hover {
    background-color: rgba(96, 111, 151, 0.7058823529);
  }

  .search-input__found-box ul li:hover {
    background-color: #F3F5FB;
  }

  .search-input__found-box ul li:hover a {
    color: #1876EE;
  }

  .patdy-form-checkbox:hover .patdy-form-checkbox__custom {
    border: 0.0625rem solid #1876ee;
  }

  .patdy-form-checkbox__text a:hover {
    text-decoration: underline;
  }

  .patdy-form-btn:hover {
    background-color: rgba(24, 118, 238, 0.8);
  }

  .gradient-btn:hover .gradient-btn__bg-hover {
    opacity: 1;
  }

  .gradient-btn:active .gradient-btn__bg-active {
    opacity: 1;
  }

  .link-btn:hover .link-btn__text,
  .link-btn:hover .link-btn__icon {
    color: rgba(24, 118, 238, 0.8);
  }

  .link-btn:active .link-btn__text,
  .link-btn:active .link-btn__icon {
    color: #0564DD;
  }

  .main-btn:hover {
    background-color: rgba(24, 118, 238, 0.8);
  }

  .main-btn:active {
    background-color: #0564DD;
  }

  .breadcrumbs__btn:hover {
    opacity: 0.5;
  }

  .breadcrumbs__crumbs-box a:hover {
    opacity: 0.5;
  }

  .breadcrumbs-bg__btn:hover {
    opacity: 0.5;
  }

  .breadcrumbs-bg__crumbs-box a:hover {
    opacity: 0.5;
  }

  .share-btn:hover .share-btn__text,
  .share-btn:hover .share-btn__icon {
    color: rgba(24, 118, 238, 0.8);
  }

  .share-btn:active .share-btn__text,
  .share-btn:active .share-btn__icon {
    color: #0564DD;
  }

  .filter-news__filter-item-btn.active-filter:hover {
    color: #171719;
    background-color: #fff;
  }

  .pagination-page__nuber-page:hover {
    color: #1876EE;
  }

  .pagination-page__previous-btn:hover,
  .pagination-page__next-btn:hover {
    opacity: 0.6;
  }

  .sort-select__dropdown-header:hover {
    opacity: 0.8;
  }

  .sort-select__dropdown-item:hover {
    background-color: #F3F5FB;
  }

  .form-select__dropdown-header:hover {
    opacity: 0.8;
  }

  .form-select__dropdown-item:hover {
    background-color: #F3F5FB;
  }

  .tooltip:hover .tooltip__dropdown {
    display: block;
  }

  .menu__menu-btn:hover {
    color: rgba(24, 118, 238, 0.8);
  }

  .menu__menu-btn:active {
    color: #0564DD;
  }

  .menu__profile:hover {
    color: #1876EE;
  }

  .desktop-menu__topic-item.active-section:hover {
    color: #171719;
    background-color: #F3F5FB;
  }

  .desktop-menu__topic-item:hover {
    color: #1876EE;
    background-color: #eff2fa;
  }

  .desktop-menu__lesson-item:hover {
    color: #1876EE;
    background-color: #F3F5FB;
  }

  .footer__column-link:hover {
    color: rgba(23, 23, 25, 0.4509803922);
  }

  .tabs-tariffs-prices__title:hover {
    color: #171719;
  }

  .tabs-slider__thumb:active {
    cursor: -webkit-grab;
    cursor: grab;
  }

  .tabs-slider__mark:hover {
    background-color: #DADBE7;
  }

  .info-grid__item:hover {
    border: 0.125rem solid #fff;
    -webkit-box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
            box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
  }

  .online-courses-courses__filter-item-btn.active-filter:hover {
    color: #171719;
    background-color: #fff;
  }

  .online-items-courses__item:hover .online-items-courses__item-bg-hover {
    opacity: 1;
  }

  .online-items-courses__item:active .online-items-courses__item-bg-active {
    opacity: 1;
  }

  .slide-news:hover {
    -webkit-box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
            box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
  }

  .slide-news:hover .slide-news__title {
    color: #1876EE;
  }

  .online-reviews__prev div:hover {
    color: rgba(255, 255, 255, 0.5764705882);
  }

  .online-reviews__next div:hover {
    color: rgba(255, 255, 255, 0.5764705882);
  }

  .content-news__list li a:hover {
    color: rgba(24, 118, 238, 0.8);
  }

  .content-news__list li a:active {
    color: #0564DD;
  }

  .box-news__info-title:hover {
    opacity: 0.5;
  }

  .list-news__item:hover {
    -webkit-box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
            box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
  }

  .list-news__item:hover .list-news__item-title {
    color: #1876EE;
  }

  .ratings-news__item:hover {
    -webkit-box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
            box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
  }

  .list-review__item:hover {
    -webkit-box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
            box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
  }

  .filter-list-courses__clean-btn:hover {
    color: #1876EE;
  }

  .filter-list-courses__clean-btn:active {
    color: #0564DD;
  }

  .courses-similar__item:hover {
    -webkit-box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
            box-shadow: 0 0 24px 0 rgba(12, 65, 133, 0.04), 0 1px 1px 0 rgba(41, 47, 65, 0.04), 0 3px 3px 0 rgba(42, 51, 73, 0.04), 0 6px 6px 0 rgba(41, 45, 63, 0.04), 0 12px 12px 0 rgba(15, 73, 128, 0.04), 0 24px 24px 0 rgba(8, 61, 140, 0.04);
  }

  .reviews-content__title:hover {
    color: #171719;
  }
}