:root {
  --nav-arrow-icon: url("img/nav-arrow-dsp.svg");
  --nav-hover-color: #6E55D5;
  --video-play-icon: url("img/dsp-video-play-icon.svg");
  --moudle-completed-icon: url("img/dsp-module-checked.svg");
  --list-icon-color: #6E55D5;
}

body {
  color: #060028;
}

.website-banner {
  display: none;
}

._header {
  display: none;
}

.container {
  max-width: 1208px;
  margin: 0 auto;
  padding: 0 40px;
}

.course__inner {
  padding: 80px 0 140px;
}
.course__top {
  width: calc(58.7% - 12px);
}
.course__nav {
  margin-bottom: 16px;
}
.course__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}
.course__nav-list li {
  font: 400 16px/24px "Figtree";
}
.course__nav-list li.arrow {
  width: 12px;
  height: 12px;
  background: center/contain no-repeat var(--nav-arrow-icon);
}
.course__nav-list li:last-child {
  color: #72716B;
  cursor: default;
}
.course__nav-list li a {
  transition: 0.3s ease;
}
.course__nav-list li a:hover, .course__nav-list li a:visited:hover {
  color: var(--nav-hover-color);
  transition: 0.3s ease;
}
.course__title {
  font: 600 40px/50px "Jokker";
  margin: 0 0 48px;
}
.course__btn {
  display: none;
}
.course__box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.course__content {
  width: calc(58.7% - 12px);
}
.course__popup {
  width: calc(41.3% - 12px);
  position: sticky;
  top: 84px;
}
.course__popup-title {
  display: none;
}
.course__module {
  padding: 20px 18px 20px 20px;
  border-radius: 16px;
  border: 1px solid #9BA5B9;
  margin-bottom: 16px;
  transition: 0.3s;
}
.course__module:hover {
  background: #F8F8F8;
  transition: 0.3s;
}
.course__module.opened.active:hover {
  background: #F8F8F8;
}
.course__module.opened:hover {
  background: #fff;
}
.course__module.active:hover {
  background: #fff;
}
.course__module:last-child {
  margin: 0;
}
.course__module.completed .course__module-top::before {
  background: center/contain no-repeat var(--moudle-completed-icon);
  border: none;
}
.course__module-top {
  margin-left: 12px;
  padding-left: 28px;
  padding-right: 56px;
  position: relative;
  cursor: pointer;
}
.course__module-top::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #5B6375;
  border-radius: 50%;
}
.course__module-top::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: center/contain no-repeat url("img/module-arrow.svg");
  transition: 0.3s ease;
}
.course__module-top .title {
  font: 600 18px/20px "Figtree";
  margin-bottom: 4px;
}
.course__module-top .time {
  font: 400 16px/18px "Figtree";
  color: #5B6375;
}
.course__module-list {
  display: none;
}
.course__module-list li {
  border-radius: 8px;
  margin: 4px 0;
  cursor: pointer;
}
.course__module-list li:last-child {
  margin-bottom: 0;
}
.course__module-list li .link {
  padding: 8px 26px 8px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}
.course__module-list li .link, .course__module-list li .link:visited {
  color: #060028;
}
.course__module-list li .link .title {
  position: relative;
}
.course__module-list li .link .title::before {
  content: "";
  position: absolute;
  top: 3.5px;
  left: -28px;
  width: 16px;
  height: 16px;
  border: 1px solid #5B6375;
  border-radius: 50%;
}
.course__module-list li .link .time {
  font: 400 16px/24px "Figtree";
  color: #5B6375;
}
.course__module-list li:hover .link,
.course__module-list li:hover .link:visited {
  color: #2950E3;
  transition: 0.3s;
}
.course__module-list li.active, .course__module-list li:active:hover {
  background: #F6EFFF;
}
.course__module-list li.active .link,
.course__module-list li.active .link:visited, .course__module-list li:active:hover .link,
.course__module-list li:active:hover .link:visited {
  color: #060028;
}
.course__module-list li.completed .link .title::before {
  background: center/contain no-repeat var(--moudle-completed-icon);
  border: none;
}
.course__module.active .course__module-top::after, .course__module.opened .course__module-top::after {
  transform: rotate3d(1, 0, 0, 180deg);
  transition: 0.3s ease;
}
.course__module.active {
  border-color: #060606;
}
.course__module.active.opened .course__module-top::after {
  transform: rotate3d(0, 0, 0, 0deg);
  transition: 0.3s ease;
}
.course__module.active .course__module-list {
  display: block;
}

.course__content > *:first-child {
  margin-top: 0 !important;
}
.course__content .videoWrapper {
  position: relative;
  padding-top: 56.2%;
  height: 0;
}
.course__content .videoWrapper iframe,
.course__content .videoWrapper .iframe-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.course__content .videoWrapper iframe-btn,
.course__content .videoWrapper .iframe-video-btn {
  min-width: 100px;
  height: 100px;
  background-image: var(--video-play-icon);
  transition: 0.3s ease;
  pointer-events: none;
  border-radius: 50%;
}
.course__content .videoWrapper iframe:hover + .iframe-video-btn,
.course__content .videoWrapper .iframe-video:hover + .iframe-video-btn {
  scale: 1.15;
  transition: 0.3s ease;
}
.course__content p {
  font: 400 16px/24px "Figtree";
  margin: 16px 24px 0 0;
}
.course__content p:first-of-type {
  margin-top: 48px;
}
.course__content p.item-title {
  font: 600 24px/30px "Jokker";
  margin: 48px 0 24px;
}
.course__content .table-wrap::-webkit-scrollbar {
  display: none;
}
.course__content .table-wrap table {
  border-collapse: collapse;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border: 1px solid #060028;
  display: block;
  overflow: hidden;
}
.course__content .table-wrap table tr {
  border-bottom: 1px solid #060028;
}
.course__content .table-wrap table tr:last-child {
  border: none;
}
.course__content .table-wrap table tr:nth-child(2n) {
  background: #F8F8F8;
}
.course__content .table-wrap table td {
  border-right: 1px solid #060028;
}
.course__content .table-wrap table td:nth-child(1) {
  padding: 36px 16px 36px 24px;
  font: 600 16px/24px "Figtree";
  width: 248px;
}
.course__content .table-wrap table td:nth-child(2) {
  padding: 12px 24px;
  font: 400 16px/24px "Figtree";
}
.course__content .table-wrap table td:last-child {
  border: none;
}
.course__content .table-wrap table ul {
  padding-left: 16px;
}
.course__content .table-wrap table ul li {
  margin-top: 4px;
  padding-left: 16px;
  position: relative;
}
.course__content .table-wrap table ul li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--list-icon-color);
  border-radius: 50%;
}
.course__content .materials {
  padding: 40px 48px;
  border-radius: 16px;
}
.course__content .materials.materials-blog {
  background: #EBF0FF;
  margin-bottom: 24px;
}
.course__content .materials.materials-help {
  background: #F6EFFF;
}
.course__content .materials__title {
  font: 600 20px/22px "Figtree";
  margin: 0 0 16px;
}
.course__content .materials__list-item {
  margin-bottom: 12px;
}
.course__content .materials__list-item:last-child {
  margin: 0;
}
.course__content .materials__list-item a {
  font: 600 16px/24px "Figtree";
  display: inline-block;
  position: relative;
  padding-right: 30px;
}
.course__content .materials__list-item a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 18px;
  height: 12px;
  background: center/contain no-repeat url("img/materisals-arrow.svg");
  transition: 0.3s ease;
}
.course__content .materials__list-item a, .course__content .materials__list-item a:visited {
  color: #5273EF;
}
.course__content .materials__list-item a:hover::before {
  translate: 5px -50%;
  transition: 0.3s ease;
}
.course__content .course__btns {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.course__content .course__btns-btn {
  border: 2px solid #060028;
  border-radius: 100px;
  font: 600 16px/24px "Figtree";
  padding: 14px 38px;
  cursor: pointer;
  transition: 0.3s;
}
.course__content .course__btns-btn.prev-btn.disabled, .course__content .course__btns-btn.next-btn.disabled {
  pointer-events: none;
  opacity: 0;
}
.course__content .course__btns-btn.prev-btn:hover, .course__content .course__btns-btn.prev-btn:hover:visited, .course__content .course__btns-btn.next-btn:hover, .course__content .course__btns-btn.next-btn:hover:visited {
  color: #fff;
  background: #5273ef;
  border-color: #5273ef;
  transition: 0.3s;
}
.course__content .course__btns-btn.prev-btn:hover svg path, .course__content .course__btns-btn.prev-btn:hover:visited svg path, .course__content .course__btns-btn.next-btn:hover svg path, .course__content .course__btns-btn.next-btn:hover:visited svg path {
  stroke: #fff;
  transition: 0.3s;
}
.course__content .course__btns-btn span {
  position: relative;
}
.course__content .course__btns-btn span svg {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 18px;
}
.course__content .course__btns-btn.prev-btn {
  background: #fff;
}
.course__content .course__btns-btn.prev-btn, .course__content .course__btns-btn.prev-btn:visited {
  color: #060028;
}
.course__content .course__btns-btn.prev-btn span {
  padding-left: 30px;
}
.course__content .course__btns-btn.prev-btn span svg {
  left: 0;
}
.course__content .course__btns-btn.next-btn {
  background: #060028;
}
.course__content .course__btns-btn.next-btn, .course__content .course__btns-btn.next-btn:visited {
  color: #fff;
}
.course__content .course__btns-btn.next-btn span {
  padding-right: 30px;
}
.course__content .course__btns-btn.next-btn span svg {
  right: 0;
}

.cta {
  margin-bottom: 140px;
}
.cta__inner {
  background: #060028;
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 56px 72px;
}
.cta__title {
  text-align: left;
  color: #fff;
  padding-right: 24px;
  font: 600 40px/50px "Jokker";
  max-width: 700px;
}
.cta__title span {
  color: #56be87;
}
.cta__btn {
  width: 205px;
  text-align: center;
  background: #fff;
  color: #060028;
  border-radius: 100px;
  font: 600 16px/24px "Figtree";
  padding: 14px 38px;
  border: 2px solid #060028;
  margin: 0;
  white-space: nowrap;
  transition: 0.3s;
}
.cta__btn:hover {
  background: #5273ef;
  color: #fff;
  transition: 0.3s;
}

.footer__inner {
  padding-top: 0;
}

@media (max-width: 1023px) {
  body {
    padding-top: 65px;
  }

  .main {
    position: relative;
    overflow: hidden;
  }

  .header {
    display: none;
  }

  ._header {
    background: #fff;
    width: 100%;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: 0.3s;
  }
  ._header.scroll {
    box-shadow: -15px -10px 76px rgba(98, 109, 128, 0.14);
    transition: 0.3s;
  }
  ._header.active.scroll {
    box-shadow: none;
    transition: 0.3s;
  }
  ._header__inner {
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  ._header__logo-img {
    display: block;
  }
  ._header__btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: var(--header-bg-color);
    border-radius: 12px;
    border: none;
    padding: 0 8px;
    margin-right: -8px;
    transition: 0.3s;
  }
  ._header__btn span {
    width: 24px;
    height: 2px;
    background: var(--header-btn-color);
    position: relative;
    border-radius: 11px;
    transition: 0.3s;
  }
  ._header__btn span::before, ._header__btn span::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: var(--header-btn-color);
    border-radius: 11px;
    transition: 0.3s;
  }
  ._header__btn span::before {
    top: -7px;
  }
  ._header__btn span::after {
    bottom: -7px;
  }
  ._header__btn.active span {
    transform: rotate(45deg);
    transition: 0.3s;
  }
  ._header__btn.active span::before {
    top: 0;
    transform: translateX(-50%) rotate(90deg);
    transition: 0.3s;
  }
  ._header__btn.active span::after {
    height: 0;
    opacity: 0;
    transition: 0.3s;
  }

  .course__inner {
    padding: 80px 0 96px;
  }
  .course__top {
    width: 100%;
  }
  .course__title {
    margin-bottom: 32px;
  }
  .course__btn {
    display: table;
    border: 2px solid #060028;
    border-radius: 100px;
    background: #fff;
    color: #060028;
    font: 600 16px/24px "Figtree";
    padding: 14px 38px;
    cursor: pointer;
    margin-bottom: 48px;
    transition: 0.3s;
  }
  .course__btn:hover {
    border-color: #5273ef;
    background: #5273ef;
    color: #fff;
    transition: 0.3s;
  }
  .course__box {
    display: block;
  }
  .course__content {
    width: 100%;
  }
  .course__popup {
    position: fixed;
    top: 0;
    z-index: 500;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 96px 40px 70px;
    right: -100%;
    overflow: auto;
    transition: 0.3s ease;
  }
  .course__popup::-webkit-scrollbar {
    display: none;
  }
  .course__popup.active {
    right: 0;
    transition: 0.3s ease-in-out;
  }
  .course__popup-title {
    display: block;
    font: 600 32px/40px "Jokker";
    margin: 0 0 24px;
  }
  .course__aside {
    width: 100%;
    position: relative;
    top: 0;
  }

  .cta {
    margin-bottom: 96px;
  }
  .cta__inner {
    flex-direction: column;
    align-items: center;
    padding: 48px 46px;
  }
  .cta__title {
    font-size: 32px;
    line-height: 40px;
    margin: 0 0 32px;
    padding: 0;
    text-align: center;
    max-width: 580px;
  }
  .cta__btn {
    margin-bottom: 0;
    max-width: 200px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }

  .course__inner {
    padding: 48px 0 64px;
  }
  .course__nav-list {
    flex-wrap: wrap;
  }
  .course__nav-list li {
    font-size: 14px;
    line-height: 20px;
  }
  .course__title {
    font-size: 32px;
    line-height: 46px;
  }
  .course__content p {
    line-height: 26px;
  }
  .course__content p:first-of-type {
    margin-top: 32px;
  }
  .course__content .table-wrap {
    overflow: auto;
    margin: 0 -16px;
    padding: 0 16px;
  }
  .course__content .table-wrap table {
    min-width: 630px;
  }
  .course__content .videoWrapper .iframe-video-btn {
    min-width: 80px;
    height: 80px;
  }
  .course__content .materials {
    padding: 36px 32px;
  }
  .course__content .materials__list-item a {
    display: inline;
  }
  .course__content .materials__list-item a::before {
    translate: none;
    inset: unset;
    bottom: 2.5px;
    right: 0;
  }
  .course__content .materials__list-item a:hover::before {
    translate: none;
  }
  .course__btns {
    flex-direction: column-reverse;
    gap: 16px;
  }
  .course__btns-btn.prev-btn, .course__btns-btn.next-btn {
    width: 100%;
    text-align: center;
  }
  .course__btns-btn.prev-btn.disabled, .course__btns-btn.next-btn.disabled {
    display: none;
  }
  .course__popup {
    padding: 96px 16px 16px;
  }
  .course__popup-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .course__module {
    padding: 16px 10px 16px 16px;
  }
  .course__module-top {
    margin-left: 8px;
  }
  .course__module-top .title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 4px;
  }
  .course__module-top .time {
    font: 400 14px/15px "Figtree";
    color: #5B6375;
  }
  .course__module-list {
    margin-right: 8px;
  }
  .course__module-list li .link {
    padding: 11px 8px 11px 36px;
  }

  .cta {
    margin-bottom: 64px;
  }
  .cta__inner {
    padding: 32px 18px;
  }
  .cta__title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 24px;
  }
  .cta__title span {
    display: block;
  }
  .cta__btn {
    max-width: 100%;
  }
}

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