@font-face {
  font-family: "Calibri";
  src: url("../fonts/Calibri-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Calibri";
  src: url("../fonts/Calibri.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*,
::before,
::after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
body {
  height: 100%;
  width: 100%;
  font-family: "Calibri", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  text-align: left;
  color: #747474;
  background: #fff;
  scroll-behavior: smooth;
}

body.lock {
  overflow: hidden;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.subtitle {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.bold {
  font-weight: 700;
}

.txt + .txt {
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 50px;
  padding: 10px 30px;
  border-radius: 50px;
  font: inherit;
  color: #747474;
  /* white-space: nowrap; */
  cursor: pointer;
  background: #fff;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background: #ea5826;
  color: #fff;
}

.btn--big {
  height: 65px;
  padding: 13px 39px;
  font-size: 1.3rem;
  color: #fff;
  background: #3b82f6;
}

/* custom-check-contain */

.custom-check-contain *,
.custom-check-contain *::before,
.custom-check-contain *::after {
  box-sizing: content-box !important;
}

.custom-check-contain input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-check-contain span {
  line-height: inherit;
  font-size: 1rem;
  font-family: inherit;
}

.custom-check-contain {
  display: table;
  position: relative;
  padding-left: 2rem;
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.custom-check-contain input[type="checkbox"] ~ .custom-check-input {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.25rem;
  width: 1.25rem;
  background: #f1f5f9;
  transition: background 250ms;
  border: 1px solid #94a3b8;
  border-radius: 10rem;
}

.custom-check-contain input[type="radio"] ~ .custom-check-input {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.25rem;
  width: 1.25rem;
  background: #f1f5f9;
  transition: background 250ms;
  border: 1px solid #94a3b8;
  border-radius: 3rem;
}

.custom-check-contain input[type="checkbox"] ~ .custom-check-input::after {
  content: "";
  position: absolute;
  display: none;
  left: 0.4rem;
  top: 0.15rem;
  width: 0.3rem;
  height: 0.6rem;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transition: background 250ms;
  transform: rotate(45deg);
}

.custom-check-contain input[type="radio"] ~ .custom-check-input::after {
  content: "";
  position: absolute;
  display: none;
  left: 0.25rem;
  top: 0.25rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 3rem;
  background: #ffffff;
  transition: background 250ms;
}

.custom-check-contain
  input[type="checkbox"]:disabled
  ~ .custom-check-input::after {
  border-color: #ffffff;
}

.custom-check-contain input:checked ~ .custom-check-input::after {
  display: block;
}

.custom-check-contain:hover
  input[type="checkbox"]:not([disabled])
  ~ .custom-check-input,
.custom-check-contain input[type="checkbox"]:focus ~ .custom-check-input {
  background: #e2e8f0;
  border-color: #64748b;
}

.custom-check-contain:hover
  input[type="radio"]:not([disabled])
  ~ .custom-check-input,
.custom-check-contain input[type="radio"]:focus ~ .custom-check-input {
  background: #e2e8f0;
  border-color: #64748b;
}

.custom-check-contain input:focus ~ .custom-check-input {
  box-shadow: 0 0 0 2px #60a5fa;
}

.custom-check-contain input[type="checkbox"]:checked ~ .custom-check-input {
  background: #3b82f6;
  border-color: #1d4ed8;
}

.custom-check-contain input[type="radio"]:checked ~ .custom-check-input {
  background: #3b82f6;
  border-color: #1d4ed8;
}

.custom-check-contain input[type="checkbox"]:disabled ~ .custom-check-input,
.custom-check-contain input[type="radio"]:disabled ~ .custom-check-input {
  opacity: 0.5;
  cursor: not-allowed;
}

.custom-check-contain
  input[type="radio"]:disabled
  ~ .custom-check-input::after {
  background: #ffffff;
}

.custom-check-contain:hover
  input[type="checkbox"]:not([disabled]):checked
  ~ .custom-check-input,
.custom-check-contain
  input[type="checkbox"]:checked:focus
  ~ .custom-check-input {
  background: #2563eb;
  border-color: #1e40af;
}

.custom-check-contain:hover
  input[type="radio"]:not([disabled]):checked
  ~ .custom-check-input,
.custom-check-contain input[type="radio"]:checked:focus ~ .custom-check-input {
  background: #2563eb;
  border-color: #1e40af;
}

/* custom-input */

.custom-input,
.custom-textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px 20px;
  outline: none;
  border: 1px solid #64748b;
  font: inherit;
  color: inherit;
  border-radius: 30px;
  background: #fff;
  transition: border 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.custom-textarea {
  min-width: 100%;
  max-width: 100%;
  min-height: 200px;
}

.custom-input:focus,
.custom-textarea:focus {
  border: 1px solid #1e40af;
  box-shadow: 0 0 0 2px #60a5fa;
}

.custom-input::placeholder,
.custom-textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

/* wrapper */

.wrapper {
  width: 100%;
  height: auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* main */

.main {
  padding: 65px 0 0;
  flex: 1 0 auto;
}

/* container */

.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 30px;
}

/* header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 10;
  display: flex;
  align-items: center;
  background: #fff;
}

.header__container {
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  transition: all 0.3s ease-in-out;
}

.header__logo {
  flex: 1;
}

.header__logo-link {
  display: inline-block;
}

.header__logo-img {
  max-width: 128px;
}

.header__menu {
  min-width: 0;
}

.header__burger {
  display: none;
  width: 25px;
  height: 17px;
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.burger span {
  position: absolute;
  top: 7px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #747474;
  transition: all 0.2s linear;
}

.burger span:first-child {
  top: 0;
}

.burger span:last-child {
  top: auto;
  bottom: 0;
}

.burger.active span {
  transform: scale(0);
}

.burger.active span:first-child {
  transform: rotate(-45deg);
  top: 8px;
}

.burger.active span:last-child {
  transform: rotate(45deg);
  bottom: 7px;
}

.menu {
  color: #747474;
}

.menu__list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.menu__list--mob {
  display: none;
}

.menu__link {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.3s ease-in-out, border 0.3s ease-in-out;
}

.menu__item:nth-child(1),
.menu__item:nth-child(3) {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.menu__link--btn {
  display: inline-flex;
  align-items: center;
  height: 50px;
  padding: 10px 30px;
  border: 2px solid #747474;
  border-radius: 50px;
}

.header__menu .menu__item:hover .menu__link {
  color: #ea5826;
}

.header__menu .menu__item:hover .menu__link--btn {
  border: 2px solid #ea5826;
}

.header__menu .menu__item.active .menu__link {
  color: #ea5826;
}

.header__menu .menu__item.active .menu__link--btn {
  border: 2px solid #ea5826;
}

.header__user,
.header__favorite,
.header__cart {
  display: block;
  text-decoration: none;
  text-align: center;
  position: relative;
  color: inherit;
  transition: color 0.3s ease-in-out;
}

.header__user:hover,
.header__favorite:hover,
.header__cart:hover {
  color: #ea5826;
}

.header__favorite-count,
.header__cart-count {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 65%;
  display: block;
  text-decoration: none;
  height: 15px;
  min-width: 15px;
  padding: 3px 4px;
  text-align: center;
  line-height: 1;
  color: #fff;
  background-color: #ea5826;
  font-size: 10px;
  font-weight: 400;
  border-radius: 8px;
}

/* hero */

.hero {
  padding: 35px 0;
}

.hero__body {
  padding: 70px;
  border-radius: 50px;
  display: flex;
  background: #85b4c8;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.hero__txt-content {
  width: 50%;
}

.hero__title {
  margin-bottom: 15px;
  max-width: 750px;
  font-size: 70px;
}

.hero__subtitle {
  margin-bottom: 80px;
  max-width: 750px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.hero__btn-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero__btn:hover {
  background: #5d98ac;
  color: #fff;
}

.hero__img-content {
  width: 50%;
}

/* advantages */

.advantages {
  padding: 35px 0;
}

.advantages__body {
  padding: 70px;
  border-radius: 50px;
  display: flex;
  gap: 50px;
  background: #daa75e;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.advantages__title {
  margin-bottom: 60px;
}

.advantages__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.advantages__item {
  width: calc(100% / 4 - 90px / 4);
}

.advantages__item-title {
  margin-bottom: 5px;
  font-size: 80px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}

.advantages__img-content {
  flex: 1 0 367px;
}

.advantages__img {
  min-width: 300px;
  transition: all 0.3s ease-in-out;
}

/* courses */

.courses {
  padding: 35px 0;
}

.courses__body {
  position: relative;
  padding: 70px;
  border-radius: 50px;
  background: #ea5826;
  transition: all 0.3s ease-in-out;
}

.courses__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg-01.svg") no-repeat center / cover;
  opacity: 0.1;
}

.courses__title {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
  color: #fff;
}

.courses__search {
  margin-bottom: 50px;
}

.courses__search-form {
  display: block;
  position: relative;
}

.courses__search-input {
  margin-bottom: 0;
}

.courses__search-btn {
  position: absolute;
  height: 100%;
  padding: 12px 27px;
  right: 0;
  top: 0;
  z-index: 2;
  font-size: 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: 50%;
  background-image: url(../img/search.svg);
  background-size: 24px auto;
  background-color: transparent;
}

.courses__tag-nav {
  position: relative;
  margin-bottom: 40px;
}

.tag-nav__list {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}

.tag-nav__list li {
  margin: 5px;
}

.tag-nav__link {
  min-height: 50px;
  padding: 12px 30px 10px;
  display: inline-block;
  background: #e9440b;
  border-radius: 30px;
  color: #fff;
  transition: all 0.3s ease;
}

.tag-nav__link:hover {
  background-color: #f6f6f6;
  color: #747474;
}

.tag-nav__link.active {
  background-color: #f6f6f6;
  color: #747474;
  cursor: default;
}

.courses__sort-box {
  position: relative;
  max-width: 300px;
  margin-left: auto;
  margin-bottom: 40px;
}

.sort {
  padding: 0 40px 0 20px;
  width: 100%;
  min-width: 200px;
  height: 51px;
  display: block;
  border-radius: 30px;
  border: 1px solid #64748b;
  background-color: #fff;
  outline: none;
  font: inherit;
  font-size: 20px;
  color: inherit;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none !important;
  background-image: url("../img/select.svg");
  background-position: right 15px center;
  background-size: 24px auto;
  background-repeat: no-repeat;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.2s ease;
}

.sort::-ms-expand {
  display: none;
}

.sort:focus {
  border: 1px solid #1e40af;
  box-shadow: 0 0 0 2px #60a5fa;
}

.courses__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.courses__item {
  position: relative;

  padding: 50px;
  width: calc(100% / 3 - 40px / 3);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;

  border-radius: 50px;
  background: #f6f6f6;
  transition: all 0.3s ease-in-out;
}

.courses__img {
  width: 100%;
  max-width: 280px;
  margin: auto;
  border-radius: 50px;
}

.courses__item-txt {
  flex: 1;
}

.courses__item-btn {
  align-self: center;
  background: #ea5826;
  color: #fff;
}

.courses__item-btn:hover {
  background: #ec724a;
}

.courses__btn-box {
  position: relative;
  z-index: 1;
  margin-top: 50px;
  text-align: center;
}

.courses__btn {
  color: #747474;
  background: #f6f6f6;
}

.courses__btn:hover {
  color: #fff;
  background: #e9440b;
}

.courses__labels {
  position: absolute;
  top: 40px;
  left: 50px;
  width: calc(100% - 100px - 40px);
}

.courses__label-sale,
.courses__label-new,
.courses__label-discont,
.courses__label-cashback {
  margin: 2px 0;
  padding: 5px 15px 6px;
  display: inline-block;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}

.courses__label-sale {
  background-color: #dc7560;
}

.courses__label-new {
  background-color: #469fef;
}

.courses__label-discont {
  background-color: #ff5062;
}

.courses__label-cashback {
  background-color: #85b4c8;
}

.courses__actions {
  position: absolute;
  top: 40px;
  right: 50px;
  width: 31px;
}

.courses__favorites-btn {
  display: block;
  overflow: hidden;
  width: 31px;
  height: 31px;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  text-decoration: none;
  transition: all 0.2s ease;
}

.courses__favorites-btn.active {
  color: #ea5826;
}

/* courses-line */

.courses-line {
  padding: 105px 0;
}

.courses-line__container {
  padding: 0 100px;
}

.courses-line__title {
  margin-bottom: 80px;
}

.courses-line__courses-item {
  height: auto;
}

.courses-item {
  position: relative;

  padding: 50px;
  width: calc(100% / 3 - 40px / 3);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;

  border-radius: 50px;
  background: #f6f6f6;
  transition: all 0.3s ease-in-out;
}

.courses-item__img {
  width: 100%;
  max-width: 280px;
  margin: auto;
  border-radius: 50px;
}

.courses-item__item-btn {
  align-self: center;
  background: #ea5826;
  color: #fff;
}

.courses-item__item-btn:hover {
  background: #ec724a;
}

.courses-item__labels {
  position: absolute;
  top: 40px;
  left: 50px;
  width: calc(100% - 100px - 40px);
}

.courses-item__label-sale,
.courses-item__label-new,
.courses-item__label-discont,
.courses-item__label-cashback {
  margin: 2px 0;
  padding: 5px 15px 6px;
  display: inline-block;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}

.courses-item__label-new {
  background-color: #469fef;
}

.courses-item__label-discont {
  background-color: #ff5062;
}

.courses-item__label-cashback {
  background-color: #85b4c8;
}

.courses-item__label-sale {
  background-color: #dc7560;
}

.courses-item__actions {
  position: absolute;
  top: 40px;
  right: 50px;
  width: 31px;
}

.courses-item__favorites-btn {
  display: block;
  overflow: hidden;
  width: 31px;
  height: 31px;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  text-decoration: none;
  transition: all 0.2s ease;
}

.courses-item__favorites-btn.active {
  color: #ea5826;
}

/* content-section */

.content-section {
  padding: 35px 0;
}

.content-section__body {
  position: relative;
  padding: 70px;
  border-radius: 50px;
  background: #f6f6f6;
  transition: all 0.3s ease-in-out;
}

.content-section__body--bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg-01.svg") no-repeat center / cover;
  opacity: 0.6;
}

.content-section__body--bg .content-section__body-item,
.content-section__body--bg .content-section__title,
.content-section__body--bg .content-section__box,
.content-section__body--bg .content-section__txt {
  position: relative;
  z-index: 1;
}

.content-section__body-item {
  margin-top: 50px;
  padding: 50px;
  border-radius: 50px;
  background: #fff;
  transition: all 0.3s ease-in-out;
}

.content-section__body-item + .content-section__body-item {
  margin-top: 20px;
}

.content-section__title {
  margin-bottom: 60px;
}

.content-section__subtitle {
  margin-bottom: 30px;
}

.content-section__box {
  display: flex;
  gap: 20px;
}

.content-section__img-content {
  flex: 1 0 367px;
}

.content-section__img {
  min-width: 300px;
  transition: all 0.3s ease-in-out;
}

.content-section__list {
  margin: 20px 0;
}

.content-section__list:last-child {
  margin-bottom: 0;
}

ul .content-section__item {
  position: relative;
  padding-left: 15px;
}

ul .content-section__item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #747474;
}

ol .content-section__item {
  counter-increment: counter1;
}

ol .content-section__item::before {
  content: counter(counter1) ". ";
}

.content-section__item + .content-section__item {
  margin-top: 5px;
}

.content-section__item-link,
.content-section__link {
  transition: color 0.3s ease-in-out;
}

.content-section__item-link:hover,
.content-section__link:hover {
  color: #ea5826;
}

.content-section__btn-box {
  margin-top: 50px;
  text-align: center;
}

/* course */

.course {
  padding: 35px 0;
}

.course__body {
  padding: 70px;
  border-radius: 50px;
  background: #f6f6f6;
  transition: all 0.3s ease-in-out;
}

.course__title {
  margin-bottom: 60px;
}

.course__box {
  display: flex;
  gap: 30px;
}

.course__img-content {
  flex: 1 0 367px;
}

.course__img {
  min-width: 300px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.course__list {
  margin: 20px 0;
}

.course__list:last-child {
  margin-bottom: 0;
}

.course__item {
  position: relative;
  padding-left: 15px;
}

.course__item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #747474;
}

.course__item + .course__item {
  margin-top: 5px;
}

.course__item-link {
  transition: color 0.3s ease-in-out;
}

.course__item-link:hover {
  color: #ea5826;
}

.course__btn-box {
  margin-top: 50px;
  text-align: center;
}

.course__price-box {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px 20px;
}

.course__new-price {
  font-size: 40px;
  font-weight: 700;
}

.course__old-price {
  font-size: 30px;
  font-weight: 700;
  text-decoration: line-through;
}

.corse__labels-box {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.course__label-sale,
.course__label-new,
.course__label-discont,
.course__label-cashback {
  margin: 2px 0;
  padding: 5px 15px 6px;
  display: inline-block;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}

.course__label-sale {
  background-color: #dc7560;
}

.course__label-new {
  background-color: #469fef;
}

.course__label-discont {
  background-color: #ff5062;
}

.course__label-cashback {
  background-color: #85b4c8;
}

.course__favorites-btn {
  display: block;
  overflow: hidden;
  width: 31px;
  height: 31px;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  text-decoration: none;
  transition: all 0.2s ease;
}

.course__favorites-btn.active {
  color: #ea5826;
}

/* review-line */

.review-line {
  padding: 105px 0;
}

.review-line__container {
  padding: 0 100px;
}

.review-line__title {
  margin-bottom: 80px;
}

.review-line__review-item {
  height: auto;
}

.review-item {
  padding: 50px;
  border-radius: 50px;
  background: #f6f6f6;
  transition: padding 0.3s ease-in-out, border-radius 0.3s ease-in-out;
}

.review-item__subtitle {
  margin-bottom: 15px;
}

.review-item__stars {
  margin-bottom: 30px;
  display: flex;
  gap: 5px;
}

.review-item__star {
  display: block;
  width: 14px;
  height: 13px;
  background: url("../img/star.svg") no-repeat center / contain;
}

.review-item__star--grey {
  background: url("../img/star-grey.svg") no-repeat center / contain;
}

/* banner */

.banner {
  padding: 35px 0;
}

.banner__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 50px;
}

.banner__img--mob {
  display: none;
}

/* purchase */

.purchase {
  padding: 35px 0;
}

.purchase__body {
  padding: 70px 0;
  border-radius: 50px;
  background: #f6f6f6;
  transition: all 0.3s ease-in-out;
}

.purchase__title {
  margin: 0 70px 80px;
}

.purchase__box {
  padding: 0 70px;
  display: flex;
  gap: 20px;
}

.purchase__items {
  width: 50%;
  transition: width 0.3s ease-in-out;
}

.purchase__list {
  border-radius: 50px;
  background: #f6f6f6;
  transition: padding 0.3s ease-in-out, border-radius 0.3s ease-in-out;
}

.purchase__item {
  padding: 50px;
  border-radius: 50px;
  background: #fff;
  transition: padding 0.3s ease-in-out, border-radius 0.3s ease-in-out;
}

.purchase__item + .purchase__item {
  margin-top: 20px;
}

.purchase__item-header {
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 30px;
  font-weight: 700;
}

.purchase__btn-container {
  margin-top: 50px;
  text-align: center;
}

.purchase__checkout {
  width: 50%;
}

.purchase__checkout-body {
  position: sticky;
  top: 120px;
  padding: 50px;
  border-radius: 50px;
  background: #fff;
  transition: padding 0.3s ease-in-out, border-radius 0.3s ease-in-out;
}

.purchase__checkout-subtitle {
  margin-bottom: 30px;
}

.purchase__checkout-box {
  margin-bottom: 30px;
  display: flex;
}

.purchase__inputs {
  min-width: 260px;
  flex: 1;
}

.purchase__custom-input-box {
  margin-bottom: 20px;
}

.purchase__inputs .custom-check-contain {
  margin-bottom: 20px;
}

.purchase__img-content {
  position: relative;
  left: -30px;
  margin-right: -80px;
  max-width: 368px;
  align-self: flex-end;
  pointer-events: none;
}

.purchase__btn-box {
  text-align: center;
}

/* popular-articles */

.popular-articles {
  padding: 35px 0;
}

.popular-articles__body {
  position: relative;
  padding: 70px;
  border-radius: 50px;
  background: #f6f6f6;
  transition: all 0.3s ease-in-out;
}

.popular-articles__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg-01.svg") no-repeat center / cover;
  opacity: 0.6;
}

.popular-articles__title {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}

.popular-articles__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.popular-articles__item {
  padding: 50px;
  width: calc(100% / 3 - 40px / 3);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;

  border-radius: 50px;
  background: #fff;
  transition: all 0.3s ease-in-out;
}

.popular-articles__link {
  transition: color 0.3s ease-in-out;
}

.popular-articles__link:hover {
  color: #ea5826;
}

.popular-articles__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 50px;
}

.popular-articles__item-txt {
  flex: 1;
}

.popular-articles__btn-box {
  position: relative;
  z-index: 1;
  margin-top: 50px;
  text-align: center;
}

.popular-articles__btn {
  color: #fff;
  background: #3b82f6;
}

/* news */

.news {
  padding: 35px 0;
}

.news__body {
  position: relative;
  padding: 70px;
  border-radius: 50px;
  background: #f6f6f6;
  transition: all 0.3s ease-in-out;
}

.news__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg-01.svg") no-repeat center / cover;
  opacity: 0.6;
}

.news__title {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}

.news__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.news__item {
  padding: 50px;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;

  border-radius: 50px;
  background: #fff;
  transition: all 0.3s ease-in-out;
}

.news__link {
  transition: color 0.3s ease-in-out;
}

.news__link:hover {
  color: #ea5826;
}

.news__item-txt {
  flex: 1;
}

.news__btn-container {
  text-align: center;
}

.news__btn-box {
  position: relative;
  z-index: 1;
  margin-top: 50px;
  text-align: center;
}

.news__btn {
  color: #fff;
  background: #3b82f6;
}

/* reviews */

.reviews {
  padding: 35px 0;
}

.reviews__body {
  padding: 70px;
  border-radius: 50px;
  background: #ffd43e url("../img/reviews-1.png") no-repeat top 50px right 60px /
    249px auto;
  transition: all 0.3s ease-in-out;
}

.reviews__top-box-content {
  margin-bottom: 80px;
  padding-right: 249px;
}

.reviews__title {
  margin-bottom: 30px;
  color: #323555;
}

.reviews__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.reviews__review-item {
  width: 100%;
}

.reviews__btn-box {
  margin-top: 50px;
  text-align: center;
}

.reviews__btn {
  color: #fff;
  background: #ff5062;
}

/* user-review */

.user-review {
  padding: 35px 0;
}

.user-review__body {
  padding: 70px;
  border-radius: 50px;
  background: #f6f6f6;
  transition: all 0.3s ease-in-out;
}

.user-review__title {
  margin-bottom: 60px;
}

.user-review__txt {
  margin-bottom: 30px;
}

.user-review__inputs {
  margin-bottom: 30px;
  min-width: 260px;
}

.user-review__stars {
  margin-bottom: 20px;
  display: flex;
  gap: 5px;
}

.user-review__star {
  display: block;
  width: 28px;
  height: 26px;
  background: url("../img/star.svg") no-repeat center / contain;
}

.user-review__star--grey {
  background: url("../img/star-grey.svg") no-repeat center / contain;
}

.user-review__btn-box {
  text-align: center;
}
.user-review__btn {
  color: #fff;
  background: #3b82f6;
}

/* contact */

.contact {
  padding: 35px 0;
}

.contact__body {
  padding: 70px;
  border-radius: 50px;
  background: #f6f6f6;
  transition: all 0.3s ease-in-out;
}

.contact__title {
  margin-bottom: 60px;
}

.contact__box {
  display: flex;
  gap: 20px 60px;
}

.contact__txt {
  margin-bottom: 30px;
}

.contact__link {
  transition: color 0.3s ease-in-out;
}

.contact__link:hover {
  color: #ea5826;
}

.contact__inputs {
  margin-bottom: 30px;
  min-width: 260px;
}

.contact__btn-box {
  text-align: center;
}
.contact__btn {
  color: #fff;
  background: #3b82f6;
}

.contact__img-content {
  flex: 1 0 367px;
}
.contact__img {
  min-width: 300px;
  transition: all 0.3s ease-in-out;
}

/* footer */

.footer {
  padding: 35px 0 0;
}

.footer__top {
  padding: 140px 0;
  background: #474847;
}

.footer__logo {
  margin-bottom: 40px;
  display: block;
}

.footer__logo-img {
  margin: auto;
}

.footer__menu-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 30px;
}

.footer__menu-item {
  text-align: center;
}

.footer__menu-link {
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}

.footer__menu-link:hover {
  color: #ea5826;
}

.footer__menu-link--btn:hover {
  border: 2px solid #ea5826;
}

.footer__menu-link--btn {
  display: inline-flex;
  align-items: center;
  height: 50px;
  padding: 10px 30px;
  border: 2px solid #747474;
  border-radius: 50px;
}

.footer svg {
  display: block;
}

.footer__bottom {
  padding: 70px 0;
  background: #3d3f3d;
}

.footer__payment-methods {
  margin-bottom: 40px;
}

.payment-methods__list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
}

.payment-methods__item {
  display: inline-block;
  width: 60px;
  height: 33px;
}

.payment-methods__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__bottom .footer__menu {
  margin-bottom: 40px;
}

.footer__copyright {
  text-align: center;
}

/* media */

@media (max-width: 1400px) {
  .advantages__title {
    margin-bottom: 50px;
  }

  .advantages__item {
    width: calc(100% / 2 - 30px / 2);
  }

  .courses__item {
    padding: 50px;
    width: calc(100% / 2 - 20px / 2);
  }

  .popular-articles__item {
    width: calc(100% / 2 - 20px / 2);
  }
}

@media (max-width: 1300px) {
  .main {
    padding: 55px 0 0;
  }

  .header__container {
    padding: 0 30px;
  }

  .header {
    height: 70px;
  }

  .header__menu {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    padding: 30px 0 60px;
    display: block;
    text-align: center;
    background: #fff;
    overflow: auto;
  }

  .header__menu.active {
    left: 0;
  }

  .header__burger {
    display: block;
  }

  .menu__list {
    display: block;
    text-align: left;
  }

  .menu__list--full {
    display: none;
  }

  .menu__items {
    padding: 10px 30px;
  }

  .menu__mob-subtitle {
    margin-bottom: 10px;
  }

  .menu__item {
    padding: 5px 0;
    display: block;
  }

  .hero {
    padding: 15px 0;
  }

  .hero__title {
    font-size: 60px;
  }

  .hero__subtitle {
    margin-bottom: 50px;
    font-size: 40px;
  }
}

@media (max-width: 1100px) {
  .title {
    font-size: 50px;
  }

  .subtitle {
    font-size: 30px;
  }

  .container {
    padding: 0 15px;
  }

  .menu__items {
    padding: 10px 15px;
  }

  /* hero */

  .hero__body {
    padding: 50px;
  }

  .hero__subtitle {
    font-size: 35px;
  }

  /* advantages */

  .advantages {
    padding: 15px 0;
  }

  .advantages__body {
    padding: 50px;
    gap: 50px;
  }

  .advantages__title {
    margin-bottom: 35px;
  }

  .advantages__img-content {
    flex: 1 1 367px;
  }

  .advantages__img {
    min-width: 250px;
  }

  /* courses */

  .courses {
    padding: 15px 0;
  }

  .courses__body {
    padding: 50px;
  }

  .courses__title {
    margin-bottom: 50px;
  }

  .courses__item {
    padding: 50px 30px;
  }

  .courses__labels {
    left: 30px;
  }

  .courses__actions {
    right: 30px;
  }

  /* content-section */

  .content-section {
    padding: 15px 0;
  }

  .content-section__body {
    padding: 50px;
  }

  .content-section__body-item {
    padding: 50px 30px;
  }

  .content-section__title {
    margin-bottom: 35px;
  }

  .content-section__img-content {
    flex: 1 1 367px;
  }

  .content-section__img {
    min-width: 250px;
  }

  /* course */

  .course {
    padding: 15px 0;
  }

  .course__body {
    padding: 50px;
  }

  .course__title {
    margin-bottom: 35px;
  }

  .course__img-content {
    flex: 1 1 367px;
  }

  .course__img {
    min-width: 250px;
  }

  /* review-line */

  .review-line {
    padding: 65px 0;
  }

  .review-line__container {
    padding: 0 65px;
  }

  .review-line__title {
    margin-bottom: 50px;
  }

  .review-item {
    padding: 50px 30px;
  }

  /* banner */

  .banner {
    padding: 15px 0;
  }

  /* purchase */

  .purchase {
    padding: 15px 0;
  }

  .purchase__body {
    padding: 50px 0;
  }

  .purchase__title {
    margin: 0 50px 50px;
  }

  .purchase__box {
    padding: 0 50px;
    display: flex;
    gap: 20px;
  }

  /* .purchase__list {
    padding: 50px;
  } */

  .purchase__item {
    padding: 50px 30px;
  }

  .purchase__checkout-body {
    top: 90px;
    padding: 50px;
  }

  .purchase__img-content {
    left: -50px;
    margin-right: -80px;
  }

  /* popular-articles */

  .popular-articles {
    padding: 15px 0;
  }

  .popular-articles__body {
    padding: 50px;
  }

  .popular-articles__title {
    margin-bottom: 50px;
  }

  .popular-articles__item {
    padding: 50px 30px;
  }

  /* news */

  .news {
    padding: 15px 0;
  }

  .news__body {
    padding: 50px;
  }

  .news__title {
    margin-bottom: 50px;
  }

  .news__item {
    padding: 50px 30px;
  }

  /* reviews */

  .reviews {
    padding: 15px 0;
  }

  .reviews__body {
    padding: 50px;
  }

  .reviews__top-box-content {
    margin-bottom: 50px;
  }

  /* user-review */

  .user-review {
    padding: 15px 0;
  }

  .user-review__body {
    padding: 50px;
  }

  .user-review__title {
    margin-bottom: 35px;
  }

  /* contact */

  .contact {
    padding: 15px 0;
  }

  .contact__body {
    padding: 50px;
  }

  .contact__title {
    margin-bottom: 35px;
  }

  .contact__box {
    gap: 20px 35px;
  }

  .contact__img-content {
    flex: 1 1 367px;
  }
  .contact__img {
    min-width: 250px;
  }
}

@media (max-width: 980px) {
  /* purchase */

  .purchase__item-header {
    flex-direction: column;
    gap: 0;
  }

  .purchase__item-price {
    padding-left: 40px;
  }
}

@media (max-width: 800px) {
  /* hero */

  .hero__body {
    flex-direction: column;
    gap: 30px;
  }

  .hero__txt-content {
    width: 100%;
  }

  .hero__img-content {
    width: 100%;
  }

  .hero__img {
    margin: auto;
  }

  /* advantages */

  .advantages__body {
    flex-direction: column;
  }

  .advantages__img-content {
    width: 100%;
    flex: 1 1 auto;
    order: 1;
  }

  .advantages__img {
    max-width: 367px;
    margin: auto;
  }

  /* courses */

  .courses__item {
    width: 100%;
  }

  /* content-section */

  .content-section__box {
    flex-direction: column;
    gap: 30px;
  }

  .content-section__img-content {
    width: 100%;
    flex: 1 1 auto;
    order: 1;
  }

  .content-section__img {
    margin: auto;
    max-width: 367px;
  }

  /* course */

  .course__box {
    flex-direction: column;
    gap: 30px;
  }

  .course__img-content {
    width: 100%;
    flex: 1 1 auto;
  }

  .course__img {
    margin: auto;
    max-width: 367px;
  }

  /* banner */

  .banner__img {
    display: none;
  }

  .banner__img--mob {
    display: block;
  }

  /* purchase */

  .purchase__box {
    flex-direction: column;
    gap: 80px;
  }

  .purchase__items {
    width: 100%;
  }

  .purchase__checkout {
    width: 100%;
  }

  .purchase__img-content {
    left: -30px;
    margin-right: -60px;
  }

  /* popular-articles */

  .popular-articles__item {
    width: 100%;
  }

  /* reviews */

  .reviews__body {
    background: #ffd43e url("../img/reviews-1.png") no-repeat top 60px right
      40px / 120px auto;
  }

  .reviews__top-box-content {
    padding-right: 110px;
  }

  /* contact */

  .contact__box {
    flex-direction: column;
    gap: 30px;
  }

  .contact__txt-content {
    order: 1;
  }

  .contact__img-content {
    width: 100%;
    flex: 1 1 auto;
  }

  .contact__img {
    margin: auto;
    max-width: 367px;
  }
}

@media (max-width: 500px) {
  .btn {
    min-width: 180px;
    height: auto;
    min-height: 50px;
    line-height: 1;
    white-space: normal;
  }

  .btn--big {
    height: 65px;
  }

  /* hero */

  .hero__body {
    padding: 40px 15px;
    border-radius: 40px;
  }

  /* advantages */

  .advantages__body {
    padding: 40px 15px;
    border-radius: 40px;
  }

  .advantages__item {
    width: 100%;
  }

  .advantages__item-subtitle {
    max-width: 350px;
  }

  .advantages__img {
    max-width: 70%;
  }

  /* courses */

  .courses__body {
    padding: 40px 15px;
    border-radius: 40px;
  }

  .courses__item {
    padding: 40px 15px;
    border-radius: 40px;
    gap: 20px;
  }

  .courses__btn-box {
    margin-top: 30px;
  }

  .courses__labels {
    top: 30px;
    left: 15px;
  }

  .courses__actions {
    top: 30px;
    right: 15px;
  }

  /* content-section */

  .content-section__body {
    padding: 40px 15px;
    border-radius: 40px;
  }

  .content-section__body-item {
    margin-top: 40px;
    padding: 40px 15px;
    border-radius: 40px;
  }

  .content-section__img {
    max-width: 70%;
  }

  .content-section__subtitle {
    margin-bottom: 20px;
  }

  .content-section__btn-box {
    margin-top: 30px;
  }

  /* course */

  .course__body {
    padding: 40px 15px;
    border-radius: 40px;
  }

  .courses__search {
    margin-bottom: 30px;
  }

  .course__img {
    max-width: 70%;
    border-radius: 40px;
  }

  .course__btn-box {
    margin-top: 30px;
  }

  /* review-line */

  .review-line {
    padding: 55px 0;
  }

  .review-line__container {
    padding: 0 30px;
  }

  .review-item {
    padding: 40px 15px;
    border-radius: 40px;
  }

  .review-item__subtitle {
    margin-bottom: 10px;
  }

  .review-item__stars {
    margin-bottom: 20px;
  }

  /* banner */

  .banner__img {
    border-radius: 40px;
  }

  /* purchase */

  .purchase__body {
    padding: 40px 0;
  }

  .purchase__title {
    margin: 0 15px 50px;
  }

  .purchase__box {
    padding: 0 15px;
    gap: 70px;
  }

  .purchase__list {
    padding: 0;
    border-radius: 40px;
  }

  .purchase__item {
    padding: 40px 15px;
    border-radius: 40px;
  }

  .purchase__btn-container {
    margin-top: 30px;
  }

  .purchase__checkout-body {
    padding: 40px 15px;
    border-radius: 40px;
  }

  .purchase__checkout-box {
    flex-direction: column;
  }

  .purchase__img-content {
    position: static;
    width: 100%;
    margin: auto;
    pointer-events: auto;
  }

  .purchase__img {
    max-width: 70%;
    margin: auto;
  }

  /* popular-articles */

  .popular-articles__body {
    padding: 40px 15px;
    border-radius: 40px;
  }

  .popular-articles__item {
    padding: 40px 15px;
    border-radius: 40px;
    gap: 20px;
  }

  .popular-articles__img {
    border-radius: 40px;
  }

  .popular-articles__btn-box {
    margin-top: 30px;
  }

  /* news */

  .news__body {
    padding: 40px 15px;
    border-radius: 40px;
  }

  .news__item {
    padding: 40px 15px;
    border-radius: 40px;
    gap: 20px;
  }

  .news__btn-box {
    margin-top: 30px;
  }

  /* reviews */

  .reviews__body {
    padding: 40px 15px;
    border-radius: 40px;
    background: #ffd43e url("../img/reviews-1.png") no-repeat top 40px right
      10px / 70px auto;
  }

  .reviews__top-box-content {
    padding-right: 60px;
  }

  .reviews__btn-box {
    margin-top: 30px;
  }

  /* user-review */

  .user-review__body {
    padding: 40px 15px;
    border-radius: 40px;
  }

  .user-review__txt {
    margin-bottom: 20px;
  }

  .user-review__inputs {
    margin-bottom: 20px;
    min-width: 260px;
  }

  /* contact */

  .contact__body {
    padding: 40px 15px;
    border-radius: 40px;
  }

  .contact__txt {
    margin-bottom: 20px;
  }

  .contact__inputs {
    margin-bottom: 20px;
    min-width: 260px;
  }

  .contact__img {
    max-width: 70%;
  }

  /* footer */

  .footer__menu-list {
    gap: 20px;
    flex-direction: column;
  }
}

@media (max-width: 379px) {
  .header__container {
    gap: 20px;
  }

  .header__favorite {
    display: none;
  }
}

/* ACCOUNT */

.account {
  padding: 35px 0;
}

.account__body {
  position: relative;
  padding: 70px;
  border-radius: 50px;
  background: #f6f6f6;
  transition: all 0.3s ease-in-out;
}

.account__title {
  margin-bottom: 80px;
}

.account__box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.account__box-container {
  flex: 1 0 40%;
  max-width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
}

.account__box-content {
  flex: 1;
  margin-bottom: 20px;
  padding: 40px 15px;
  border-radius: 40px;
  background: #fff;
}

.account__box-discont {
  flex: 0;
  background-color: #ff717f;
}

.account__box-title {
  margin-bottom: 20px;

  /* font-size: 26px; */
}

.account__box-discont .account__box-title {
  color: #fff;
  margin-bottom: 0;
}

.history__item {
  margin-bottom: 20px;
}

.history__item p {
  margin-bottom: 10px;
}

.history__item a {
  color: inherit;
  text-decoration: underline;
  transition: all 0.2s ease;
}

.history__item a:hover {
  color: #199f83;
  text-decoration: underline;
}

.history__btn-container {
  margin: 10px 0 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.history__btn,
.history__cancel-btn {
  color: #fff;
  background: #3b82f6;
}

.see-more-btn {
  margin-top: 50px;
  text-align: center;
}

.see-more-btn__btn {
  color: #fff;
  background: #3b82f6;
}

.cancel-btn {
  padding: 11px 23px;
  display: inline-block;
  font-size: 14px;
  color: #3c3d3c;
  background-color: #fff;
  border: 2px solid #3c3d3c;
  border-radius: 30px;
  transition: all 0.2s ease;
}

.cancel-btn:hover {
  color: #fff;
  border: 2px solid #199f83;
  background-color: #199f83;
}

.account-link {
  color: inherit;
  text-decoration: underline;
  transition: all 0.2s ease;
}

.account-link:hover {
  color: #ea5826;
  text-decoration: underline;
}

.bonus-account__text,
.affiliate-program__text {
  margin-bottom: 15px;
}

.bonus-program p,
.bonus-account p,
.affiliate-program p {
  margin-bottom: 10px;
}

.account-notifications__table,
.bonus-account__table,
.affiliate-program__table {
  margin-bottom: 30px;
}

.account__table table {
  width: 100%;
  border-radius: 15px;
  background-color: #747474;
}

.account__table tr:first-child th {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.account__table tr:not(:first-child) {
  font-size: 12px;
  background-color: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #747474;
}

.account__table tr:last-child {
  border-bottom: none;
}

.account__table th,
.account__table td {
  padding: 5px 10px;
  transition: all 0.2s ease;
}

.bonus-account__table td:nth-child(2) {
  white-space: nowrap;
}

.affiliate-program__table td:nth-child(2) {
  word-break: break-word;
}

.affiliate-program__table td:nth-child(3) {
  white-space: nowrap;
}

.settings-btn {
  text-align: center;
}

.settings-btn__btn {
  color: #fff;
  background: #3b82f6;
}

.affiliate-program .settings-btn {
  margin-bottom: 20px;
}

.bonus-program {
  margin-bottom: 30px;
}

.bonus-program__description {
  margin-bottom: 20px;
}

.contact-information {
  margin-bottom: 30px;
}

.contact-information__item {
  margin-bottom: 5px;
  display: flex;
  align-items: baseline;
}

.contact-information__title {
  padding-right: 5px;
}

.account__btn-box {
  margin-top: 30px;
  text-align: center;
}

.account__btn {
  color: #fff;
  background: #3b82f6;
}

@media (max-width: 1100px) {
  .account {
    padding: 15px 0;
  }

  .account__body {
    padding: 40px 15px;
  }

  .account__title {
    margin-bottom: 50px;
  }
}

@media (max-width: 840px) {
  .account__box-container {
    flex: 1 0 100%;
    max-width: 100%;
  }

  .account__box > .account__box-container:nth-child(1) {
    order: 1;
  }

  .account__box > .account__box-container:nth-child(2) {
    order: 3;
  }

  .account__box > .account__box-container:nth-child(3) {
    order: 2;
  }

  .account__box > .account__box-container:nth-child(4) {
    order: 4;
  }
  .account__box > .account__box-container:nth-child(5) {
    order: 6;
  }

  .account__box > .account__box-container:nth-child(6) {
    order: 5;
  }
}

@media (max-width: 640px) {
  .affiliate-program__table td:nth-child(4) {
    word-break: break-word;
  }
}

@media (max-width: 460px) {
  .account__table th,
  .account__table td {
    padding: 5px 5px;
  }
}

/* ORDER-DETAILED */

.order-detailed {
  padding: 35px 0;
}

.order-detailed__body {
  padding: 70px;
  border-radius: 50px;
  background: #f6f6f6;
  transition: all 0.3s ease-in-out;
}

.order-detailed__title {
  margin-bottom: 80px;
}

.order-detailed__box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.order-detailed__box-container {
  flex: 1 0 40%;
  max-width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
}

.order-detailed__box-content {
  flex: 1;
  padding: 30px 15px;

  border-radius: 40px;
  background: #fff;
}

.order-detailed__box-title {
  margin-bottom: 20px;
}

.info-detailed__item {
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
}

.info-detailed__title {
  padding-right: 5px;
}

.info-detailed__table {
  margin: 10px 0 15px;
}

.info-detailed__text p:not(:last-child) {
  margin-bottom: 10px;
}

.info-detailed__btn-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.info-detailed__btn {
  margin-right: 10px;
}

.info-detailed__btn,
.info-detailed__cancel-btn {
  color: #fff;
  background: #3b82f6;
}

.info-detailed__post-table {
  margin: 10px 0 0;
}

@media (max-width: 1100px) {
  .order-detailed {
    padding: 15px 0;
  }

  .order-detailed__body {
    padding: 40px 15px;
  }

  .order-detailed__title {
    margin-bottom: 50px;
  }
}

@media (max-width: 840px) {
  .order-detailed__box-container {
    flex: 1 0 100%;
    max-width: 100%;
  }
}

/* ORDER-INFO */

.order-info {
  padding: 80px 0;
}

.order-info-title {
  margin-bottom: 20px;
  text-align: center;
}

.order-info__input-items {
  margin: 0 auto;
  margin-bottom: 30px;
  max-width: 500px;
}

.order-info__input:not(:last-child) {
  margin-bottom: 20px;
}

.order-info__btn-container {
  text-align: center;
}

@media (max-width: 640px) {
  .order-info {
    padding: 0 0 80px 0;
  }
}

/* HISTORY */

.order-history {
  padding: 80px 0;
}

.order-history__body {
  padding: 70px;
  border-radius: 50px;
  background: #f6f6f6;
  transition: all 0.3s ease-in-out;
}

.order-history__title {
  margin-bottom: 80px;
}

.order-history__sort-container {
  margin-bottom: 20px;
  max-width: 300px;
  margin-left: auto;
}

.order-history__box {
  padding: 30px 15px;
  border-radius: 30px;
  background: #fff;
  transition: all 0.2s ease;
}

.order-history__items {
  border-collapse: collapse;
  border-spacing: 0;
}

.order-history__item:not(:first-child) {
  border-top: 1px solid #d9d9d9;
}

.order-history__item-content.subtitle {
  text-align: center;
}

.order-history__item span {
  display: none;
}
.order-history__item-content {
  padding: 15px 7.5px;
}

.order-history__item-content:nth-child(7) {
  white-space: nowrap;
}

.order-history__item-content a {
  color: inherit;
  text-decoration: underline;
  transition: all 0.2s ease;
}

.order-history__item-content a:hover {
  color: #ea5826;
  text-decoration: underline;
}

.order-history__btns .order-history__item-content {
  padding: 0 7.5px 15px;
  text-align: center;
}

.order-history__btn-container {
  margin: 10px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.order-history__btn,
.order-history__cancel-btn {
  color: #fff;
  background: #3b82f6;
}

@media (max-width: 1100px) {
  .order-history {
    padding: 15px 0;
  }

  .order-history__body {
    padding: 40px 15px;
  }

  .order-history__title {
    margin-bottom: 50px;
  }
}

@media (max-width: 840px) {
  .order-history__items,
  .order-history__items tbody,
  .order-history__item,
  .order-history__btns,
  .order-history__item-content {
    display: block;
  }

  .order-history__item:first-child {
    display: none;
  }

  .order-history__item:not(:first-child) {
    border-top: none;
  }

  .order-history__item:not(:nth-child(2)) {
    border-top: 1px solid #d9d9d9;
  }

  .order-history__item,
  .order-history__btns {
    padding: 15px 0;
  }

  .order-history__item-content {
    margin-bottom: 10px;
    padding: 0;
  }

  .order-history__btns {
    padding: 0 0 15px;
  }

  .order-history__btns .order-history__item-content {
    padding: 0;
    text-align: left;
  }

  .order-history__item span {
    display: inline;
  }
}

/* NOTICES */

.account-notices {
  padding: 35px 0;
}

.account-notices__body {
  padding: 70px;
  border-radius: 50px;
  background: #f6f6f6;
  transition: all 0.3s ease-in-out;
}

.account-notices__title {
  margin-bottom: 80px;
}

.account-notices__box {
  padding: 20px 15px;

  border-radius: 40px;
  background: #fff;
  transition: all 0.2s ease;
  overflow: auto;
}

.account-notices__items {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.account-notices__item:not(:first-child) {
  border-top: 1px solid #d9d9d9;
}

.account-notices__item-content.subtitle {
  text-align: center;
}

.account-notices__item-content {
  padding: 15px 7.5px;
}

@media (max-width: 1100px) {
  .account-notices {
    padding: 15px 0;
  }

  .account-notices__body {
    padding: 40px 15px;
  }

  .account-notices__title {
    margin-bottom: 50px;
  }
}

@media (max-width: 840px) {
  .account-notices__item-content {
    padding: 15px 0;
  }

  .account-notices__item-content:nth-child(2) {
    padding: 15px;
  }
}

/* PERSONAL-INFO */

.personal-info {
  padding: 35px 0;
}

.personal-info__body {
  position: relative;
  padding: 70px;
  border-radius: 50px;
  background: #f6f6f6;
  transition: all 0.3s ease-in-out;
}

.personal-info__title {
  margin-bottom: 80px;
}

.personal-info__box {
  margin-bottom: 20px;
  padding: 30px 15px;

  border-radius: 40px;
  background: #fff;
  transition: all 0.2s ease;
}

.personal-info__box:last-child {
  margin-bottom: 0px;
}

.personal-info__box-title {
  margin-bottom: 20px;
}

.personal-info__input {
  padding: 12px 15px;
}

.personal-info__note {
  padding: 10px;
}

.personal-info__top-note {
  padding: 0 10px 10px;
}

.personal-info__box .check-contain {
  margin-bottom: 30px;
}

.personal-info__item-title {
  margin-bottom: 5px;
}

.personal-info__input-items {
  padding: 10px 0 30px;
  margin: -10px;
}

.personal-info__input-item {
  display: flex;
}

.personal-info__input-item input, .personal-info__input-item select {
  margin: 10px;
  width: calc(50% - 20px);
}

.personal-info__subscription.check-contain span {
  line-height: 1.125;
}

.personal-info__subscription.check-contain {
  padding-top: 4px;
}

@media (max-width: 1100px) {
  .personal-info {
    padding: 15px 0;
  }

  .personal-info__body {
    padding: 40px 15px;
  }

  .personal-info__title {
    margin-bottom: 50px;
  }
}

@media (max-width: 640px) {
  .personal-info__box-item {
    width: 100%;
  }

  .personal-info__input-item {
    flex-wrap: wrap;
  }

  .personal-info__input-item input {
    width: 100%;
  }
}

/* MODAL */

.modal {
  padding: 15px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;

  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal__container {
  padding: 30px;
  max-height: 100%;
  max-width: 570px;
  overflow-y: auto;
  border-radius: 40px;
  background-color: #fff;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  transition: all 0.2s ease;
}

.modal__close-btn {
  margin-left: auto;
  margin-bottom: 20px;
  width: 24px;
  height: 20px;
  cursor: pointer;
  position: relative;
}

.modal__close-btn::before,
.modal__close-btn::after {
  content: "";
  background-color: #3c3d3c;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  transition: all 0.2s ease;
}

.modal__close-btn::before {
  transform: rotate(45deg);
  top: 9px;
}

.modal__close-btn::after {
  transform: rotate(-45deg);
  bottom: 9px;
}

.modal__close-btn:hover.modal__close-btn::before,
.modal__close-btn:hover.modal__close-btn::after {
  background-color: #ea5826;
}

.modal__product-container {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}

.modal-error__subtitle {
  margin-bottom: 20px;
  font-size: 26px;
}

.modal-error__link {
  text-decoration: underline;
  color: inherit;
  transition: all 0.2s ease;
}

.modal-error__link:hover {
  color: #ea5826;
  text-decoration: underline;
}

.modal-error__see-more-btn {
  margin: 20px 0;
}

/* modal-registration */

.modal-registration__subtitle {
  margin-bottom: 40px;
  font-size: 26px;
  text-align: center;
}

.modal-registration__txt {
  margin-bottom: 20px;
}

.modal-registration__link {
  text-decoration: underline;
  color: inherit;
  transition: all 0.2s ease;
}

.modal-registration__link:hover {
  color: #ea5826;
  text-decoration: underline;
}

.modal-registration__input-items {
  margin-bottom: 20px;
}

.modal-registration__input:not(:last-child) {
  margin-bottom: 20px;
}

.modal-registration__btn-container {
  text-align: center;
  margin-bottom: 20px;
}

.modal-registration__btn {
  color: #fff;
  background: #3b82f6;
}

.modal-registration__links {
  margin-top: 20px;
}

.modal-registration__links .modal-registration__txt:nth-child(2) {
  margin-bottom: 10px;
}

/* sib */

.icon32.loading {
  background-image: url(../images/loading.gif);
  background-size: 32px 32px;
  height: 32px;
  width: 32px;
  display: inline-block;
}
.purchase__checkout-body.final{
	display:none;
}
.warn, .error{
	margin-top:10px;
	text-align:center;
	color:red;
}
.warn{
	display:none;
}
.course__txt-content p + .course__txt-content p,
.content-section__body p + .content-section__body p{
  margin-top: 20px;
}
.course__txt-content a, .content-section__body a{
	text-decoration:underline;
}
.course__txt-content a:hover, .content-section__body a:hover,
.course__txt-content a.course__btn{
	text-decoration:none;
}
.content-section__body ul, .content-section__body ul li,
.course__txt-content ul, .course__txt-content ul li{
   list-style-type: disc; 
   list-style-position: inside; 
}
.content-section__body ol, .content-section__body ol li,
.course__txt-content ol, .course__txt-content ol li { 
   list-style-type: decimal; 
   list-style-position: inside; 
}
.content-section__body ul ul, .content-section__body ol ul,
.course__txt-content ul ul, .course__txt-content ol ul { 
   list-style-type: circle; 
   list-style-position: inside; 
   margin-left: 15px; 
}
.content-section__body ol ol, .content-section__body ul ol,
.course__txt-content ol ol, .course__txt-content ul ol { 
   list-style-type: lower-latin; 
   list-style-position: inside; 
   margin-left: 15px; 
}
.content-section__body ol li > p, .course__txt-content ol li > p{
	display:inline;
}

ul.content-section__list, ul li.content-section__item,
ol.content-section__list, ol li.content-section__item{
  list-style: none;
}

.content-section__title.title{
	word-break: break-word;
}

.btn--big2 {
  height: 65px;
  padding: 13px 39px;
  font-size: 1.3rem;
  color: #fff;
  background: #ea5826;
}
.btn--big2:hover {
  background: #b5411b;
}
.page-nav {
  margin-top: 50px;
  margin-bottom: -20px;
  text-align: center;
}

.page-nav__btn {
  margin: 0 10px;
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.page-nav__btn:hover {
  color: #ea5826;
}

.page-nav__btn.active {
  color: #ea5826;
  cursor: default;
}
.personal-info__input-item select {
  margin: 10px;
  width: calc(50% - 20px);
}
.courses__favorites-btn, .course__favorites-btn, .courses-item__favorites-btn{
	cursor:pointer;
}
img.lazyload{
	visibility: hidden;
}
