.button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #d0d5dd;
    padding: 11px;
    border-radius: 8px;
    line-height: 1.25em;
    background: white;
    font-family: "Inter";
    text-align: center;
    gap: 6px;
    text-decoration: none;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.button:hover {
    background: #f2f4f7;
}

.button.bg {
    background: #181818;
    color: #fff;
    border-color: #181818;
}

.button.bg:hover {
    background: #101828;
}

.button.bg:disabled {
    border-color: #f2f4f7;
    background: #f2f4f7;
    color: #98a2b3;
}

.button.bordless {
    border: none;
}

.button.fullwidth {
    width: 100%;
}

.button__text {
    pointer-events: none;
}

.button .icon {
    vertical-align: text-top;
    background-size: cover;
    display: inline-block;
    background-position: center center;
    background-repeat: no-repeat;
}

.button-icon-right .button__text {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.button .icon.icon-arrow-right {
    background-image: url("../images/icons/ico-arrow-right-grey.svg");
}

.button .icon.icon-arrow-right-white {
    background-image: url("../images/icons/ico-arrow-right-white.svg");
}

.button .icon.icon-burger {
    background-image: url("../images/icons/ico-burger-menu.svg");
}

.button .icon.icon-search {
    background-image: url("../images/icons/ico-search.svg");
}

.button .icon.icon-notification {
    background-image: url("../images/icons/ico-bell-white.svg");
}

.button .icon.icon-notification-grey {
    background-image: url("../images/icons/ico-notification-bell.svg");
}

.button .icon.icon-menu {
    background-image: url("../images/icons/ico-dots-menu.svg");
}

.button .icon.icon-arrow-back {
    background-image: url("../images/icons/ico-arrow-left.svg");
}

.button .icon.icon-arrow-next {
    background-image: url("../images/icons/ico-arrow-right-black.svg");
}

.button .icon.icon-arrow-prev {
    background-image: url("../images/icons/ico-arrow-left-black.svg");
}

.button .icon.icon-add {
    background-image: url("../images/icons/ico-plus-circle.svg");
}

.button .icon.icon-plus {
    background-image: url("../images/icons/ico-plus-grey.svg");
}

.button .icon.icon-favorite-grey {
    background-image: url("../images/icons/ico-favorite-grey.svg");
}

.button .icon.icon-share-grey {
    background-image: url("../images/icons/ico-share-grey.svg");
}

.button .icon.icon-alert {
    background-image: url("../images/icons/ico-alert.svg");
}

.button .icon.icon-bell-white {
    background-image: url("../images/icons/ico-bell-white.svg");
}

.button .icon.icon-like {
    background-image: url("../images/icons/ico-like.svg");
}

.button .icon.icon-dislike {
    background-image: url("../images/icons/ico-dislike.svg");
}

.button .icon.icon-telegram {
    background-image: url("../images/icons/ico-telegram.svg");
}

.button .icon.icon-user {
    background-image: url("../images/icons/ico-user.svg");
}

.button .icon.icon-favorite {
    background-image: url("../images/icons/ico-favorite.svg");
}

.button .icon.icon-education {
    background-image: url("../images/icons/ico-education.svg");
}

.button .icon.icon-messages {
    background-image: url("../images/icons/ico-dms.svg");
}

.button .icon.icon-reviews {
    background-image: url("../images/icons/ico-tag-star.svg");
}

.button .icon.icon-history {
    background-image: url("../images/icons/ico-clock-rewind.svg");
}

.button .icon.icon-trainer {
    background-image: url("../images/icons/ico-teacher.svg");
}

.button .icon.icon-support {
    background-image: url("../images/icons/ico-help-circle.svg");
}

.button .icon.icon-settings {
    background-image: url("../images/icons/ico-settings.svg");
}

.button .icon.icon-log-out {
    background-image: url("../images/icons/ico-logout-red.svg");
}

.button .icon.icon-mail {
    background-image: url("../images/icons/ico-mail.svg");
}

.button .icon.icon-authors {
    background-image: url("../images/icons/ico-authors.svg");
}

.button .icon.icon-message-status {
    background-image: url("../images/icons/ico-message-status.svg");
}

.button .icon.icon-credit-card {
    background-image: url("../images/icons/ico-credit-card.svg");
}

.button .icon.icon-diamond {
    background-image: url("../images/icons/ico-diamond.svg");
}

.button .icon.icon-message-send {
    background-image: url("../images/icons/ico-message-send.svg");
}

.button .icon.icon-paperclip {
    background-image: url("../images/icons/ico-paperclip.svg");
}

.button .icon.icon-smile {
    background-image: url("../images/icons/ico-smile.svg");
}

.button .icon.icon-dropdown {
    background-image: url("../images/icons/ico-arrow-down.svg");
}

.button .icon.icon-report {
    background-image: url("../images/icons/ico-report-red.svg");
}

.button .icon.icon-file {
    background-image: url("../images/icons/ico-file-upload.svg");
}

@font-face {
    font-family: "iconmoon";
  src: url("../fonts/icomoon/fonts/icomoon.eot");
  src: url("../fonts/icomoon/fonts/icomoon.eot?#iefix") format("embedded-opentype"), url("../fonts/icomoon/fonts/icomoon.woff") format("woff"), url("../fonts/icomoon/fonts/icomoon.ttf") format("truetype"), url("../fonts/icomoon/fonts/icomoon.svg#MyIcons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow-x: hidden;
    font-family: "Inter";
    font-weight: 500;
    color: #181818;
}

.container {
    max-width: 1280px;
    padding: 0 20px;
    margin: 0 auto;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

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

button {
    font-family: "Inter";
}

button:hover {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: #181818;
}

.swiper-wrapper.main__first-slider {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -40px !important;
    z-index: 4;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 40px;
    height: 6px;
    border-radius: 3px;
    background: #181818;
}

.swiper-button-prev {
    left: -24px !important;
}

.swiper-button-next,
.swiper-button-prev {
    -webkit-transform: translateY(-60%);
    -ms-transform: translateY(-60%);
    transform: translateY(-60%);
    right: -24px !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    background: #181818;
    z-index: 4;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 14px !important;
    color: #fff;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #101828;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 24, 24, 0.6);
    z-index: 6;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-modal {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
}

.mobile-modal.open {
    opacity: 1;
    visibility: visible;
}

.dropdownContainer {
    position: absolute;
    left: 0;
    padding-top: 8px;
    overflow: hidden;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.dropdownContainer.open {
    opacity: 1;
    visibility: visible;
}

.dropdownContainer--notify {
    left: auto;
    right: 0;
}

.dropdownContent {
    border: solid 1px #d0d5dd;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.pc-only {
    display: block;
}

.mb-only {
    display: none;
}

@media screen and (max-width: 460px) {
    .container {
        padding: 0 16px;
    }

    .pc-only {
        display: none !important;
    }

    .mb-only {
        display: block;
    }
}

.label {
    width: 100%;
    display: block;
}

.input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    width: 100%;
    background: transparent;
}

.label .input-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    padding: 8px;
}

.label .input-wrap:hover {
    -webkit-box-shadow: 0px 0px 0px 4px rgb(242, 244, 247);
    box-shadow: 0px 0px 0px 4px rgb(242, 244, 247);
}

.label .input-wrap.error {
    border-color: #f97066;
}

.label .input-wrap.error .text {
    color: #fda29b;
}

.label .input-wrap .status-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    min-width: 16px;
}

.label .input-wrap .success {
    background: url("../images/icons/ico-success.svg") center center no-repeat;
}

.label .input-wrap .error {
    background: url("../images/icons/ico-error.svg") center center no-repeat;
    background-size: cover;
}

.label .input::-webkit-input-placeholder {
    color: #98a2b3;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
}

.label .input::-moz-placeholder {
    color: #98a2b3;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
}

.label .input:-ms-input-placeholder {
    color: #98a2b3;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
}

.label .input::-ms-input-placeholder {
    color: #98a2b3;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
}

.label .input::placeholder {
    color: #98a2b3;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
}

.label.iconed {
    width: 100%;
}

.label.iconed .input {
    margin: 0 8px;
    width: 100%;
}

.label .input-reset {
    display: none;
    min-width: 20px;
    height: 20px;
    background: url("../images/icons/ico-x-close.svg") center center no-repeat;
    border: none;
    outline: none;
    padding: 0;
}

.label .input-reset.show {
    display: inline-block;
}

.label .error-message {
    margin: 6px 0 0;
    padding-left: 16px;
    color: #f04438;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4285714286em;
    position: relative;
}

.label .error-message:before {
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    left: 0;
    top: 9px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url("../images/icons/ico-error.svg") center center no-repeat;
}

.icon-envelop {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: url("../images/icons/ico-envelop.svg") center center no-repeat;
}

.icon-lock {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: url("../images/icons/ico-lock.svg") center center no-repeat;
}

.icon-eye {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: url("../images/icons/ico-eye-off.svg") center center no-repeat;
    background-size: contain;
    margin-left: 6px;
}

.icon-eye:hover {
    cursor: pointer;
}

.icon-eye.lock {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: url("../images/icons/ico-eye.svg") center center no-repeat;
    background-size: contain;
}

.icon-user {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: url("../images/icons/ico-user.svg") center center no-repeat;
}

.icon-clock {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: url("../images/icons/ico-clock-grey.svg") center center no-repeat;
}

.icon.icon-arrow-right {
    background-image: url("../images/icons/ico-arrow-right-grey.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-arrow-right-white {
    background-image: url("../images/icons/ico-arrow-right-white.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-burger {
    background-image: url("../images/icons/ico-burger-menu.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-search {
    background-image: url("../images/icons/ico-search.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-notification {
    background-image: url("../images/icons/ico-bell-white.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-notification-grey {
    background-image: url("../images/icons/ico-notification-bell.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-menu {
    background-image: url("../images/icons/ico-dots-menu.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-arrow-back {
    background-image: url("../images/icons/ico-arrow-left.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-arrow-next {
    background-image: url("../images/icons/ico-arrow-right-black.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-arrow-prev {
    background-image: url("../images/icons/ico-arrow-left-black.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-add {
    background-image: url("../images/icons/ico-plus-circle.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-plus {
    background-image: url("../images/icons/ico-plus-grey.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-favorite-grey {
    background-image: url("../images/icons/ico-favorite-grey.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-share-grey {
    background-image: url("../images/icons/ico-share-grey.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-alert {
    background-image: url("../images/icons/ico-alert.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-bell-white {
    background-image: url("../images/icons/ico-bell-white.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-like {
    background-image: url("../images/icons/ico-like.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-dislike {
    background-image: url("../images/icons/ico-dislike.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-telegram {
    background-image: url("../images/icons/ico-telegram.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-user {
    background-image: url("../images/icons/ico-user.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-favorite {
    background-image: url("../images/icons/ico-favorite.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-education {
    background-image: url("../images/icons/ico-education.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-messages {
    background-image: url("../images/icons/ico-dms.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-reviews {
    background-image: url("../images/icons/ico-tag-star.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-history {
    background-image: url("../images/icons/ico-clock-rewind.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-trainer {
    background-image: url("../images/icons/ico-teacher.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-support {
    background-image: url("../images/icons/ico-help-circle.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-settings {
    background-image: url("../images/icons/ico-settings.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-log-out {
    background-image: url("../images/icons/ico-logout-red.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-mail {
    background-image: url("../images/icons/ico-mail.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-authors {
    background-image: url("../images/icons/ico-authors.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-message-status {
    background-image: url("../images/icons/ico-message-status.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-credit-card {
    background-image: url("../images/icons/ico-credit-card.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-diamond {
    background-image: url("../images/icons/ico-diamond.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-message-send {
    background-image: url("../images/icons/ico-message-send.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-paperclip {
    background-image: url("../images/icons/ico-paperclip.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-smile {
    background-image: url("../images/icons/ico-smile.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-dropdown {
    background-image: url("../images/icons/ico-arrow-down.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-report {
    background-image: url("../images/icons/ico-report-red.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.icon.icon-file {
    background-image: url("../images/icons/ico-file-upload.svg");
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-position: center center;
    background-repeat: no-repeat;
}

.link {
    text-decoration: none;
    color: #667085;
}

.link:hover {
    color: #344054;
}

.link.color {
    color: #d92d20;
}

.link.color:hover {
    color: #b42318;
}

.icon-arrow-left:before {
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
    background: url("../images/icons/ico-arrow-right-grey.svg") center center no-repeat;
    margin-right: 8px;
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.icon-arrow-prev, .icon-arrow-next {
    display: inline-block;
    width: 36px;
    height: 36px;
}

.icon-arrow-prev {
    background: url("../images/icons/ico-arrow-prev.svg") center center no-repeat;
}

.icon-arrow-next {
    background: url("../images/icons/ico-arrow-prev.svg") center center no-repeat;
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.header-catalog__list {
    list-style: none;
    padding: 0;
    width: 296px;
}

.header-catalog__item {
    margin-bottom: 8px;
}

.header-catalog__item:last-child {
    margin-bottom: 0;
}

.header-catalog__item:first-child > a {
    padding-top: 20px;
}

.header-catalog__item:first-child > a:before {
    top: 22px;
}

.header-catalog__link {
    display: block;
    position: relative;
    margin-bottom: 20px;
    padding: 12px 22px 12px 56px;
}

.header-catalog__link:last-child {
    margin-bottom: 0;
}

.header-catalog__link:hover {
    background: #f2f4f7;
}

.header-catalog__link:before {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    top: 12px;
    left: 20px;
}

.header-catalog__link.camera:before {
    background: url("../images/icons/ico-recorder.svg") center center no-repeat;
}

.header-catalog__link.article:before {
    background: url("../images/icons/ico-file.svg") center center no-repeat;
}

.header-catalog__link.users:before {
    background: url("../images/icons/ico-users.svg") center center no-repeat;
}

.header-catalog__title {
    margin: 0;
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 1.5em;
}

.header-catalog__descr {
    margin: 0;
    color: #667085;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4285714286em;
}

.dropdownContent--category {
    max-width: 900px;
    width: 100%;
    padding: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
}

.header-category__title {
    width: 280px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4285714286em;
}

.header-category__list {
    width: 280px;
    position: relative;
}

.header-category__link {
    display: block;
    padding: 12px;
    color: #667085;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    position: relative;
}

.header-category__link:hover {
    background: #f2f4f7;
}

.header-category-link {
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    width: 165px;
    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;
    gap: 8px;
    padding: 12px 30px;
    font-size: 16px;
    line-height: 1.5em;
    color: #344054;
}

.header-category-link:hover {
    cursor: pointer;
    background: #f2f4f7;
}

@media screen and (max-width: 678px) {
    .dropdownContent--category {
        padding: 0;
        display: block;
    }

    .header-category__wrapper:last-child {
        margin-top: 24px;
    }

    .header-category__title {
        font-size: 18px;
        line-height: 1.5555555556em;
        margin-bottom: 12px;
    }

    .header-category__link {
        padding: 12px 0;
    }
}

.dropdown {
    width: 100%;
    padding-top: 8px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.dropdown__container {
    border-radius: 12px;
    padding: 16px 12px 20px 12px;
    border: 1px solid #d0d5dd;
    background: #fff;
    -webkit-box-shadow: 0px 8px 8px -4px rgba(16, 24, 40, 0.0392156863);
    box-shadow: 0px 8px 8px -4px rgba(16, 24, 40, 0.0392156863);
    -webkit-box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.1019607843);
    box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.1019607843);
}

.dropdown.open {
    visibility: visible;
    opacity: 1;
}

.dropdown__top {
    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: 12px 0 12px 8px;
    border-bottom: 1px solid #d0d5dd;
}

.dropdown__title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
}

.dropdown__content {
    padding-top: 24px;
}

.dropdown__content-preloader, .dropdown__content-results, .dropdown__content-empty {
    display: none;
}

.dropdown__content-preloader.open, .dropdown__content-results.open, .dropdown__content-empty.open {
    display: block;
}

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

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

.dropdown__content-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    margin-top: 16px;
}

.dropdown__content-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4285714286em;
    color: #667085;
    margin: 0 auto;
    margin-bottom: 4px;
    max-width: 360px;
}

.dropdown__content-description span {
    color: #181818;
}

.dropdown__content-item:last-child {
    padding: 12px 8px;
    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: 12px;
}

.dropdown__content-link {
    padding: 12px 8px;
    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: 12px;
}

.dropdown__content-link:hover {
    background: #f2f4f7;
}

.dropdown__content-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
}

.dropdown__content-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.dropdown__content-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.dropdown__content-descr {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.dropdown__content-descr-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4285714286em;
}

.dropdown__content-more-button {
    color: #d92d20;
    border: none;
    font-size: 14px;
    line-height: 1.4285714286em;
    background: none;
    padding: 8px 14px;
}

.dropdown__content-more-button:after {
    content: "\e909";
    font-family: "iconmoon";
    margin-left: 8px;
    vertical-align: middle;
}

.dropdown__content-more-button:hover {
    color: #b42318;
}

.dropdown__content-more-button.open:after {
    content: "\e90b";
    font-family: "iconmoon";
}

@media screen and (max-width: 678px) {
    .dropdown__container {
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 0 16px;
    }

    .dropdown__top {
        padding-left: 0;
    }

    .dropdown__top-input {
        font-size: 16px;
        line-height: 1.5em;
        color: #181818;
        width: 100%;
        border: none;
    }

    .dropdown__top-input:focus-visible {
        border: none;
        outline: none;
    }

    .dropdown__top-input::-webkit-input-placeholder {
        font-size: 16px;
        line-height: 1.5em;
    }

    .dropdown__top-input::-moz-placeholder {
        font-size: 16px;
        line-height: 1.5em;
    }

    .dropdown__top-input:-ms-input-placeholder {
        font-size: 16px;
        line-height: 1.5em;
    }

    .dropdown__top-input::-ms-input-placeholder {
        font-size: 16px;
        line-height: 1.5em;
    }

    .dropdown__top-input::placeholder {
        font-size: 16px;
        line-height: 1.5em;
    }

    .dropdown__content-left {
        max-width: 80%;
    }

    .dropdown__content-img {
        min-width: 40px;
    }

    .dropdown__content-descr-title {
        max-width: 80%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.user-dropdown {
    width: 280px;
    padding-top: 8px;
    border-radius: 0 0 12px 12px;
    position: absolute;
    right: 0;
    z-index: 5;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: 0px 8px 8px -4px rgba(16, 24, 40, 0.0392156863);
    box-shadow: 0px 8px 8px -4px rgba(16, 24, 40, 0.0392156863);
    -webkit-box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.1019607843);
    box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.1019607843);
}

.user-dropdown.open {
    visibility: visible;
    opacity: 1;
}

.user-dropdown__container {
    border-radius: 12px;
    background: #fff;
    padding: 12px 0 0;
    overflow: hidden;
    border: 1px solid #e4e7ec;
}

.user-dropdown__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e4e7ec;
}

.user-dropdown__top-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.user-dropdown__top-photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.user-dropdown__top-name {
    line-height: 1.5em;
    color: #344054;
}

.user-dropdown__top-email {
    line-height: 1.5em;
    color: #667085;
}

.user-dropdown__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;
}

.user-dropdown__list {
    border-bottom: 1px solid #e4e7ec;
}

.user-dropdown__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 10px 12px;
    gap: 8px;
    width: 100%;
    line-height: 1.5em;
}

.user-dropdown__link:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
}

.user-dropdown__link:hover {
    background: #f2f4f7;
}

.user-dropdown__count {
    position: absolute;
    right: 12px;
    padding: 2px 8px;
    font-size: 12px;
    line-height: 1.5em;
    color: #fff;
    background: #d92d20;
    border-radius: 16px;
}

.user-dropdown__logout-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    border: none;
    background: none;
    color: #d92d20;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    padding: 10px 12px;
}

.user-dropdown__logout-button:before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    background: url("../images/icons/ico-logout-red.svg") center center no-repeat;
}

.user-dropdown__logout-button:hover {
    background: #f2f4f7;
}

.user-dropdown__link--user:before {
    background: url("../images/icons/ico-user.svg") center center no-repeat;
}

.user-dropdown__link--message:before {
    background: url("../images/icons/ico-message.svg") center center no-repeat;
}

.user-dropdown__link--education:before {
    background: url("../images/icons/ico-education.svg") center center no-repeat;
}

.user-dropdown__link--favorite:before {
    background: url("../images/icons/ico-favorite.svg") center center no-repeat;
}

.user-dropdown__link--descussion:before {
    background: url("../images/icons/ico-descussion.svg") center center no-repeat;
}

.user-dropdown__link--teacher:before {
    background: url("../images/icons/ico-teacher.svg") center center no-repeat;
}

.user-dropdown__link--history:before {
    background: url("../images/icons/ico-history.svg") center center no-repeat;
}

@media screen and (max-width: 678px) {
    .user-dropdown__container {
        border: none;
    }

    .user-dropdown__top-name {
        font-size: 18px;
        line-height: 1.5555555556em;
    }

    .user-dropdown__item {
        margin: 12px 0;
    }

    .user-dropdown__link {
        padding: 10px 16px;
    }

    .user-dropdown__logout-button {
        margin-top: 12px;
        padding: 10px 16px;
    }
}

.notification {
    width: 480px;
    max-height: 960px;
    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;
}

.notification__top {
    margin-top: 17px;
    padding: 0 24px 16px;
    border-bottom: 1px solid #d0d5dd;
    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;
}

.notification__top-title {
    font-size: 20px;
    line-height: 1.5em;
}

.notification__top-close-button {
    width: 40px;
    height: 40px;
    background: url("../images/icons/ico-x-close-black.svg") center center no-repeat;
    border-radius: 8px;
    border: none;
}

.notification__top-close-button:hover {
    background: #f2f4f7 url("../images/icons/ico-x-close-black.svg") center center no-repeat;
}

.notification__content {
    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-positive: 1;
    flex-grow: 1;
    text-align: center;
}

.notification__content-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5em;
    margin-top: 12px;
}

.notification__content-subtitle {
    margin-top: 8px;
    color: #667085;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4285714286em;
    max-width: 280px;
}

.notification__content-list {
    width: 100%;
}

.notification__content-item {
    border-bottom: 1px solid #d0d5dd;
    padding: 16px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 12px;
}

.notification__content-item-img {
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.notification__content-item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.notification__content-item:hover {
    background: #f2f4f7;
}

.notification__content-info {
    text-align: left;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.notification__content-info-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.notification__content-name {
    font-size: 14px;
    line-height: 1.4285714286em;
}

.notification__content-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4285714286em;
    color: #667085;
}

.notification__content-description span {
    color: #181818;
}

.notification__content-time {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3333333333em;
    color: #667085;
}

.notification__content-status {
    min-width: 10px;
    height: 10px;
    margin: 5px;
    background: #667085;
    border-radius: 50%;
}

.notification__content-status--unread {
    background: #f04438;
}

.notification__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 16px 24px;
}

.notification__readall-button {
    color: #344054;
    background: none;
    border: 1px solid #d0d5dd;
    font-size: 14px;
    line-height: 1.4285714286em;
    padding: 8px 14px;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.notification__readall-button:after {
    content: "";
    width: 16px;
    height: 16px;
    background: url("../images/icons/ico-checkbox.svg") center center no-repeat;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

@media screen and (max-width: 678px) {
    .notification {
        width: 100%;
    }

    .notification__content-list {
        max-height: 80vh;
        overflow-y: auto;
    }

    .notification__content-item {
        padding: 16px;
    }
}

.header {
    padding: 20px 0;
    border-bottom: 1px solid #e4e7ec;
    -webkit-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0588235294);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.0588235294);
    -webkit-box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.1019607843);
    box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.1019607843);
}

.header__container {
    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;
}

.header__left, .header__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__left {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.header__right {
    margin-left: 24px;
}

.header__right-signin-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__right-mobile-buttons {
    display: none;
}

.header__logo {
    margin-right: 24px;
}

.header__button {
    margin-right: 12px;
    position: relative;
}

.header__button:last-child {
    margin-right: 12px;
}

.header__dropdown-button {
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 9px 14px;
    font-size: 16px;
    line-height: 1.5em;
}

.header__dropdown-button.button-icon-right .icon {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.header__dropdown-button.button-icon-right:hover {
    background: #fff;
    -webkit-box-shadow: 0px 0px 0px 4px #f2f4f7;
    box-shadow: 0px 0px 0px 4px #f2f4f7;
}

.header__dropdown-button.button-icon-right:focus .icon {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.header__search {
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__search-wrap {
    width: 100%;
    position: relative;
}

.header__search .input-wrap {
    width: 100%;
    padding: 7px;
}

.header__search input {
    height: 24px;
}

.header__search input::-webkit-input-placeholder {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: #98a2b3;
}

.header__search input::-moz-placeholder {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: #98a2b3;
}

.header__search input:-ms-input-placeholder {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: #98a2b3;
}

.header__search input::-ms-input-placeholder {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: #98a2b3;
}

.header__search input::placeholder {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: #98a2b3;
}

.header__notify {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 8px;
    position: relative;
}

.header__notify-button {
    width: 100%;
    padding: 10px;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.header__link {
    padding: 10px;
    white-space: nowrap;
    color: #344054;
}

.header__user {
    position: relative;
    display: inline-block;
}

.header__user-button {
    color: #101828;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 1.25em;
}

.header__user-button:hover {
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 0px 4px rgb(242, 244, 247);
    box-shadow: 0px 0px 0px 4px rgb(242, 244, 247);
}

.header__user-button.text {
    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;
    background: #fedf89;
}

.header__user-button.img img {
    -o-object-fit: fill;
    object-fit: fill;
    -o-object-position: center;
    object-position: center;
}

.icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    min-width: 20px;
}

.icon-dropdown-icon {
    background: url("../images/icons/ico-arrow-down.svg");
    margin-left: 8px;
}

.icon-notify-icon {
    background: url("../images/icons/ico-notification-bell.svg");
}

@media screen and (max-width: 678px) {
    .header {
        border-bottom: 1px solid #d0d5dd;
        border-top: 1px solid #d0d5dd;
    }

    .header__button, .header__search-wrap, .header__link {
        display: none;
    }

    .header__right {
        margin: 0;
    }

    .header__right-mobile-buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .header__notify {
        margin-right: 0;
        width: 20px;
        height: 20px;
        display: none;
    }

    .header__user {
        display: none;
    }

    .header__search-button, .header__notify-button, .header__user-mobile-button, .header__user-user {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 10px;
        width: 42px;
        height: 42px;
    }
}

.cookie-modal {
    max-width: 544px;
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    background: #fff;
    -webkit-box-shadow: 0px 2px 4px -2px rgba(16, 24, 40, 0.0588235294);
    box-shadow: 0px 2px 4px -2px rgba(16, 24, 40, 0.0588235294);
    -webkit-box-shadow: 0px 4px 8px -2px rgba(16, 24, 40, 0.1019607843);
    box-shadow: 0px 4px 8px -2px rgba(16, 24, 40, 0.1019607843);
    border-radius: 20px;
}

.cookie-modal__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
}

.cookie-modal__top-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3333333333em;
    margin-bottom: 4px;
}

.cookie-modal__top-descr {
    font-weight: 400;
    color: #667085;
    line-height: 1.5em;
}

.cookie-modal__top-button {
    width: 58px;
    height: 58px;
    background: url("../images/icons/ico-x-close.svg") center center no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px;
    border: none;
}

.cookie-modal__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 12px;
    padding: 24px;
    padding-top: 17px;
    margin-top: 17px;
    border-top: 1px solid #f2f4f7;
}

.cookie-modal__button {
    font-size: 16px;
    font-weight: 500;
    width: 120px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 670px) {
    .cookie-modal {
        right: 50%;
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
        transform: translateX(50%);
        max-width: 343px;
        width: 100%;
    }

    .cookie-modal__top {
        text-align: center;
        padding-bottom: 0;
    }

    .cookie-modal__top-img {
        display: none;
    }

    .cookie-modal__top-title {
        font-size: 18px;
    }

    .cookie-modal__top-descr {
        font-size: 14px;
    }

    .cookie-modal__top-button {
        top: -50px;
        background: #fff url("../images/icons/ico-x-close.svg") center center no-repeat;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        -webkit-box-shadow: 0px -1px 1px 0px rgba(150, 161, 172, 0.1215686275) inset;
        box-shadow: 0px -1px 1px 0px rgba(150, 161, 172, 0.1215686275) inset;
    }

    .cookie-modal__bottom {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 8px;
        padding: 8px;
    }

    .cookie-modal__button {
        width: 100%;
    }
}

.mobile-overlay {
    position: absolute;
    top: 1000%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 2;
    -webkit-animation: hidden forwards 0.5s;
    animation: hidden forwards 0.5s;
}

.mobile-overlay.open {
    -webkit-animation: show forwards 0.5s;
    animation: show forwards 0.5s;
}

.mobile-overlay__top {
    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;
    padding: 16px;
    border-top: 1px solid #e4e7ec;
    border-bottom: 1px solid #e4e7ec;
}

.mobile-overlay__button {
    padding: 20px;
    background: url("../images/icons/ico-x-close.svg") center center no-repeat;
    border: none;
    outline: none;
    width: 20px;
    height: 20px;
}

.mobile-overlay__button:hover {
    background: #e4e7ec url("../images/icons/ico-x-close.svg") center center no-repeat;
    border-radius: 6px;
}

@-webkit-keyframes hidden {
    0% {
        top: 1000%;
    }

    100% {
        display: none;
    }
}

@keyframes hidden {
    0% {
        top: 1000%;
    }

    100% {
        display: none;
    }
}

@-webkit-keyframes show {
    0% {
        display: block;
    }

    100% {
        top: 0%;
    }
}

@keyframes show {
    0% {
        display: block;
    }

    100% {
        top: 0%;
    }
}

.menu-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    margin: 0 16px;
    border: 2px solid #e4e7ec;
    border-radius: 8px;
    background-color: #e4e7ec;
}

.menu-button {
    border: none;
    outline: none;
    background: none;
    width: 100%;
    color: #667085;
    font-size: 14px;
    line-height: 1.4285714286em;
    padding: 8px 16px;
    position: relative;
    z-index: 2;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.menu-button.active {
    color: #181818;
    border-radius: 8px;
}

.menu-mask {
    width: 50%;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 4px rgba(16, 24, 40, 0.2);
    box-shadow: 0 2px 4px rgba(16, 24, 40, 0.2);
    position: absolute;
    z-index: 1;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    width: 0;
}

.menu-mask.first {
    left: 0;
    width: 50%;
}

.menu-mask.second {
    left: 50%;
    width: 50%;
}

.menu-content {
    margin: 0 16px;
}

.menu-content .dropdownContent {
    display: none;
    border: none;
    margin-top: 20px;
}

.menu-content .dropdownContent.open {
    display: block;
}

.card-advantage {
    position: relative;
    max-width: 413px;
    max-height: 600px;
    border-radius: 20px;
    overflow: hidden;
}

.card-advantage__photo {
    width: 100%;
    height: 100%;
    -o-object-fit: fill;
    object-fit: fill;
    -o-object-position: center;
    object-position: center;
}

.card-advantage__info {
    position: absolute;
    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%;
    bottom: 0;
    z-index: 1;
    color: #fff;
    padding: 24px;
}

.card-advantage__info:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.card-advantage__info-play {
    border: none;
    outline: none;
    background: url("../images/icons/ico-play-button.svg") center center no-repeat;
    background-size: contain;
    width: 48px;
    height: 48px;
}

.card-advantage__name {
    font-size: 18px;
    font-weight: 600;
    line-height: lh(28, 18);
}

.card-advantage__position {
    font-size: 14px;
    font-weight: 400;
    line-height: lh(20, 14);
}

.notify {
    width: 320px;
    height: 76px;
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
    position: fixed;
    bottom: 24px;
    right: -1000px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 8px;
    -webkit-box-shadow: 0px 24px 48px -12px rgba(16, 24, 40, 0.2509803922);
    box-shadow: 0px 24px 48px -12px rgba(16, 24, 40, 0.2509803922);
    background: #181818;
    color: #fff;
    z-index: 1000;
}

.notify.open {
    right: 24px;
}

.notify__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    position: relative;
}

.notify.reject .notify__icon {
    background: #d92d20;
}

.notify.reject .notify__icon:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: url("../images/icons/ico-bookmark-empty.svg") center center no-repeat;
}

.notify.resolve .notify__icon {
    background: #039855;
}

.notify.resolve .notify__icon:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: url("../images/icons/ico-bookmark-fill.svg") center center no-repeat;
}

.notify__content-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4285714286em;
    margin-bottom: 2px;
}

.notify__content-text {
    font-size: 12px;
    line-height: 1.5em;
}

.notify__close {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 20px;
    height: 20px;
    background: transparent url("../images/icons/ico-cross-white.svg") center center no-repeat;
    padding: 0;
    border: none;
}

@media screen and (max-width: 460px) {
    .notify {
        bottom: auto;
        top: 50px;
        width: 90%;
    }

    .notify.open {
        right: 5%;
    }
}

.card__description {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(24, 24, 24, 0.8);
    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: 16px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.card__description.additional {
    height: 250px;
    color: #181818;
    bottom: 0;
    left: auto;
    right: 100%;
    width: 305px;
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #d0d5dd;
    -webkit-box-shadow: 0px 8px 8px -4px rgba(16, 24, 40, 0.0392156863);
    box-shadow: 0px 8px 8px -4px rgba(16, 24, 40, 0.0392156863);
    -webkit-box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.1019607843);
    box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.1019607843);
}

.card__top-material {
    font-size: 12px;
    line-height: 1.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.card__top-material:before {
    content: "";
    display: block;
    width: 52px;
    height: 16px;
    background: url("../images/icons/ico-level-3.svg") center center no-repeat;
}

.card__top-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5555555556em;
}

.card__author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5019607843);
}

.card__author-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.card__author-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.card__author-name {
    font-size: 14px;
    line-height: 1.4285714286em;
}

.card__author-position {
    color: #d0d5dd;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5em;
}

.card__author-position.additional {
    color: #667085;
}

.card__info {
    margin-top: 8px;
}

.card__info-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.card__info-wrap.additional {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.card__level {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    line-height: 1.5em;
}

.card__level:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../images/icons/ico-flash.svg") center center no-repeat;
}

.card__time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    line-height: 1.5em;
}

.card__time:before {
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
    background: url("../images/icons/ico-clock-white.svg") center center no-repeat;
}

.card__time.additional:before {
    background: url("../images/icons/ico-clock.svg") center center no-repeat;
}

.card__cost {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5em;
    margin-top: 4px;
}

.card__rate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #667085;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4285714286em;
}

.card__rate span {
    color: #fdb022;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.card__rate span:after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../images/icons/ico-star-yellow.svg") center center no-repeat;
}

.gallery-card {
    max-width: 413px;
}

.gallery-card__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2px;
    border-radius: 16px;
}

.gallery-card__main-link {
    display: block;
    position: relative;
    width: 275px;
    height: 304px;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
}

.gallery-card__main-link img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.gallery-card__main-link:hover .card__description {
    visibility: visible;
    opacity: 1;
}

.gallery-card__additional-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2px;
}

.gallery-card__image {
    width: 137px;
    height: 100px;
    overflow: hidden;
}

.gallery-card__image-wrap {
    position: relative;
}

.gallery-card__image-wrap:hover .card__description {
    opacity: 1;
    visibility: visible;
}

.gallery-card__image-wrap:first-child .gallery-card__image {
    border-radius: 0 12px 0 0;
}

.gallery-card__image-wrap:nth-child(2) .card__description {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.gallery-card__image-wrap:last-child .gallery-card__image {
    border-radius: 0 0 12px 0;
}

.gallery-card__image-wrap:last-child .card__description {
    bottom: 0;
    top: auto;
}

.gallery-card__image-wrap:hover .gallery-card__additional-description {
    visibility: visible;
    opacity: 1;
}

.gallery-card__image-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.gallery-card__image--count {
    position: relative;
}

.gallery-card__image-count {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    width: 100%;
    padding: 10px 0 10px 12px;
    margin: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: absolute;
    bottom: 0;
    z-index: 2;
    line-height: 1.5em;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-card__image-count:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url("../images/icons/ico-arrow-right-white.svg") center center no-repeat;
}

.gallery-card__title {
    font-size: 24px;
    line-height: 1.3333333333em;
    margin: 16px 0 4px;
}

.gallery-card__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gallery-card__link-text {
    color: #667085;
    font-weight: 400;
}

.gallery-card__icon {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url("../images/icons/ico-arrow-right-grey.svg") center center no-repeat;
}

@media screen and (max-width: 460px) {
    .gallery-card {
        margin-bottom: 24px;
    }

    .gallery-card:first-child {
        margin-top: 40px;
    }

    .gallery-card:last-child {
        margin-bottom: 0;
    }

    .gallery-card__image {
        max-width: 108px;
    }
}

.trainers-card__photo {
    border-radius: 50%;
    overflow: hidden;
    width: 296px;
    height: 296px;
}

.trainers-card__photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.trainers-card__info {
    margin-top: 24px;
}

.trainers-card__name {
    font-size: 20px;
    line-height: 1.5em;
    margin-bottom: 4px;
}

.trainers-card__position {
    font-weight: 400;
    line-height: 1.5em;
    color: #344054;
}

@media screen and (max-width: 460px) {
    .trainers-card__info {
        text-align: center;
    }

    .trainers-card__name {
        font-size: 18px;
        line-height: 1.5555555556em;
    }

    .trainers-card__position {
        font-size: 14px;
    }
}

.tag {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    font-size: 14px;
    line-height: 1.4285714286em;
    padding: 2px 10px;
    border-radius: 16px;
}

.tag__remove {
    border: none;
    font-size: 12px;
    padding: 2px 0 2px 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.tag.dot::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.tag--orange {
    color: #b54708;
    background: #fffaeb;
}

.tag--orange.dot::before {
    background: #b54708;
}

.tag--blue {
    color: #175cd3;
    background: #eff8ff;
}

.tag--blue.dot::before {
    background: #175cd3;
}

.tag--pink {
    color: #c11574;
    background: #fdf2fa;
}

.tag--purple {
    color: #5925dc;
    background: #eef4ff;
}

.tag--black {
    color: #fff;
    background: #181818;
}

.tag--green {
    color: #027a48;
    background: #ecfdf3;
}

.tag--green.dot::before {
    background: #027a48;
}

.tag--grey {
    color: #344054;
    background: #f9fafb;
}

.tag--grey.dot::before {
    background: #344054;
}

.tag--purple-bg {
    color: #fff;
    background: #6172f3;
}

.tag--pink-bg {
    color: #fff;
    background: #e31b54;
}

.tag.video, .tag.article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
}

.tag.video:before {
    content: "\e906";
    font-family: "iconmoon";
}

.tag.article:before {
    content: "\e905";
    font-family: "iconmoon";
}

.tag img {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    vertical-align: text-top;
    margin-right: 6px;
}

.material-card {
    max-width: 305px;
    width: 100%;
    border: 1px solid #e4e7ec;
    border-radius: 20px;
    overflow: hidden;
}

.material-card:hover {
    cursor: pointer;
    background: #f9fafb;
    -webkit-box-shadow: 0px 0px 0px 4px #f2f4f7;
    box-shadow: 0px 0px 0px 4px #f2f4f7;
}

.material-card__image {
    position: relative;
    height: 180px;
    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;
    overflow: hidden;
}

.material-card__image-wrap {
    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;
    width: 100%;
    position: absolute;
    top: 8px;
    padding: 0 12px;
    z-index: 1;
}

.material-card__image-tag {
    background: #181818;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5em;
    padding: 6px 12px;
    border-radius: 20px;
}

.material-card__image-favorite {
    background: #181818 url("../images/icons/ico-favorite-white.svg") center center no-repeat;
    border-radius: 50%;
    display: block;
    width: 40px;
    height: 40px;
}

.material-card__image-favorite:hover {
    cursor: pointer;
    background: #344054 url("../images/icons/ico-favorite-white.svg") center center no-repeat;
}

.material-card__image-favorite.checked {
    background: #e31b54 url("../images/icons/ico-favorite-active.svg") center center no-repeat;
}

.material-card__image:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(24, 24, 24, 0.2);
    z-index: 1;
}

.material-card__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.material-card__image-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
}

.material-card__image-play:after {
    content: "";
    width: 64px;
    height: 64px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-filter: blur(24px);
    filter: blur(24px);
    background: white;
    border-radius: 50%;
    z-index: 3;
}

.material-card__image-play:before {
    content: "";
    width: 64px;
    height: 64px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: url("../images/icons/ico-play-blur.svg") center center no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 4;
}

.material-card__image-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #181818;
    color: #fff;
    padding: 4px 8px;
    border-radius: 18px;
    font-size: 12px;
    line-height: 1.5em;
}

.material-card__info {
    padding: 24px 20px 22px;
}

.material-card__title {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5555555556em;
    padding-bottom: 12px;
    border-bottom: 1px solid #e4e7ec;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 65px;
}

.material-card__position {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.material-card__position-image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.material-card__position-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}

.material-card__position-name {
    margin: 0;
    font-size: 14px;
    line-height: 1.4285714286em;
}

.material-card__position-position {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4285714286em;
    color: #667085;
}

.material-card__duration {
    margin: 12px 0 8px;
    font-size: 12px;
    line-height: 1.5em;
    color: #101828;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.material-card__duration-time--video:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 6px;
    vertical-align: top;
    background: url("../images/icons/ico-play.svg") center center no-repeat;
}

.material-card__duration-time--article:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 6px;
    vertical-align: top;
    background: url("../images/icons/ico-clock.svg") center center no-repeat;
}

.material-card__duration-level {
    margin-right: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}

.material-card__duration-level:before {
    content: "";
    display: inline-block;
    width: 52px;
    height: 16px;
    background: url("../images/icons/ico-level-1.svg") center center no-repeat;
}

.material-card__tags-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
}

.material-card__tags-item--count {
    color: #344054;
    background: #f2f4f7;
    border-radius: 16px;
    padding: 2px 8px;
    font-size: 12px;
    line-height: 1.5em;
}

.material-card__tag {
    font-size: 12px;
    line-height: 1.5em;
    border-radius: 16px;
    padding: 2px 8px;
}

.material-card__bottom {
    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;
}

.material-card__bottom-rate {
    font-size: 14px;
    font-weight: 400;
    color: #667085;
    line-height: 1.4285714286em;
    margin: 0;
}

.material-card__bottom-rate-value {
    color: #fdb022;
    position: relative;
    padding-right: 20px;
}

.material-card__bottom-rate-value:after {
    content: "";
    width: 16px;
    height: 16px;
    background: url("../images/icons/ico-star-yellow.svg") center center no-repeat;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.material-card__bottom-rate-count {
    margin-left: 4px;
}

@media screen and (max-width: 678px) {
    .material-card {
        max-width: none;
        margin-bottom: 20px;
    }

    .material-card__image img {
        height: auto;
    }

    .material-card:last-child {
        margin-bottom: 0;
    }
}

.level-radio {
    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: 22px 16px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
}

.level-radio:hover {
    cursor: pointer;
    background: #f9fafb;
    -webkit-box-shadow: 0px 0px 0px 4px #f2f4f7;
    box-shadow: 0px 0px 0px 4px #f2f4f7;
}

.level-radio__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
}

.level-radio__input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #d0d5dd;
    border-radius: 50%;
    position: relative;
    margin: 0;
}

.level-radio__input:checked {
    background: #039855;
}

.level-radio__input:before {
    content: "";
    display: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.level-radio__input:checked:before {
    display: block;
}

.level-radio__icon {
    display: block;
    width: 56px;
    height: 20px;
}

.level-radio__icon.beginer {
    background: url("../images/icons/ico-level-1.svg") center center no-repeat;
}

.level-radio__icon.middle {
    background: url("../images/icons/ico-level-2.svg") center center no-repeat;
}

.level-radio__icon.advance {
    background: url("../images/icons/ico-level-3.svg") center center no-repeat;
}

.level-radio__title {
    line-height: 1.5em;
    margin: 0 0 2px 0;
}

.level-radio__subtitle {
    line-height: 1.5em;
    font-weight: 400;
    color: #667085;
}

.footer {
    margin-top: 180px;
    padding-top: 64px;
    padding-bottom: 48px;
}

.footer__middle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 16px;
}

.footer__bottom {
    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-top: 32px;
    margin-top: 64px;
    border-top: 1px solid #e4e7ec;
}

.footer__title {
    color: #344054;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5em;
    margin-top: 16px;
}

.footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer__link {
    gap: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #98a2b3;
}

.footer__link:hover {
    color: #667085;
}

.footer__middle-list {
    gap: 32px;
}

.footer__social-title, .footer__copyright {
    font-size: 14px;
    color: #98a2b3;
}

.footer__social-title span, .footer__copyright span {
    margin-left: 12px;
}

.footer__social-list {
    gap: 24px;
    margin-top: 12px;
}

.footer__social-link {
    font-size: 24px;
    color: #98a2b3;
}

.footer__social-link:hover {
    color: #667085;
}

.footer__bottom-list {
    gap: 20px;
}

.footer__bottom-link {
    color: #98a2b3;
    font-size: 14px;
}

.footer__bottom-link:hover {
    color: #101828;
    text-decoration: underline;
}

.icon-instagram::before {
    content: "\e903";
    font-family: "iconmoon";
}

.icon-facebook::before {
    content: "\e904";
    font-family: "iconmoon";
}

.icon-twitter::before {
    content: "\e905";
    font-family: "iconmoon";
}

.icon-video::before {
    content: "\e906";
    font-family: "iconmoon";
}

.icon-author::before {
    content: "\e907";
    font-family: "iconmoon";
}

.icon-article::before {
    content: "\e908";
    font-family: "iconmoon";
}

.icon-camera::before {
    content: "\e909";
    font-family: "iconmoon";
}

@media screen and (max-width: 678px) {
    .footer {
        margin-top: 80px;
        border-top: 1px solid #e4e7ec;
        padding-top: 40px;
    }

    .footer__title {
        font-size: 14px;
        line-height: 1.4285714286em;
    }

    .footer__middle {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .footer__middle-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: flex-start;
        gap: 20px;
    }

    .footer__link {
        font-size: 14px;
    }

    .footer__social-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: 20px;
        margin-top: 0;
    }

    .footer__social-link {
        font-size: 24px;
    }

    .footer__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 20px;
        margin-top: 32px;
        padding-top: 20px;
    }

    .footer__bottom-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: flex-start;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

.main__first {
    margin-top: 80px;
    margin-bottom: 60px;
}

.main__first-title {
    font-size: 60px;
    font-weight: 500;
    line-height: 1.2em;
    max-width: 1100px;
}

.main__first-button {
    margin-top: 24px;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
}

.main__first-bottom {
    margin-top: 60px;
}

.main__first-description {
    line-height: 1.5555555556em;
    font-size: 18px;
    font-weight: 400;
    color: #344054;
}

.main__first-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    margin-top: 60px;
}

.main__first-slider-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.main__second {
    margin-top: 180px;
}

.main__second-title {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.25em;
    margin: 0 0 10px 0;
}

.main__second-subtitle {
    max-width: 552px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5555555556em;
    color: #667085;
}

.main__second-slider {
    margin-top: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}

.main__third, .main__fiveth, .main__sixth {
    margin-top: 180px;
    padding-top: 48px;
}

.main__third-pretitle, .main__fiveth-pretitle, .main__sixth-pretitle {
    color: #667085;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.4285714286em;
}

.main__third-title-wrap, .main__fiveth-title-wrap, .main__sixth-title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.main__third-title, .main__fiveth-title, .main__sixth-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2222222222em;
    margin: 12px 0 0;
    max-width: 755px;
}

.main__third-link, .main__fiveth-link, .main__sixth-link {
    line-height: 1.25em;
}

.main__third-slider, .main__fiveth-slider, .main__sixth-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 64px;
}

.main__third-slider-container, .main__fiveth-slider-container, .main__sixth-slider-container {
    position: relative;
}

.main__third-slide, .main__fiveth-slide, .main__sixth-slide {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    gap: 20px;
}

.main__fourth {
    margin-top: 180px;
}

.main__fourth-pretitle {
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4285714286em;
    color: #667085;
}

.main__fourth-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2222222222em;
    text-align: center;
    margin: 0;
}

.main__fourth-subtitle {
    max-width: 768px;
    margin: 24px auto 0;
    text-align: center;
    color: #667085;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5555555556em;
}

.main__fourth-trainers-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 48px 32px;
    margin-top: 64px;
}

.main__fourth-button {
    display: block;
    margin: 64px auto 0;
    padding: 10px 18px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.main__seventh {
    padding: 64px;
    margin-top: 180px;
}

.main__seventh-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.main__seventh-left-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.25em;
    margin: 0;
    max-width: 666px;
}

.main__seventh-left-subtitle {
    line-height: 1.5em;
    margin: 12px 0;
    color: #667085;
}

.main__seventh-left-form {
    margin-top: 80px;
    max-width: 480px;
}

.main__seventh-left-checkbox {
    margin-bottom: 12px;
}

.main__seventh-left-button {
    width: 100%;
    margin-top: 32px;
}

.main__seventh-right {
    margin-top: 20px;
    display: grid;
    gap: 16px;
    grid-template-rows: 200px 1fr;
    grid-template-columns: minmax(156px, 1fr);
}

.main__seventh-right img:first-child {
    grid-column: 1/2;
}

.main__seventh-right img:nth-child(2) {
    grid-column: 2/3;
}

.main__seventh-right img:last-child {
    grid-column: 1/3;
    grid-row: 2/3;
}

@media screen and (max-width: 460px) {
    .main__first-title {
        margin: 60px auto 0;
        font-size: 30px;
        line-height: 1.2666666667em;
        font-weight: 500;
        text-align: center;
        max-width: 370px;
    }

    .main__first-bottom {
        margin-top: 16px;
        text-align: center;
    }

    .main__first-description {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5em;
        max-width: 234px;
        margin: 0 auto;
    }

    .main__first-button {
        margin: 60px auto;
    }

    .main__first-slider-container {
        height: 250px;
    }

    .main__third, .main__fourth, .main__fiveth, .main__sixth {
        margin-top: 100px;
    }

    .main__third-title, .main__third-pretitle, .main__fiveth-title, .main__fiveth-pretitle, .main__sixth-title, .main__sixth-pretitle {
        text-align: center;
    }

    .main__third-link, .main__fiveth-link, .main__sixth-link {
        text-align: center;
        margin-top: 32px;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.5em;
    }

    .main__fourth-trainers-card {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .main__fourth-link {
        text-align: center;
        margin-top: 32px;
    }

    .main__fourth-link:hover {
        color: #b42318;
    }
}