@charset "UTF-8";

* {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

.bg-body {
  background-color: #f9f9f9;
  padding: 20px 0 60px 0;
}

.caption {
  font-size: clamp(1.5rem, 1.375rem + 0.625vw, 2.125rem);
  font-weight: 600;
  line-height: 1.2058823529;
  text-align: center;
  text-transform: uppercase;
}

.desc {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #8a8a8a;
  margin-top: 8px;
}

.bg-detail {
  position: relative;
}

.bg-detail img {
  position: absolute;
  top: 0;
}

.bg-detail img:nth-child(1) {
  left: 0;
}

.bg-detail img:nth-child(2) {
  right: 0;
}

@media only screen and (max-width: 599px) {
  .bg-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .bg-detail img {
    position: unset;
    max-width: 78px;
  }
}

.tab {
  margin-top: 64px;
}

.tab-list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 32px auto 15px auto;
}

.tab-list__item {
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  transition: all 0.2s linear;
  color: rgba(0, 0, 0, 0.4588235294);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.tab-list__item:not(.active) {
  background-color: #ffffff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.tab-list__item:not(.active):hover {
  color: var(--fs-color-primary);
}

.tab-list__item.active {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: var(--fs-color-primary);
  color: #ffffff;
}

.tab-list__item.active:hover {
  opacity: 0.8;
}

.tab-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tab-content.active {
  display: none;
}

.tab-content__item {
  border-radius: 14px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

@media only screen and (max-width: 767px) {
  .tab {
    margin-top: 45px;
  }
}

.picker__select--month,
.picker__select--year {
  height: auto !important;
}

.overlay-menu,
.overlay-filter,
.overlay-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 120;
  overflow-y: hidden;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.4s linear;
}

.overlay-menu.show,
.overlay-filter.show,
.overlay-sidebar.show {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s 0s, opacity 0.4s linear;
}

.close-menu,
.close-filter,
.close-sidebar {
  position: absolute;
  top: 4px;
  background: transparent;
  border: none;
  font-size: 34px;
  color: #fff;
  cursor: pointer;
}

.close-menu {
  left: 4px;
}

.close-filter {
  right: 4px;
}

.close-sidebar {
  right: 4px;
}

.subject-item {
  background-color: #ffffff;
}

.subject-item__image {
  height: 0;
  position: relative;
  padding-bottom: 72.25%;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}

.subject-item__image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s linear;
}

@media (hover: hover) {
  .subject-item__image:hover > img {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.subject-item__image-label {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 11px 16px;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
}

.subject-item__image-label button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: 0;
  padding: 0;
  margin: 0;
}

.subject-item__image-label button img {
  display: block;
  width: 100%;
}

.subject-item__image-label span {
  display: inline-block;
  border-radius: 8px;
  background-color: var(--fs-color-primary);
  padding: 4px 26px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: capitalize;
}

.subject-item__content {
  padding: 16px 16px 25px 16px;
  border: 2px solid #e5e5e5;
  border-top: none;
  border-radius: 0 0 14px 14px;
}

.subject-item__content-title {
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.subject-item__content-accpent {
  color: #828282;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  margin: 8px 0 10px 0;
  display: inline-block;
}

.subject-item__content ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
  border-bottom: 1px dashed #acacac;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.subject-item__content ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 6px;
}

.subject-item__content ul li span {
  text-decoration: none;
  color: #acacac;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
}

.subject-item__content ul li img {
  width: 16px !important;
}

.subject-item__content-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 14px;
}

.subject-item__content-footer strong {
  color: #ff7426;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
}

.subject-item__content-footer a {
  padding: 7px 16px;
  text-decoration: none;
  display: inline-block;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06px;
  border-radius: 100rem;
  background-color: var(--fs-color-primary);
  width: 124px;
  transition: opacity 0.2s linear;
}

.subject-item__content-footer a:hover {
  opacity: 0.8;
}

.teacher-item {
  border-radius: 0px 0px 14px 14px;
}

.teacher-item__image {
  position: relative;
  width: 100%;
  padding-top: 74.9%;
  border-radius: 8px 8px 0 0;
}

.teacher-item__image > img {
  border-radius: inherit;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
}

.teacher-item__label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 18px 0 0 15px;
  display: flex;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
}

.teacher-item__label-price {
  color: #f98742;
}

.teacher-item__label > div {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 5px 10px;
}

.teacher-item__label-rate {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 4px;
}

.teacher-item__label-rate span {
  color: #727f8e;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2857142857;
  display: inline-flex;
  align-items: center;
}

.teacher-item__label-rate img {
  width: 14px !important;
}

.teacher-item__tag {
  width: 186px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  border-radius: 100rem;
  background-color: var(--fs-color-primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2142857143;
  color: #ffffff;
  position: absolute;
  bottom: -16px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.teacher-item__content {
  padding: 22px 16px 24px 15px;
  border: 2px solid #e5e5e5;
  border-top: none;
  border-radius: 0 0 14px 14px;
}

.teacher-item__content h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 0.9166666667;
  margin: 5px 0 16px 0;
}

.teacher-item__content ul {
  list-style: none;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
}

.teacher-item__content ul li {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #919eab;
  display: flex;
  gap: 6px;
}

.teacher-item__content ul li img {
  max-width: 12px;
}

.read-more {
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2222222222;
  color: var(--fs-color-primary);
  transition: opacity 0.2s linear;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.read-more i {
  font-size: 11px;
}

.read-more:hover {
  opacity: 0.8;
}

.filter-panel {
  width: 100%;
  background-color: #ffffff;
  padding: 20px 25px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  overflow-y: auto;
  border-radius: unset;
  height: 25%;
}

.filter-panel__title {
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.filter-panel__list {
  list-style-type: none;
  margin-bottom: 40px;
}

.filter-panel__list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 10px;
}

.filter-panel__list li input[type="checkbox"],
.filter-panel__list li input[type="radio"] {
  filter: grayscale(1);
}

.filter-panel__list li label {
  color: #555;
  font-size: clamp(1rem, 0.845rem + 0.583vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-left: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
}

.filter-panel__count {
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-left: auto;
}

.filter-panel.only-mobile {
  max-width: clamp(16.75rem, 5.114rem + 58.182vw, 18.75rem);
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  transform: translate(-100%);
}

.filter-panel.only-mobile.active {
  transform: translateX(0);
}

@media only screen and (max-width: 1199px) {
  .filter-panel.only-desktop {
    display: none;
  }
}

.pgn__list {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 25px;
}

.pgn__item--active .pgn__link {
  color: #fff;
  border-color: var(--fs-color-primary);
  background: var(--fs-color-primary);
}

.pgn__link {
  background-color: transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
  border: 1px solid #eaeaea;
  width: 48px;
  height: 48px;
  padding: 10px;
  text-align: center;
  gap: 10px;
  color: var(--fs-color-primary);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  text-transform: capitalize;
}

.pgn__link--prev,
.pgn__link--next {
  background: transparent;
  color: var(--fs-color-primary);
}

.pgn__link--prev i,
.pgn__link--next i {
  font-size: 16px;
}

@media only screen and (max-width: 424px) {
  .pgn__list {
    gap: 15px;
  }

  .pgn__link {
    width: 45px;
    height: 45px;
  }
}

.search {
  margin-top: 16px;
}

.search__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 15px;
}

.search-heading {
  color: #000000;
  font-size: clamp(1.5rem, 1.083rem + 0.868vw, 2.125rem);
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}

.search-area {
  display: flex;
  gap: 20px;
}

.search-form {
  border-bottom: 1px solid #000000;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 4px;
}

.search-form input {
  color: #9d9d9d;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  border: none;
  padding: 5px 0;
  outline: none;
  background-color: transparent;
}

.search-form button {
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}

.search-form i {
  font-size: 20px;
}

.search-filter {
  background-color: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.search-filter img {
  max-width: 20px;
}

.search .layout-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 5px;
}

.search .layout-toggle button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

@media only screen and (max-width: 767px) {
  .search-area {
    flex-direction: column;
    gap: 14px;
  }

  .search__container {
    flex-direction: column;
  }
}

@media only screen and (max-width: 599px) {
  .search .layout-toggle {
    display: none;
  }
}

.breadcrumbs__list {
  list-style: none;
}

.breadcrumbs__list li.active a {
  font-weight: 500;
  color: #555;
}

.breadcrumbs li {
  display: inline;
}

.breadcrumbs li:first-child a::before,
.breadcrumbs li + li::before {
  font-size: 11px;
  color: #9d9d9d;
}

.breadcrumbs li + li::before {
  padding: 0 10px;
  content: "\f054";
  font-family: FontAwesome;
}

.breadcrumbs li a {
  text-decoration: none;
  text-transform: capitalize;
  transition: color 0.24s linear;
  color: #9d9d9d;
  font-size: clamp(0.938rem, 0.92rem + 0.067vw, 1rem);
  font-weight: 400;
  line-height: 1.5;
}

@media (hover: hover) {
  .breadcrumbs li a:hover {
    color: var(--fs-color-primary);
  }
}

.info {
  border-radius: 12px;
  background-color: rgb(39, 91, 7, 0.2);
  padding: clamp(1.375rem, 1.345rem + 0.129vw, 1.5rem);
  margin-bottom: 18px;
}

.info h2 {
  color: #050505;
  font-size: clamp(1.125rem, 1.089rem + 0.134vw, 1.25rem);
  font-weight: 500;
  line-height: normal;
  margin-bottom: 6px;
}

.info__list {
  margin-left: 25px;
}

.info__list li {
  color: #000000;
  font-size: clamp(0.938rem, 0.92rem + 0.067vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.595;
  margin-bottom: 6px;
}

.info__dropdown {
  margin-bottom: 10px;
  border: 1px solid var(--fs-color-primary);
  border-radius: 4px;
}

.info__dropdown-toggle {
  width: 100%;
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  padding: 15px;
  align-items: center;
}

.info__dropdown-toggle img {
  margin-right: 7px;
}

.info__dropdown-toggle i {
  margin-left: auto;
}

.info__dropdown-toggle span {
  font-size: clamp(0.938rem, 0.92rem + 0.067vw, 1rem);
  font-weight: 400;
  line-height: 1.595;
}

.info__dropdown-menu {
  border-top: 1px solid var(--fs-color-primary);
  display: none;
  padding: 14px;
  list-style: none;
}

.info__dropdown-menu li a {
  border-radius: 12px;
  text-decoration: none;
  color: #777e90;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7142857143;
  padding: 10px 12px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: all 0.1s linear;
}

.info__dropdown-menu li a:hover {
  background-color: #fde8cf;
  color: var(--fs-color-primary);
}

.info__dropdown-menu li a:hover i {
  display: block;
}

.info__dropdown-menu li i {
  display: none;
}

.info__price {
  margin: 33px 0 16px 0;
  border-bottom: 1px solid var(--fs-color-primary);
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
}

.info__price b {
  color: var(--fs-color-primary);
  font-size: clamp(1.375rem, 1.304rem + 0.268vw, 1.625rem);
  font-weight: 400;
  line-height: normal;
}

.info__price span {
  color: rgba(5, 5, 5, 0.7);
  font-size: 18px;
  font-weight: 300;
  line-height: normal;
}

.info__btn {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  border-radius: 100rem;
  width: 100%;
  border: none;
  cursor: pointer;
  padding: 16px;
  background-color: var(--fs-color-primary);
  transition: opacity 0.1s linear;
}

.info__btn:hover {
  opacity: 0.8;
}

.related h1 {
  color: #000000;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 12px;
}

.related-item {
  border-radius: 8px;
  border: 1px solid #eaeaea;
  background-color: #ffffff;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
  padding: 14px 12px;
  margin-bottom: clamp(0.938rem, 0.563rem + 0.781vw, 1.5rem);
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
}

.related-item__image {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 8px;
  overflow: hidden;
}

.related-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.related-item__content h2 a {
  text-decoration: none;
  color: #1f1c14;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.388px;
  display: inline-block;
  transition: color 0.1s linear;
  max-width: 167px;
}

.related-item__content h2 a:hover {
  color: #d12b79;
}

.related-item__content p {
  color: rgba(31, 28, 20, 0.7);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  margin: 4px 0;
}

.related-item__content-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
}

.related-item__content-price b {
  color: #d12b79;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.related-item__content-price del {
  color: #230f0f;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.related-button {
  text-decoration: none;
  padding: 5px;
  color: #1f1c14;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  transition: color 0.1s linear;
}

.related-button:hover {
  color: #d12b79;
}

.related-button i {
  font-size: 14px;
  margin-left: 4px;
}

.comments__caption {
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
  margin-bottom: 16px;
}

.comments__summary {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
}

.comments__value {
  color: #000000;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
}

.comments__ratings {
  gap: 4px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
}

.comments__ratings img {
  max-width: 110px;
}

.comments__ratings span {
  color: #555;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.comments__details {
  padding: 20px 0 30px 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
}

.comments__bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}

.comments__star {
  max-width: 80px;
  width: 100%;
}

.comments__percent {
  color: #555;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  min-width: 50px;
  margin: 0 4px 0 8px;
}

.comments__progress {
  background-color: #eaeaea;
  flex-grow: 1;
  height: 10px;
  position: relative;
}

.comments__progress .percent {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #f6b40a;
}

/* .comments__progress::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #f6b40a;
}
.comments__progress--5::before {
    width: 90%;
}
.comments__progress--4::before {
    width: 5%;
}
.comments__progress--3::before {
    width: 2%;
}
.comments__progress--2::before {
    width: 2%;
}
.comments__progress--1::before {
    width: 1%;
} */
.comments__list .comment {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid #eaeaea;
}

.comments__list .comment:last-child {
  margin-bottom: 40px;
}

.comments__list .comment__avatar {
  width: 60px;
  height: 60px;
  border-radius: 43px;
  flex-shrink: 0;
}

.comments__list .comment__avatar img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.comments__list .comment__body {
  flex: 1;
}

.comments__list .comment__body-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: clamp(0.25rem, 0.143rem + 0.401vw, 0.625rem);
}

.comments__list .comment__body-top h4 {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
}

.comments__list .comment__body-top span {
  color: #555;
  font-size: clamp(0.875rem, 0.839rem + 0.134vw, 1rem);
  font-weight: 400;
  line-height: 1.5;
}

.comments__list .comment__desc {
  color: #555;
  font-size: clamp(0.875rem, 0.804rem + 0.268vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  margin: 8px 0;
}

.comments__list .comment__reply {
  color: #000000;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
}

@media only screen and (max-width: 424px) {
  .comments .comments__list .comment,
  .comments .comments__list .comment__body-top {
    flex-direction: column;
  }

  .comments .comments__list .comment__body-top {
    align-items: flex-start;
  }
}

.hero {
  background-image: url("../images/hero-image-full.png");
  padding: 140px 0 180px 0;
  background-repeat: no-repeat;
  background-size: 95rem;
  background-position: center center;
  background-color: #feeddd;
}

.hero-search {
  cursor: pointer;
  background-color: #d12b79;
  color: #ffffff;
  display: inline-block;
  gap: 10px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  border-radius: 12px;
  border: none;
  transition: background 0.2s linear;
}

.hero-search:hover {
  background-color: #be1b81;
}

.hero-search img {
  width: 20px;
}

.hero-content {
  max-width: 800px;
  width: 100%;
}

.hero-content__caption {
  color: #000000;
  font-size: clamp(1.875rem, 0.3571428571rem + 7.5892857143vw, 4rem);
  font-weight: bold;
  font-family: Roboto;
}

.hero-content__caption b {
  color: var(--fs-color-primary);
}

.hero-content__desc {
  margin-top: 23px;
  color: #8a8a8a;
  font-size: clamp(0.9375rem, 0.7142857143rem + 1.1160714286vw, 1.25rem);
  max-width: 580px;
  width: 100%;
}

.hero-filter {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 18px 20px;
  margin-top: 30px;
}

.hero-select {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
}

.hero-select__content {
  gap: 6px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
}

.hero-select__content h3,
.hero-select__content label {
  font-size: 15.5px;
  font-weight: bold;
  color: #000000;
  line-height: 1.4;
}

.hero-select__content-dropdown {
  color: #9d9d9d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 14px;
  gap: 6px;
}

.hero-select__content-option {
  position: absolute;
  top: calc(100% + 8px);
  z-index: 54;
  left: 0;
  display: none;
  list-style: none;
  text-decoration: none;
  border-radius: 0px 0px 12px 12px;
  opacity: 0.9;
  background-color: #ffffff;
  max-width: 160px;
  width: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.hero-select__content-option li a {
  color: #050505;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1428571429;
  display: inline-block;
  padding: 12px 15px;
  text-decoration: none;
  width: 100%;
  transition: color 0.2s linear;
}

.hero-select__content-option li a:hover {
  color: var(--fs-color-primary);
}

.hero-select__icon {
  width: 20px;
  height: 20px;
}

.hero-select input {
  width: 100%;
  border: 1.5px solid #ccc;
  border-radius: 5px;
  padding: 5px 6.5px;
  font-size: 14px;
  outline: none;
}

.hero-select input:focus {
  border-color: #d12b79;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .hero-search {
    width: 100%;
    height: 100%;
  }

  .hero-search img {
    width: 24px;
  }

  .hero-search span {
    display: none;
  }
}

@media only screen and (max-width: 1023px) {
  .hero {
    padding: 60px 0;
    background-size: 68rem;
  }

  .hero-content__desc {
    max-width: 440px;
  }
}

@media only screen and (max-width: 599px) {
  .hero {
    padding: 25px 0;
    background-image: none;
  }

  .hero-content__desc {
    margin-top: 10px;
  }

  .hero-select__content {
    gap: 4px;
  }

  .hero-select__content-option {
    max-width: 100%;
    opacity: 1;
  }

  .hero-filter {
    padding: 14px 20px;
    margin-top: 15px;
  }
}

.service {
  margin-top: -105px;
}

.service-wrapper {
  background-color: var(--fs-color-primary);
  padding: 20px 0;
  border-radius: 12px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.service-item {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
}

.service-item h3 {
  color: #fcbf4c;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.125;
  padding: 12px 0 16px 0;
}

.service-item p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5714285714;
}

.service-item__content {
  max-width: 202px;
}

.service-item img {
  width: 48px;
  height: 48px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 1023px) {
  .service {
    margin-top: 25px;
  }
}

.channel-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 74.9%;
  border-radius: 8px 8px 0 0;
}

.channel-image > img {
  border-radius: inherit;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
}

.channel-content {
  background-color: #feeddd;
  padding: 16px 16px 24px 16px;
}

.channel-content h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--fs-color-primary);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.channel-content p {
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2142857143;
  color: #544d45;
  padding: 12px 0 24px 0;
}

.channel-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 15px;
}

.channel-avatar {
  display: flex;
}

.channel-avatar__item {
  width: 45px;
  height: 45px;
  transition: transform 0.3s ease;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
}

.channel-avatar__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.channel-avatar__item:not(:first-child) {
  margin-left: -18px;
}

.channel-avatar__item--hidden {
  border: 1px solid #ffffff;
  background-color: #fcbf4c;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2142857143;
}

.channel-btn {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  text-decoration: none;
  background-color: var(--fs-color-primary);
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  transition: opacity 0.2s linear;
  text-align: center;
}

.channel-btn:hover {
  opacity: 0.8;
}

.learning {
  margin: 75px 0;
  padding: 30px 0;
  background-color: #feeddd;
}

.learning-image {
  max-width: 480px;
  width: 100%;
}

.learning-content {
  font-family: Roboto;
}

.learning-content__caption {
  margin-bottom: 24px;
  font-size: clamp(1.75rem, 1.4086059744rem + 1.706970128vw, 2.5rem);
  font-weight: 800;
  line-height: 1.35;
}

.learning-content__caption b {
  color: var(--fs-color-primary);
}

.learning-content__title {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
}

.learning-content__title h2,
.learning-content__title p {
  font-weight: 500;
}

.learning-content__title h2 {
  font-size: clamp(1.25rem, 0.9655049787rem + 1.4224751067vw, 1.875rem);
  line-height: 1.7;
  color: #050c26;
}

.learning-content__title p {
  font-size: clamp(1.125rem, 0.8974039829rem + 1.1379800853vw, 1.625rem);
  color: #8a8a8a;
  line-height: 1.6923076923;
}

.learning-content__title:not(:last-child) {
  margin-bottom: 23px;
}

@media only screen and (max-width: 1023px) {
  .learning-content__title:not(:last-child) {
    margin-bottom: 10px;
  }

  .learning-content__caption {
    margin-bottom: 6px;
  }
}

@media only screen and (max-width: 767px) {
  .learning-image {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .learning-content {
    text-align: center;
  }
}

.students {
  text-align: center;
  font-size: 1.875rem;
  margin: clamp(1.875rem, 0.9090909091rem + 4.8295454545vw, 4rem) 0;
}

.reviews {
  margin-top: clamp(1.875rem, 1.3636363636rem + 2.5568181818vw, 3rem);
}

.reviews .owl-dots {
  margin-top: 33px !important;
}

.reviews .owl-dots .owl-dot.active span {
  background-color: var(--fs-color-primary);
  width: 32.5px;
}

.reviews-item {
  background-color: #e7f1d6;
  padding: 32px 24px;
  text-align: left;
  border-radius: 12px;
}

.reviews-rate {
  display: flex;
  gap: 8px;
}

.reviews-rate b {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--fs-color-primary);
}

.reviews-rate img {
  max-width: 124px;
}

.reviews-title {
  margin: 8px 0 16px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.reviews-desc {
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4285714286;
  letter-spacing: 0.02em;
  color: #333;
  max-width: 320px;
  width: 100%;
}

.reviews-info {
  gap: 25px;
  align-items: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-top: 18px;
}

.reviews-info,
.reviews-info__avatar {
  display: flex;
}

.reviews-info__avatar-item {
  transition: transform 0.3s ease;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
  width: 60px;
  height: 60px;
  border: 2px solid var(--fs-color-primary);
}

.reviews-info__avatar-item:not(:first-child) {
  margin-left: -18px;
}

.reviews-info__avatar-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.reviews-info__content h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: #353535;
}

.reviews-info__content p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3333333333;
  letter-spacing: 0.02em;
  color: #8e8e8e;
}

.footer {
  background-color: #feeddd;
  padding: 15px 0;
}

.footer ul {
  list-style-type: none;
}

.footer-check {
  max-width: 224px;
  display: inline-block;
}

.footer-list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: clamp(0.75rem, 0.172rem + 2.465vw, 1.75rem);
}

.footer-list li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7142857143;
  color: #403e3e;
  transition: color 0.2s linear;
}

@media (hover: hover) {
  .footer-list li a:hover {
    color: rgb(60, 60, 237);
  }
}

.footer-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--fs-color-primary);
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 16px;
  margin-bottom: clamp(0.75rem, 0.028rem + 3.082vw, 2rem);
  text-transform: uppercase;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--fs-color-primary);
}

.footer-company {
  margin-top: 30px;
  border-left: 3px solid var(--fs-color-primary);
  padding-left: 16px;
}

.footer-company h1 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--fs-color-primary);
}

.footer-company ul {
  margin-top: 14px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 20px;
}

.footer-company ul li b {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4285714286;
  color: #000000;
}

.footer-company ul li a,
.footer-company ul li span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4285714286;
  color: #8f8686;
  text-decoration: none;
}

.footer-company ul li a {
  transition: color 0.2s linear;
}

@media (hover: hover) {
  .footer-company ul li a:hover {
    color: rgb(60, 60, 237);
  }
}

.footer-payment {
  border-left: 3px solid var(--fs-color-primary);
  padding-left: 16px;
  max-width: 238px;
}

.footer-payment h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #403e3e;
  margin-bottom: 16px;
}

.footer-social {
  border-left: 3px solid var(--fs-color-primary);
  padding-left: 16px;
  margin: 16px 0;
}

.footer-social span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #403e3e;
}

.footer-social ul {
  margin-top: 16px;
  display: flex;
  gap: 24px;
}

.footer-copyright {
  border-top: 1px solid #ccc;
  padding: 16px 0 48px 0;
}

.footer-copyright span {
  font-size: clamp(1rem, 0.929rem + 0.268vw, 1.25rem);
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
  display: inline-block;
}

@media only screen and (max-width: 1200px) {
  .footer-copyright {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 599px) {
  .footer-copyright {
    padding: 20px 0 30px 0;
  }
}

@media only screen and (max-width: 374px) {
  .footer-copyright {
    padding-bottom: 68px;
  }
}

#back-to-top {
  --size-button: 50px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 80;
  border: none;
  outline: none;
  background-color: #d12b79;
  color: #ffffff;
  cursor: pointer;
  width: var(--size-button);
  height: var(--size-button);
  line-height: var(--size-button);
  text-align: center;
  font-size: 20px;
  border-radius: 5px;
}

#back-to-top:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 599px) {
  #back-to-top {
    --size-button: 45px;
    font-size: 18px;
  }
}

.sidebar {
  background-color: #ffffff;
  box-shadow: 4px 0px 20px 0px rgba(0, 0, 0, 0.05);
  position: relative;
}

.sidebar-top {
  padding: 25px 20px 10px 20px;
  text-align: center;
}

.sidebar-nav ul {
  list-style: none;
}

.sidebar-nav ul li a {
  padding: 25px 20px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: #202020;
  font-size: 20px;
  line-height: normal;
  transition: all 0.1s linear;
  width: 100%;
}

.sidebar-nav ul li a:hover,
.sidebar-nav ul li a:hover path {
  color: #f13e3e;
  stroke: #f13e3e;
  background-color: #fdf8ee;
}

.sidebar-nav ul li a span {
  color: #908b93;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  margin-left: auto;
  border-radius: 8px;
  background-color: #f8f7f9;
  padding: 2px 6px;
}

.sidebar.only-mobile {
  background-color: #ffffff;
  box-shadow: 4px 0px 20px 0px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  max-width: clamp(16.25rem, 1.435rem + 74.074vw, 18.75rem);
  width: 100%;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.sidebar.only-mobile.active {
  transform: translateX(0);
}

.sidebar.only-mobile .sidebar-nav ul li a {
  font-size: 18px;
  gap: 16px;
  padding: 20px;
}

@media only screen and (max-width: 1023px) {
  .sidebar.only-desktop {
    display: none;
  }
}

.dashboard {
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-gap: 35px;
  height: 100vh;
}

@media only screen and (max-width: 1023px) {
  .dashboard {
    grid-template-columns: 1fr;
  }
}

.main-header {
  padding: 15px 28px;
  border-bottom: 0.5px solid #d2cece;
  display: flex;
}

.main-header__bars {
  display: none;
  background-color: transparent;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

.main-header__group {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 24px;
}

.main-header__button {
  border: none;
  outline: none;
  background-color: #fdf8ee;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.main-header__admin {
  display: flex;
  align-items: center;
}

.main-header__admin-name {
  color: #000000;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.7142857143;
  text-transform: capitalize;
}

.main-header__admin-avatar {
  margin: 0 4px 0 12px;
  max-width: 36px;
}

.main-header__admin-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.main-content {
  padding: 30px 0;
}

.main-content__edit {
  display: flex;
  align-items: center;
  gap: 15px;
}

.main-content__edit img {
  width: 60px;
}

.main-content__edit a {
  text-decoration: none;
  color: rgba(5, 5, 5, 0.6980392157);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration-line: underline;
}

.main-content__edit a:hover {
  color: #f13e3e;
}

.main-content__avatar {
  max-width: 60px;
}

.main-content__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.main-content__wrapper {
  max-width: 1200px;
}

@media only screen and (max-width: 1023px) {
  .main {
    padding: 20px;
  }

  .main-header {
    padding: 0 0 15px 0;
  }

  .main-header__bars {
    display: block;
  }
}

.form {
  margin-top: 20px;
  flex: 1;
}

.form__column:focus-within label {
  color: #d12b79;
}

.form__column:focus-within input,
.form__column:focus-within .form__column-select {
  border: 1.8px solid #d12b79 !important;
  box-shadow: none;
}

.form__column label {
  font-size: 18px;
  margin-bottom: 8px;
  display: block;
}

.form__column input,
.form__column-select {
  padding: 12px 15px;
  outline: none;
  width: 100%;
  border-radius: 8px;
  border: 1.8px solid #d2cece;
  color: #a7a1a1;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
}

.form__column-select {
  border: 1px solid #d1d5db;
  outline: none;
  border-radius: 4px;
  padding: 12.8px 14px;
  font-family: inherit;
  width: 100%;
  font-size: 18px;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
  background-color: transparent;
}

.form-footer {
  display: flex;
  gap: 40px;
}

.form-footer__button {
  color: var(--fs-color-primary);
  font-family: Roboto;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 12px;
  border: 2px solid var(--fs-color-primary);
  padding: 10px 54px;
  cursor: pointer;
  background-color: transparent;
  transition: background-color 0.2s linear;
}

.form-footer__button--primary {
  color: #ffffff;
  background-color: var(--fs-color-primary);
}

.form-footer__button--primary:hover {
  background-color: #d12b79;
}

@media only screen and (max-width: 767px) {
  .form-footer {
    gap: 15px;
  }

  .form-footer__button {
    width: 100%;
    font-size: 20px;
    padding: 12px 20px;
  }
}

.modal {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(32, 32, 32, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-wrapper {
  max-width: 709px;
  width: 100%;
  max-height: 94vh;
  overflow-y: auto;
  overscroll-behavior: none;
  padding: 30px clamp(1.875rem, -0.814rem + 4.202vw, 3.125rem) 30px
    clamp(1.875rem, -0.814rem + 4.202vw, 3.125rem);
  border-radius: 24px;
  background-color: #ffffff;
  position: relative;
  animation: myAnim 0.9s ease 0s 1 normal forwards;
}

@keyframes myAnim {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
    transform: translateY(-250px);
  }

  38% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: translateY(0);
  }

  55% {
    animation-timing-function: ease-in;
    transform: translateY(-65px);
  }

  72% {
    animation-timing-function: ease-out;
    transform: translateY(0);
  }

  81% {
    animation-timing-function: ease-in;
    transform: translateY(-28px);
  }

  90% {
    animation-timing-function: ease-out;
    transform: translateY(0);
  }

  95% {
    animation-timing-function: ease-in;
    transform: translateY(-8px);
  }

  100% {
    animation-timing-function: ease-out;
    transform: translateY(0);
  }
}

.modal-wrapper__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #aaa;
  font-size: 32px;
  font-weight: bold;
}

.modal-wrapper__close:hover,
.modal-wrapper__close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .modal-wrapper {
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .modal-wrapper {
    max-height: 100%;
    height: 100%;
    border-radius: unset;
  }
}

.vender-form > h2,
.vender-form > p {
  text-align: center;
}

.vender-form__header {
  color: #170f49;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3333333333;
}

.vender-form__description {
  margin-top: 6px;
  color: #6f6c90;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4285714286;
}

.vender-form__body {
  overflow: hidden;
}

.vender-form__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  padding: 32px 20px 24px 20px;
  border-bottom: 1px solid #d9dbe9;
}

.vender-form__pagination-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--fs-color-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.125;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vender-form__pagination-number.active ~ div {
  background: #eff0f6;
  color: #6f6c90;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4375;
}

.vender-form__pagination-bar {
  width: 100px;
  height: 6px;
  background-color: var(--fs-color-primary);
  border-radius: 40px;
}

.vender-form__steps {
  width: 400%;
  display: flex;
  transition: all 300ms ease-in-out;
  margin-top: 25px;
}

.vender-form__step {
  width: 130vw;
  overflow: hidden;
}

.vender-form__step h2 {
  color: #170f49;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4583333333;
}

.vender-form__step p {
  color: #050505;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6666666667;
}

.vender-form__step1 input {
  display: none;
}

.vender-form__step1 input + label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  color: #9e9e9e;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1111111111;
}

.vender-form__step1 input + label:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #aaa;
  border-radius: 50%;
  background-color: #ffffff;
  box-sizing: unset;
}

.vender-form__step1 input + label:after {
  box-sizing: unset;
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ffffff;
}

.vender-form__step1 input:checked + label:before {
  background-color: var(--fs-color-primary);
  border-color: var(--fs-color-primary);
}

.vender-form__step1 input + label:hover:before {
  border-color: var(--fs-color-primary);
}

.vender-form__step2 select {
  padding: 15px 35px 15px 24px;
  border-radius: 12px;
  border: 1.5px solid #d9d9d9;
  box-shadow: unset !important;
  color: #5f5f5f;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}

.vender-form__step2 select:focus {
  border-color: var(--fs-color-primary);
}

.vender-form__step3-item {
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  background: var(--White, #fff);
  background-color: #ffffff;
  padding: 18px 30px;
  border-radius: 15px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}

.vender-form__step3-item input {
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 24.5px;
  width: 24.5px;
  border: 2px solid #d9dbe9;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}

.vender-form__step3-item input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 24px;
  width: 24px;
  border: 1px solid #d9dbe9;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
}

.vender-form__step3-item input[type="radio"]:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5.4px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.2s;
}

.vender-form__step3-item input[type="radio"]:checked:after {
  background-color: #d12b79;
}

.vender-form__step3-item label {
  cursor: pointer;
  width: 100%;
  color: #5f5f5f;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.vender-form__step4 {
  margin-top: 16px;
}

.vender-form__step4-title {
  margin-bottom: 10px;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}

.vender-form__step4-item {
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  background-color: #ffffff;
  padding: 17px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
}

.vender-form__step4-item span {
  color: #5f5f5f;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}

.vender-form__step4-item button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.vender-form__step4-item input {
  outline: none;
  border: none;
  width: 100%;
  height: 100%;
  color: #5f5f5f;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}

.vender-form__footer {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-top: 40px;
  gap: 20px;
}

.vender-form__footer-button {
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  width: 192px;
  height: 56px;
  line-height: 1.1111111111;
  outline: none;
  background-color: transparent;
  border-radius: 100rem;
  cursor: pointer;
  transition: opacity 0.2s linear;
  border: 1px solid var(--fs-color-primary);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.vender-form__footer-button:hover {
  opacity: 0.8;
}

.vender-form__footer-button--prev {
  color: var(--fs-color-primary);
}

.vender-form__footer-button--next {
  background-color: var(--fs-color-primary);
  color: #ffffff;
  font-weight: 700;
  margin-left: auto;
}

.vender {
  max-width: 360px;
  width: 100%;
  line-height: 1.6;
  padding: 24px 20px;
  border-radius: 14px;
  background: #fdf8ee;
  text-align: center;
}

.vender h2,
.vender p {
  color: #000000;
  font-weight: 600;
  line-height: 24px;
  text-transform: capitalize;
}

.vender h2 {
  margin: 16px 0 12px 0;
  font-size: 20px;
}

.vender p {
  font-size: 16px;
  max-width: 136px;
  margin: 0 auto;
}

.vender button {
  outline: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1111111111;
  border-radius: 56px;
  cursor: pointer;
  background-color: var(--fs-color-primary);
  padding: 18px 12px;
  width: 100%;
  box-shadow: 0px 3px 12px 0px rgba(74, 58, 255, 0.18);
  box-shadow: 0px 3px 12px 0px rgba(74, 58, 255, 0.18);
  margin-top: 58px;
  transition: background-color 0.2s linear;
}

.vender button:hover {
  background-color: #d12b79;
}

@media only screen and (max-width: 1023px) {
  .vender {
    max-width: 100%;
  }
}

.formpage {
  position: relative;
}

.formpage-header {
  padding: 20px 0 30px 0;
}

.formpage-header__container,
.formpage-header__account {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
}

.formpage-header__account {
  gap: 24px;
}

.formpage-header__account a {
  text-decoration: none;
  display: inline-block;
}

.formpage-header__account-question {
  color: #878484;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
}

.formpage-header__account-login {
  border-radius: 30px;
  border: 1px solid #d2cece;
  color: #a7a1a1;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  padding: 14.5px 22.5px;
}

.formpage-bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
}

.formpage-main {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
}

.formpage-main .form {
  position: relative;
  max-width: 600px;
  width: 100%;
  padding: 68px 140px 20px 140px;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
}

.formpage-main .form-logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100rem;
  background-color: var(--fs-color-primary);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
}

.formpage-main .form-logo img {
  vertical-align: middle;
  position: absolute;
  top: 34%;
}

.formpage-main .form-common__caption {
  color: #000000;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  margin-bottom: 20px;
}

.formpage-main .form-common__col {
  margin-bottom: 15px;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 5px;
}

.formpage-main .form-common__col-message {
  color: red;
  display: none;
  font-size: 14px;
}

.formpage-main .form-common__col-label {
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 4px;
}

.formpage-main .form-common__col-input {
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  height: 100%;
  outline: none;
  border-radius: 8px;
  padding: 15px;
  border: 1px solid #e7e7e7;
  transition: border-color 0.2s linear;
}

.formpage-main .form-common__col-input:hover {
  border-color: #3867d6;
}

.formpage-main .form-common__col-accept {
  color: #666;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  line-height: normal;
}

.formpage-main .form-common__col-accept a {
  color: var(--fs-color-primary);
  text-decoration-line: underline;
}

.formpage-main .form-common__col-accept a:hover {
  color: #d12b79;
}

.formpage-main .form-common__col-password {
  width: 100%;
  position: relative;
}

.formpage-main .form-common__col-password i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  cursor: pointer;
  padding: 5px;
}

.formpage-main .form-common__btn {
  width: 100%;
  border-radius: 8px;
  background-color: var(--fs-color-primary);
  padding: 15px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  outline: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s linear;
  margin: 24px 0 16px 0;
}

.formpage-main .form-common__btn:hover {
  background-color: #d12b79;
}

.formpage-main .form-common__question {
  color: #808080;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.formpage-main .form-common__question a {
  text-decoration: none;
  color: var(--fs-color-primary);
  font-weight: 600;
  transition: color 0.2s linear;
}

.formpage-main .form-common__question a:hover {
  color: #d12b79;
}

.formpage-main .form-social {
  margin: 32px 0 10px 0;
}

.formpage-main .form-social__or {
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
}

.formpage-main .form-social__or span {
  color: #000000;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.formpage-main .form-social__or div {
  height: 1px;
  width: 100%;
  opacity: 0.2;
  background-color: #000000;
}

.formpage-main .form-social__list {
  margin-top: 10px;
  max-width: 200px;
  margin: 0 auto;
  gap: 32px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
}

.formpage-main .form-social__list a {
  width: 45px;
  height: 45px;
  text-decoration: none;
  fill: #ffffff;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.formpage-main .form-social__list a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

@media only screen and (max-width: 599px) {
  .formpage-header {
    /* display: none; */
  }

  .formpage-bg {
    display: none;
  }

  .formpage-main .form {
    margin-top: 0;
    padding: 40px 25px;
    box-shadow: unset;
    border-radius: unset;
  }

  .formpage-main .form-logo {
    position: relative;
    top: 1rem;
  }
}

.course__tab-list {
  list-style: none;
  border-radius: 12px 12px 0px 0px;
  border: 1px solid #eaeaea;
  display: flex;
}

.course__tab-item:not(:last-child) a {
  border-right: 1px solid #eaeaea;
}

.course__tab-item a {
  color: #000000;
  font-size: clamp(1rem, 0.929rem + 0.268vw, 1.25rem);
  font-weight: 500;
  line-height: 1.2;
  text-transform: capitalize;
  padding: 20px clamp(1.25rem, 0.25rem + 2.083vw, 2.75rem);
  text-decoration: none;
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
  height: 100%;
}

.course__tab-item.active a {
  color: var(--fs-color-primary);
  background-color: #f5f5f5;
  pointer-events: none;
}

.course__tab-content {
  border-radius: 0px 0px 12px 2px;
  background-color: #f5f5f5;
  padding: 32px 24px;
}

.course__tab-pane {
  display: none;
}

.course__tab-pane.active {
  display: block;
}

.course__tab-desc {
  color: #555;
  text-align: justify;
  font-size: clamp(0.875rem, 0.804rem + 0.268vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: clamp(1.25rem, 0.895rem + 1.338vw, 2.5rem);
}

.course__tab-title {
  color: #000000;
  font-size: clamp(1.125rem, 1.089rem + 0.134vw, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: clamp(0.5rem, 0.358rem + 0.535vw, 1rem);
}

.course-detail__image {
  border-radius: 12px;
  position: relative;
  width: 100%;
  padding-top: 53.75%;
  overflow: hidden;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.course-detail__image img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.course-detail__title {
  color: #000000;
  font-size: clamp(1.75rem, 1.417rem + 0.694vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
  padding: 24px 0 16px 0;
}

.course-detail__list {
  margin-bottom: clamp(1.25rem, 0.93rem + 1.204vw, 2.375rem);
  list-style: none;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.course-detail__list,
.course-detail__list li {
  display: flex;
  align-items: center;
}

.course-detail__list li {
  gap: 5px;
}

.course-review {
  padding-top: 40px;
}

.course-review h1 {
  color: #000000;
  font-size: clamp(1.5rem, 1.333rem + 0.347vw, 1.75rem);
  font-weight: 500;
  line-height: 1.2;
  text-transform: capitalize;
  margin-bottom: clamp(0.938rem, 0.313rem + 1.302vw, 1.875rem);
}

.course-review__content {
  padding: 24px clamp(1.5rem, 1.25rem + 0.521vw, 1.875rem);
  outline: none;
  border-radius: 8px;
  width: 100%;
  height: 100%;
  border: 1px solid #9d9d9d;
  color: #9d9d9d;
  font-size: clamp(0.938rem, 0.884rem + 0.201vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  resize: none;
}

.course-review__add,
.course-review__image {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}

.course-review__add {
  margin-top: 24px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  gap: 6px;
}

.course-review__add a {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
}

.course-review__image {
  gap: 16px;
  padding: 16px 0 clamp(0.938rem, 0.671rem + 1.003vw, 1.875rem) 0;
}

.course-review__image-box {
  width: 78px;
  height: 78px;
}

.course-review__image-box img {
  -o-object-fit: cover;
  object-fit: cover;
}

.course-review__btn {
  color: #ffffff;
  font-size: clamp(0.938rem, 0.884rem + 0.201vw, 1.125rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  text-transform: capitalize;
  background-color: #d12b79;
  border-radius: 24px;
  padding: 10.5px 24px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s linear;
}

.course-review__btn:hover {
  opacity: 0.8;
}

.course-review__rating {
  border-radius: 12px;
  padding: 24px clamp(1.5rem, 0.833rem + 1.389vw, 2.5rem);
  border: 1px solid #9d9d9d;
  background-color: #ffffff;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
}

.course-review__rating-box:not(:last-child) {
  margin-bottom: 20px;
}

.course-review__rating-box h3 {
  color: #555;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 2px;
}

.course-review__rating-star {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 -5px;
}

.course-review__rating-star i.active {
  color: gold;
}

.course-review__rating-star i {
  font-size: 20px;
  cursor: pointer;
  color: #acacac;
  padding: 5px;
}

.course-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-radius: 0px 20px 20px 0px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: background 0.1s linear;
}

.course-item:not(:last-child) {
  margin-bottom: 40px;
}

.course-item:hover {
  background: #feeddd;
}

.course-item__image {
  flex-basis: 37.1%;
  flex-shrink: 0;
  flex-grow: 0;
  border-radius: 12px 0px 0px 12px;
  overflow: hidden;
  position: relative;
  padding-bottom: 31.75%;
}

.course-item__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.course-item__image-label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 12px;
  width: 114px;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: capitalize;
  margin: 16px;
  z-index: 98;
  border-radius: 8px;
  background-color: #000000;
}

.course-item__content {
  border-radius: 0px 20px 20px 0px;
  padding: 20px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  flex: 1;
}

.course-item__content span {
  color: #555;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.course-item__content h2 {
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
  margin: 12px 0 16px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.course-item__content-list {
  list-style: none;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding-bottom: 15px;
}

.course-item__content-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.course-item__content-bottom {
  margin-top: auto;
  border-top: 0.5px solid #919eab;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}

.course-item__content-bottom b {
  color: var(--fs-color-primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: capitalize;
}

.course-item__content-bottom a {
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.5;
  text-transform: capitalize;
  display: inline-block;
  padding: 4px;
  transition: color 0.2s linear;
}

.course-item__content-bottom a:hover {
  color: #f13e3e;
}

.course-desc__section {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eaeaea;
}

.course-desc__section h2 {
  color: var(--fs-color-primary);
  font-size: 14.8px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 6px;
}

.course-desc__section p {
  color: #000000;
  font-size: 14.8px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.595;
}

.course-desc ul {
  margin-left: 23px;
}

.course-desc ul li {
  caret-color: #000000;
  font-size: 14.8px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5087837838;
}

.course-timeline {
  padding: 0px 30px;
  border-left: 2px solid var(--fs-color-primary);
  margin-left: 20px;
}

.course-timeline__box {
  position: relative;
  margin-bottom: 40px;
}

.course-timeline__box::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  right: calc(100% + 21px);
  top: 0;
  background-color: var(--fs-color-primary);
}

.course-timeline__title {
  position: relative;
  margin-bottom: 20px;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}

.course-timeline__content {
  color: #000000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  /* text-transform: uppercase; */
  margin-bottom: 10px;
}

.course-accordion {
  max-width: 1000px;
}

.course-accordion__item {
  background-color: #fff;
  color: #111;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: rgba(99, 99, 99, 0.1) 0 2px 6px 0;
}

.course-accordion__item-header {
  padding: 0.5rem 3rem 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.course-accordion__item-header::after {
  content: "+";
  font-size: 2rem;
  position: absolute;
  right: 1rem;
}

.course-accordion__item-header.active::after {
  content: "−";
}

.course-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.course-accordion__body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  -o-border-image: linear-gradient(to right, transparent, #34495e, transparent)
    1;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}

.course-second__wrapper {
  margin: 45px 0;
  --col: 2;
  display: grid;
  grid-template-columns: repeat(var(--col), minmax(0, 1fr));
  gap: 28px 24px;
}

@media only screen and (max-width: 767px) {
  .course-item {
    flex-direction: column;
    border-radius: unset;
  }

  .course-item__image {
    padding-bottom: 56.25%;
    border-radius: unset;
  }
}

@media only screen and (max-width: 599px) {
  .course-review__content,
  .course-review__rating {
    padding: 18px;
  }

  .course__tab-content {
    padding: 20px;
  }

  .course__tab-desc {
    line-height: 1.8;
  }

  .course-detail__title {
    font-size: 22px;
  }

  .course__tab-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .course__tab-item:not(:nth-child(9999)) a {
    border: 1px solid #eaeaea;
  }
}

.tutor-slider {
  margin: 20px 0 50px 0;
}

.tutor-slider__item:hover .tutor-slider__content {
  background: #ffefdc;
  color: var(--fs-color-primary);
}

.tutor-slider__item:hover .tutor-slider__content i {
  background: var(--fs-color-primary);
  color: #ffffff;
}

.tutor-slider__container {
  position: relative;
}

.tutor-slider__image {
  overflow: hidden;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 12px 12px 0px 0px;
}

.tutor-slider__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.tutor-slider__content {
  padding: 16px;
  border-radius: 0px 0px 12px 12px;
  border: 1px solid #eaeaea;
  background-color: #ffffff;
  transition: all 0.2s linear;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 14px;
}

.tutor-slider__content-info h2 {
  color: #292931;
  font-size: 14.507px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 4px;
}

.tutor-slider__content-info p {
  color: #898989;
  font-size: 11.283px;
  font-weight: 400;
  line-height: normal;
}

.tutor-slider__content i {
  background-color: transparent;
  width: 25px;
  height: 25px;
  border: 1px solid var(--fs-color-primary);
  line-height: 25px;
  text-align: center;
  color: var(--fs-color-primary);
  border-radius: 100rem;
  font-size: 12px;
  transition: all 0.2s linear;
  flex-shrink: 0;
}

.tutor-slider .owl-prev,
.tutor-slider .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 25;
  border-radius: 100rem;
  width: 39px;
  height: 39px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
}

.tutor-slider .owl-prev:active,
.tutor-slider .owl-next:active {
  background-color: #d2d0d0;
}

.tutor-slider .owl-prev {
  left: 0;
}

.tutor-slider .owl-next {
  right: 0;
}

.tutor-info__title {
  color: var(--fs-color-primary);
  font-size: clamp(1.25rem, 1.023rem + 0.606vw, 1.75rem);
  font-weight: 500;
  line-height: 1.4;
}

.tutor-info__main {
  border-radius: 12px;
  background-color: #ffefdc;
  padding: 30px 24px;
  margin-bottom: clamp(1.563rem, 1.296rem + 1.003vw, 2.5rem);
}

.tutor-info__wrapper {
  /* max-width: 546px; */
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
}

.tutor-info__avatar {
  width: 180px;
  height: 204px;
  border-radius: 14px;
  overflow: hidden;
}

.tutor-info__avatar img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.tutor-info__profile h2 {
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.tutor-info__profile-group {
  margin-bottom: 12px;
  color: #1f1c14;
  font-size: 16px;
  font-style: normal;
  line-height: 1.5;
}

.tutor-info__profile-group strong {
  font-weight: 700;
}

.tutor-info__profile-group a {
  color: #9b51e0;
  text-decoration: none;
  font-weight: 700;
  margin-left: 15px;
}

.tutor-info__profile-group a:hover {
  opacity: 0.8;
}

.tutor-info__profile-group a i {
  margin-left: 8px;
}

.tutor-info__profile-group--review {
  gap: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}

.tutor-info__profile-group--review img {
  width: 100px;
}

.tutor-info__desc {
  margin-top: 10px;
  color: #555;
  font-size: clamp(1rem, 0.964rem + 0.134vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.tutor-info__social {
  margin-top: 20px;
  gap: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}

.tutor-info__social span {
  color: #555;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.tutor-info__social ul {
  list-style: none;
  gap: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}

.tutor-info__social ul li a {
  text-decoration: none;
}

.tutor-section {
  margin-bottom: 40px;
}

.tutor-section__item {
  color: #1f1c14;
  line-height: 1.5;
  margin-bottom: 24px;
}

.tutor-section__item h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.tutor-section__item p {
  font-size: 14px;
  font-weight: 400;
}

.tutor-section__item ul {
  margin-bottom: 12px;
  list-style: none;
  gap: 16px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
}

.tutor-section__item ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
}

.tutor-section__item ul li i {
  border-radius: 20px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  background-color: var(--fs-color-primary);
  color: #ffffff;
  font-size: 11px;
  flex-shrink: 0;
}

@media only screen and (max-width: 599px) {
  .tutor-slider {
    margin-bottom: 30px;
  }

  .tutor-info__main {
    padding: 18px;
  }

  .tutor-info__wrapper {
    flex-direction: column;
  }

  .tutor-info__avatar {
    width: 100%;
    height: 100%;
  }
}

.payment .summary {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(108, 117, 124, 0.2);
  margin-bottom: 24px;
}

.payment .summary-item {
  padding: 24px 16px;
  border-bottom: 1px solid rgba(108, 117, 124, 0.2);
}

.payment .summary-item-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.21;
  color: #222222;
}

.payment-box {
  padding: 25px 20px;
  border-radius: 10px;
  border: 1px solid rgba(108, 117, 124, 0.2);
  background-color: #f9f9f9;
}

.payment-line {
  border: 1.5px dashed #938d8d;
  margin: 24px 0;
}

.payment-student {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, 1fr);
  font-weight: 400;
  line-height: 16.94px;
}

.payment-student-title {
  font-size: 14px;
  color: #191919;
}

.payment-student-price {
  font-size: 16px;
  color: #aeaeae;
  text-align: right;
}

.payment-student--second {
  gap: 60px;
  width: -moz-fit-content;
  width: fit-content;
}

.payment-total {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 16px;
}

.payment-total-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  line-height: 16.94px;
  color: #222222;
}

.payment-total-price {
  color: #7c7c7c;
  text-align: right;
}

.payment-total-price--primary {
  color: #d12b79;
}

.payment .heading {
  font-weight: 700;
  font-size: 20px;
  line-height: 24.2px;
  color: #d12b79;
}

.payment .button-primary {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 3px;
  text-decoration: none;
  padding: 12px;
  background-color: #d12b79;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  transition: opacity 0.2s linear;
}

.payment .button-primary:hover {
  opacity: 0.8;
}

.payment .message {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.21875;
  padding: 22px;
  border-radius: 5px;
  border: 1px solid #d12b79;
  background-color: #fff4ef;
}

.payment form .form-group label {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.1875;
}

.payment form .form-group label span {
  color: #ff0000;
}

.payment-info {
  gap: 24px;
}

.payment-info-course {
  margin-top: 24px;
  border: 1.8px solid #d12b79;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  background-color: #ffffff;
}

@media only screen and (max-width: 599px) {
  .payment-info-course {
    flex-direction: column;
  }
}

.payment-info-course .stati-quantity {
  display: flex;
  gap: 12px;
}

.payment-info-course .stati-quantity button {
  width: 40px;
  height: 40px;
  background-color: #f9f9f9;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
}

.payment-info-course .stati-quantity button:active {
  background-color: #f7e8e8;
}

.payment-info-course .quantity-value {
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  font-weight: 600;
  font-size: 20px;
  line-height: 24.2px;
  width: 55px;
  height: 40px;
  text-align: center;
}

.payment-info-course .quantity-value::-webkit-inner-spin-button,
.payment-info-course .quantity-value::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.payment-info-course .quantity-value[type="number"] {
  -moz-appearance: textfield;
}

.payment-info-image {
  width: 100px;
  height: 100px;
  border-radius: 5px;
}

.payment-info-image span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1875;
}

.payment-info-content {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
}

.payment-info-content h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.1875;
}

.payment-info-content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.1428571429;
  color: #222222;
  margin-top: auto;
}

@media only screen and (max-width: 599px) {
  .payment-info-content p {
    margin-top: unset;
  }
}

.payment-method .custom-modal-width {
  max-width: 800px;
}

.payment-method .customer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
}

.payment-method .customer button {
  background-color: transparent;
  border: none;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2291666667;
  color: #222222;
  transition: color 0.2s linear;
  text-decoration-line: underline;
}

.payment-method .customer button:hover {
  color: #d12b79;
}

@media only screen and (max-width: 599px) {
  .payment-method .customer {
    flex-direction: column;
  }
}

.payment-method .terms {
  padding: 24px;
  margin-top: 32px;
  border: 1.5px solid #d12b79;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 15px;
}

.payment-method .terms-price {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
}

.payment-method .terms-price b {
  color: #d12b79;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2291666667;
}

.payment-method .terms-price a {
  text-decoration: none;
  background-color: #d12b79;
  border-radius: 3px;
  padding: 12px;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  line-height: 1.21;
  text-align: center;
  transition: opacity 0.2s linear;
}

.payment-method .terms-price a:hover {
  opacity: 0.8;
}

.payment-method .timer {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.21;
  margin-bottom: 20px;
  color: inherit;
}

.payment-method .timer b {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.2291666667;
  color: #d12b79;
}

.payment-method .payment-select {
  border-radius: 5px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.21;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
}

.payment-method .payment-select input,
.payment-method .payment-select label {
  cursor: pointer;
}

.payment-method .payment-detail {
  display: none;
  padding: 24px;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 100%;
}

.payment-method .payment-detail h4 {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.21;
  color: #222222;
}

.payment-method .payment-detail ul {
  margin-top: 15px;
  padding-left: 25px;
  list-style-type: none;
}

.payment-method .payment-detail ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.21;
  color: #222222;
}

.payment-method .payment-detail ul li:not(:last-child) {
  margin-bottom: 12px;
}

.payment-method .payment-detail .qr-image {
  max-width: 255px;
  height: 186px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.payment-success h1 {
  color: #222222;
  font-weight: 600;
  font-size: clamp(1.563rem, 0.236rem + 3.538vw, 2.5rem);
  line-height: 48.41px;
}

.payment-success .order-detail-title {
  margin-bottom: 16px;
  color: #d12b79;
  font-weight: 500;
  font-size: 24px;
  line-height: 29.5px;
}

.payment-success .order-detail-list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(108, 117, 124, 0.2);
}

.payment-success .order-detail-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
}

.payment-success .order-detail-item span {
  font-weight: 500;
  font-size: 16px;
  line-height: 19.36px;
  color: #222222;
}

.payment-success .order-detail-item span:first-child {
  justify-self: start;
  text-align: left;
}

.payment-success .order-detail-item span:last-child {
  justify-self: end;
  text-align: right;
}

@media only screen and (max-width: 599px) {
  .payment-student--second {
    width: unset;
    gap: unset;
  }
}

.grouped {
  border: 1.5px solid #808080;
  padding: 24px 20px;
  border-radius: 12px;
}

.grouped-item:not(:last-child) {
  margin-bottom: 15px;
}

.grouped-item h3 {
  padding: 10px 14px;
  border-radius: 4px;
  background-color: var(--fs-color-primary);
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
}

.grouped-item ul {
  list-style: none;
  display: flex;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 12px;
}

.grouped-item ul li a {
  text-decoration: none;
  color: #222222;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  transition: color 0.2s ease-in;
}

.grouped-item ul li a:hover {
  color: #d12b79;
}

.tab-list-slide {
  width: 80%;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  text-align: center;
  margin: 32px auto 15px auto;
}

.tab-list-slide .owl-nav button {
  margin-top: unset !important;
  margin: unset !important;
}

.tab-list-slide .owl-nav .disabled {
  display: none !important;
}

.owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #ffffff !important;
  width: 40px;
  height: 40px;
  border-radius: 100rem !important;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: none;
  outline: none;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.owl-carousel .owl-nav button:active {
  opacity: 0.6;
}

.owl-carousel .owl-nav button:hover,
.owl-carousel .owl-nav button:hover i {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background-color: var(--fs-color-primary) !important;
  color: #ffffff !important;
}

.owl-carousel .owl-nav .owl-prev {
  left: -55px;
}

.owl-carousel .owl-nav .owl-next {
  right: -55px;
}

.owl-carousel .owl-nav i {
  color: #333;
  font-size: 18px;
}

@media only screen and (max-width: 1023px) {
  .tab-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-bottom: 20px;
    gap: 15px;
  }

  .tab-list {
    gap: 5px 2px;
    width: 80%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 767px) {
  .tab-list {
    width: 100%;
  }
}

button.tab-list__item {
  border: 1px solid rgba(100, 100, 111, 0.2);
  box-shadow: none !important;
}

/*# sourceMappingURL=main.min.css.map */
