@charset "UTF-8";
body {
  font-family: "Montserrat", "Mulish", "Helvetica", "Arial", sans-serif;
}
body::after {
  background: #0c3632;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  opacity: 0.9;
  position: fixed;
  top: 50px;
  transition: all 0.25s ease;
}
body.lg::after {
  top: 150px;
}

.error.block {
  height: 100vh;
  margin-top: 150px;
}
.error__item {
  padding-bottom: 50px;
  width: 100%;
}
.error__item_status {
  font-size: 100px;
  font-weight: 700;
}
.error__item_message {
  font-size: 40px;
}

.modal-window {
  display: none;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}
.modal-window._active {
  display: block;
  visibility: visible;
  pointer-events: all;
  opacity: 1;
  z-index: 1000;
}

.block__item.item {
  display: flex;
  width: 90vw;
  margin-bottom: 50px;
}
.block__item.item .item__title {
  text-align: start;
  width: 50%;
  margin-bottom: 30px;
}
.block__item.item .item__data {
  display: flex;
  flex-direction: column;
  text-align: start;
  margin-left: 25%;
}
.block__item.item .item__data_value {
  margin-bottom: 20px;
  text-indent: 1em;
  text-align: justify;
}
.block__item.item .item__data_value .list_value {
  text-indent: -1em;
}
.block__item.item .item__data_value.list_value {
  list-style: inside;
  text-indent: -1em;
}

.custom-shadow {
  box-shadow: 5px 5px 25px 19px rgba(0, 0, 0, 0.6117647059);
}

.danger {
  color: rgb(225, 134, 143);
}

.wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
  min-height: 100lvh;
}

.arrow {
  display: flex;
}

.menu-arrow, .menu-icon {
  display: none;
}

.container {
  padding: 10px 20px;
}

.liks__inline_block {
  display: inline-flex;
  gap: 10px;
}
.liks__inline_btn {
  height: 28px;
  opacity: 0.8;
}
.liks__inline_btn:hover {
  filter: invert(50%);
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(30deg, #0154d1, #f7e014);
  opacity: 0.75;
  padding: 0 20px;
  border: 1px white solid;
  border-radius: 40px;
  font-size: 20px;
  color: white !important;
  cursor: pointer;
  user-select: none;
}
.button__fit-content {
  width: fit-content;
}

.alert {
  padding: 5px 20px;
  border-radius: 10px;
  margin: 10px;
  width: fit-content;
}
.alert__message {
  position: fixed;
  width: 40%;
  top: 10px;
  left: 50%;
  z-index: 1000;
}
.alert__message_item {
  transform: translateX(-50%);
  margin-bottom: 5px;
  padding: 20px;
  font-size: 20px;
  text-align: justify;
  text-indent: 1rem;
}
.alert__message_item .message-close-icon {
  display: block;
  z-index: 1001;
  position: relative;
  margin: 0 0 5px 95%;
  width: 50px;
  height: 18px;
  cursor: pointer;
}
.alert__message_item .message-close-icon span {
  top: 50%;
  transform: scale(0) translate(0px, -50%);
}
.alert__message_item .message-close-icon span, .alert__message_item .message-close-icon::before, .alert__message_item .message-close-icon::after {
  left: 0;
  position: absolute;
  height: 10%;
  width: 50%;
  transform: all 0.3s ease 0s;
  background-color: #fff;
}
.alert__message_item .message-close-icon::before {
  content: "";
  top: 50%;
  transform: rotate(-45deg) translate(0px, -50%);
}
.alert__message_item .message-close-icon::after {
  content: "";
  bottom: 50%;
  transform: rotate(45deg) translate(0px, 50%);
}
.alert__warning {
  color: rgb(251, 215, 112);
  background-color: rgba(61, 46, 0, 0.3);
  border: 1px rgb(123, 92, 0) solid;
}
.alert__danger {
  color: rgb(225, 134, 143);
  background-color: rgba(67, 12, 17, 0.3);
  border: 1px rgb(104, 18, 27) solid;
}
.alert__success {
  color: rgb(153, 230, 171);
  background-color: rgba(26, 62, 41, 0.3);
  border: 1px rgb(37, 90, 50) solid;
}
.alert__primary {
  color: rgb(124, 195, 255);
  background-color: rgba(38, 42, 43, 0.3);
  border: 1px rgb(0, 59, 123) solid;
}
.alert__info {
  color: rgb(142, 227, 241);
  background-color: rgba(20, 59, 67, 0.3);
  border: 1px rgb(30, 89, 97) solid;
}
.alert__borderless {
  border: 0;
}

.notification._hiden {
  display: none;
  cursor: none;
  visibility: hidden;
}

.nav {
  height: 50px;
  width: 100%;
  padding: 0 20px;
  background: #0c3632;
  opacity: 0.9;
  position: fixed;
  z-index: 4;
  top: 0;
  left: 0;
  display: flex;
  margin: 0 auto;
  transition: height 0.25s ease;
}
.nav.lg {
  height: 150px;
}
.nav__body {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.nav__block {
  display: flex;
  padding-top: 15px;
  min-width: 120px;
}
.nav__list {
  position: relative;
  z-index: 4;
  display: flex;
  max-width: 1280px;
  font-size: 16px;
}
.nav__logo {
  margin-right: 30px;
  transform: translateY(20%);
  height: 36px;
  width: 36px;
}
.nav__logo_logo {
  height: 100%;
  width: auto;
  object-fit: cover;
}
.nav__item {
  padding-right: 20px;
  position: relative;
  text-align: start;
  color: white;
  font-weight: bold;
}
.nav__sub-list {
  transform: translate(5px, 10%);
  opacity: 0;
  display: none;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease 0s;
}
.nav__sub-item {
  padding-top: 10px;
  position: relative;
  color: rgba(245, 245, 245, 0.9411764706);
  font-weight: bold;
  text-align: start;
}
.nav__search {
  display: flex;
  justify-content: center;
  transform: translateY(10px);
  margin-right: 20px;
}
.nav__search img.nav__search_icon {
  filter: invert(100%);
  height: 32px;
  width: 32px;
}
.nav__link_logo {
  transform: translateY(-20%);
  height: 36px;
  width: 36px;
  border-radius: 50%;
  margin-right: 10px;
}

.content {
  flex: 1 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px;
  font-size: 25px;
  color: #f5f5f5;
  margin-top: 50px;
}
.block__title {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  align-items: start;
}
.block__title h2 {
  font-size: 48px;
}
.block__title h3 {
  font-size: 36px;
}
.block__title_feedback {
  margin-bottom: 40px;
}
.block__title_center {
  justify-content: center;
}
.block__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.block__item_btn {
  width: 100%;
  align-items: end;
  margin-bottom: 0;
}
.block__item_mb-50 {
  margin-bottom: 50px;
}
.block__item_fz-30 {
  font-size: 26px;
}
.block__item_100 {
  width: 100%;
}
.block__head {
  padding-top: 60px;
  margin-bottom: 60px;
  font-size: 50px;
  font-weight: 900;
  color: rgba(245, 245, 245, 0.9411764706);
}
.block__head h1 {
  letter-spacing: 4px;
}
.block__head p {
  font-size: 32px;
  text-align: justify;
  text-indent: 1em;
  margin-bottom: 10px;
  font-weight: 100;
}
.block__head p.detail {
  font-size: 24px;
  font-style: italic;
}
.block__main-post {
  text-align: justify;
  text-indent: 1em;
}
.block.main-info {
  align-items: start;
  margin-left: 30px;
}

.cart {
  min-height: 240px;
  width: 80vw;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}
.cart__body {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  border: 2px #17baaa solid;
  padding: 10px;
}
.cart__title {
  height: 90px;
  display: flex;
  justify-content: start;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px #17baaa solid;
}
.cart__title h3 {
  font-size: 24px;
  color: #4fe9da;
}
.cart__text {
  display: flex;
  text-align: start;
  text-indent: 1em;
  flex: 1 0 auto;
  padding: 20px 0;
  font-size: 20px;
  margin: 2px;
}
.cart__date {
  display: flex;
  font-size: 20px;
}
.cart__date_avtor {
  text-align: end;
  font-size: 16px;
}

.fibdack {
  min-height: 120px;
  width: 80vw;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  border-radius: 30px;
  margin-bottom: 40px;
  padding: 25px 25px 10px 25px;
}
.fibdack__text {
  width: 100%;
  flex: 1 0 auto;
  padding-bottom: 15px;
  border-bottom: 2px #4fe9da dashed;
  text-align: start;
  text-indent: 1em;
}
.fibdack__date_avtor {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  font-size: 16px;
}

.footer {
  display: flex;
  flex-direction: column;
  min-height: 150px;
  width: 100%;
  background: #0c3632;
  opacity: 0.65;
  border-top: 2px solid white;
  font-size: 14px;
  color: #bdb8b8;
}
.footer__row {
  display: flex;
  justify-content: space-between;
}
.footer__navigate {
  text-decoration: underline;
  text-align: start;
}
.footer__navigate_item {
  padding-bottom: 5px;
}
.footer__navigate_item:last-child {
  padding-bottom: 0;
}
.footer__info {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: start;
}
.footer__info_item {
  padding-bottom: 10px;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  text-align: start;
}
.footer__contact_block {
  padding-bottom: 10px;
  display: flex;
  justify-content: start;
}
.footer__contact_type {
  padding: 0 10px;
  width: 120px;
}
.footer__contact_type img {
  filter: invert(100%);
  display: inline-block;
  vertical-align: middle;
}
.footer .finaly {
  justify-content: center;
  font-size: 12px;
}

.accordion {
  width: 90%;
  z-index: 2;
  margin-bottom: 20px;
}
.accordion__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.accordion__header {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  border: 1px #092320 solid;
}
.accordion__button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  color: white;
  text-align: left;
  background-color: #092320;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  justify-content: space-between;
}
.accordion__button.collapsed {
  background-color: #0c3632;
}
.accordion__button.collapsed svg {
  transform: rotateX(180deg);
  transition: all 0.3s ease 0s;
}
.accordion .accordion-collapse {
  width: 100%;
}
.accordion .accordion-collapse .accordion-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  color: white;
  font-size: 24px;
}
.pagination__items {
  display: flex;
  flex-direction: row;
}
.pagination__items_item:hover {
  color: #4fe9da;
}
.pagination__items_item {
  padding-right: 15px;
}
.pagination__items_item.inactive {
  color: #bdb8b8;
  cursor: default;
}
.pagination__items_item.now {
  color: #63d0f5;
  cursor: default;
}
.pagination__items_continue {
  padding-right: 15px;
}

.video__item {
  display: flex;
  margin: 20px;
}
.video__material {
  width: 50vw;
  background-color: #bdb8b8;
  border-radius: 20px;
  text-align: center;
}
.video__material_title {
  background-color: #797575;
  border-radius: 20px;
  user-select: none;
  cursor: pointer;
}
.video__material_title.course-summary {
  width: 90vw;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.video__material_window {
  position: relative;
  margin: 10px;
  border: 3px #092320 solid;
  width: calc(50vw - 20px);
  height: calc((50vw - 20px) / 1.58);
  user-select: none;
}

.search__body {
  position: fixed;
  top: 60px;
  left: 50px;
  width: 90vw;
  max-width: 800px;
  display: flex;
  z-index: 1000;
  flex-wrap: wrap;
  background-color: #0c3632;
  border: 2px #4fe9da solid;
  border-radius: 40px;
  padding: 10px 20px;
  justify-content: space-evenly;
}
.search__body_button {
  margin: 10px;
  padding: 5px 10px;
}
.search__body_form {
  display: flex;
  flex: 1 1 auto;
}
.search__body_input {
  flex: 1 1 auto;
  background-color: #0c3632;
  border-bottom: 1px white solid;
  color: white;
  font-size: 18px;
}

.link-hover-text {
  color: #4fe9da;
}

.filters {
  width: 100%;
  margin-bottom: 40px;
  align-items: start;
}
.filters__posts {
  margin-top: 10px;
}
.filters__button {
  margin-left: 15px;
  margin-bottom: 20px;
}
.filters__modal-window {
  align-self: start;
  margin-top: -35px;
}
.filters__row {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
}
.filters__row_forms {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.filters__row_forms .form__link {
  width: 100%;
}
.filters__row_btn {
  margin: 10px;
  padding: 5px 15px;
  border: 2px #797575 solid;
  border-radius: 30px;
  color: #797575;
}
.filters__row_btn:hover {
  border-color: white;
  color: #4fe9da;
}
.filters__row_btn.btn-small {
  width: 184px;
}
.filters__row_btn.btn-big {
  width: 100%;
}
.filters__row_btn.checked {
  border-color: #4fe9da;
  color: #4fe9da;
  cursor: default;
}

body._pc a:hover {
  color: #4fe9da;
}
body._pc a.button:hover {
  color: white;
}
body._pc .button:hover {
  background: linear-gradient(30deg, #f7e014, #0154d1);
}
body._pc .button.disabled:hover {
  background: #bdb8b8;
}
body._pc .button a:hover {
  color: white;
}
body._pc.lg .nav__sub-list.visible {
  z-index: 4;
  opacity: 0.9;
  display: block;
  min-width: 170px;
  visibility: visible;
  pointer-events: all;
  transition: all 0.25s ease;
}
@media (min-width: 767px) {
  body._pc.lg .nav__sub-list.visible {
    position: absolute;
  }
}
body._pc .nav__link {
  position: relative;
  transition: all 0.25s ease;
}
body._pc .nav__link::after {
  background: #17baaa;
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transition: all 0.25s ease;
  width: 100%;
}
body._pc .nav__link:hover.underscore::after {
  background: #17baaa;
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(1);
  transition: all 0.25s ease;
  width: 100%;
}
body._pc .nav__sub-link:hover {
  color: #4fe9da;
  font-size: 18px;
  white-space: nowrap;
  transition: all 0.25s ease 0s;
}
body._pc .cart__body {
  cursor: pointer;
}
body._pc .cart__body:hover {
  color: white;
}
body._pc .cart__body:hover h3 {
  color: #63d0f5;
}
body._pc .cart__body.cart__body_detail {
  cursor: default;
}
body._pc .pagination__items_item:hover {
  color: #4fe9da;
}
body._pc .pagination__items_item.inactive:hover {
  color: #bdb8b8;
}
body._pc .pagination__items_item.now:hover {
  color: #63d0f5;
}
body._pc .link-hover-text:hover {
  color: #63d0f5;
}

body._touch .block {
  padding: 0 10px 30px 10px;
}
body._touch .button:hover {
  background: linear-gradient(30deg, #0154d1, #f7e014);
}
body._touch .button.disabled:hover {
  background: #bdb8b8;
}
body._touch .button a:hover {
  color: white;
}
body._touch .menu-arrow {
  display: block;
  width: 0;
  height: 0;
  margin: 6px 0 0 5px;
  transition: transform 0.3s ease 0s;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 10px solid #fff;
}
body._touch .nav__item._active .menu-arrow {
  transform: rotate(-180deg);
}
body._touch .nav__item._active .nav__sub-list {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
  pointer-events: all;
}

@media (max-width: 767px) {
  body::after, body.lg::after {
    top: 50px;
  }
  .nav {
    justify-content: space-between;
    padding: 0;
  }
  .nav.lg {
    height: 50px;
  }
  .nav__logo {
    margin-left: 15px;
  }
  .nav__body {
    position: fixed;
    top: 0;
    right: -130%;
    width: 35%;
    min-width: 200px;
    height: 100%;
    background-color: #092320;
    z-index: 5;
    border-radius: 5px;
    padding: 100px 30px 30px 0;
    transition: all 0.3s ease 0s;
    flex-direction: column;
    justify-content: start;
    /* дає можнивість скролу */
    overflow: auto;
  }
  .nav__body._active {
    right: 0;
    opacity: 1;
  }
  .nav__block, .nav__list {
    flex-direction: column;
    padding-top: 0;
  }
  .nav__sub-list.visible {
    position: fixed;
    z-index: 5;
    background-color: #092320;
    right: 35%;
    margin-left: -30px;
    transform: translateY(-20px);
    padding: 0px 20px 30px 20px;
    border-radius: 10px 0 0 10px;
  }
  .nav__sub-list.visible a {
    color: white;
  }
  .nav__item {
    padding-bottom: 30px;
    padding-left: 30px;
  }
  .nav__sub-item {
    margin-top: 20px;
    height: 20px;
    padding-left: 5px;
  }
  .nav__sub-item:last-child {
    margin-bottom: 20px;
  }
  .menu-icon {
    display: block;
    z-index: 500;
    position: relative;
    margin: 15px 15px 0 0;
    width: 30px;
    height: 18px;
    cursor: pointer;
  }
  .menu-icon span {
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .menu-icon span, .menu-icon::before, .menu-icon::after {
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transform: all 0.3s ease 0s;
    background-color: #fff;
  }
  .menu-icon::before {
    content: "";
    top: 0;
  }
  .menu-icon::after {
    content: "";
    bottom: 0;
  }
  .menu-icon._active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu-icon._active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
  .menu-icon._active span {
    top: 50%;
    transform: scale(0) translate(0px, -50%);
  }
  .block {
    padding: 0 10px;
  }
  .block__head {
    font-size: 28px;
  }
  .block__title h2 {
    font-size: 28px;
  }
  .block .cart {
    height: auto;
    width: 90vw;
  }
  .block .cart__title {
    height: auto;
  }
  .block .cart__text {
    height: auto;
  }
  .block .cart__date {
    height: auto;
  }
  .footer {
    transform: all 0.3s ease 0s;
    padding: 15px 20px 10px 20px;
  }
  .footer._inactive {
    visibility: hidden;
  }
  .footer__row {
    flex-direction: column;
  }
  .footer__navigate {
    display: none;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
  }
  .footer__contact {
    margin-top: 15px;
  }
  .video__material {
    width: calc(85vw - 50px);
    margin: 0 -20px;
  }
  .video__material_window {
    width: calc(85vw - 70px);
    height: calc((85vw - 70px) / 1.58);
  }
  .block__item.item .item__title {
    width: 100%;
    margin-bottom: 20px;
  }
  .block__item.item .item__data {
    margin-left: 30px;
  }
  .search__body {
    left: 50%;
    transform: translateX(-50%);
  }
  .search__body_input {
    margin-top: 10px;
  }
  .alert__message {
    width: 80%;
    top: 30px;
  }
}
@media (max-width: 400px) {
  .video__item {
    margin: 20px 0;
  }
}
@media (max-width: 370px) {
  .block__head {
    font-size: 22px;
  }
  .block__title h2 {
    font-size: 26px;
  }
  .block .cart__title h3 {
    font-size: 20px;
  }
  .block .cart__text, .block .cart__date, .block .cart__date_avtor {
    font-size: 18px;
  }
  .footer__contact_block {
    flex-direction: column;
  }
  .footer__contact_value {
    padding-left: 30px;
  }
}
.accordion-collapse {
  display: none;
  transition: all 0.3s ease;
}

.accordion-collapse.show {
  display: block;
  width: 100%;
}

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